Re: create database from text file, to delete columns

Поиск
Список
Период
Сортировка
От Sean Davis
Тема Re: create database from text file, to delete columns
Дата
Msg-id 264855a00804020802g499b9074n213b24fd1c7f2fce@mail.gmail.com
обсуждение исходный текст
Ответ на create database from text file, to delete columns  (e-letter <inpost@gmail.com>)
Ответы Re: create database from text file, to delete columns  (e-letter <inpost@gmail.com>)
Список pgsql-novice
On Wed, Apr 2, 2008 at 10:56 AM, e-letter <inpost@gmail.com> wrote:
> Readers,
>
>  I am using a program that saves data in csv format. I have realised
>  that I cannot view the file in my spreadsheet due to 256 column limit.
>
>  I think that I need to import the file into a database. Then I want to
>  review, then delete columns with null data.
>
>  I guess I can use the 'copy from' command? Also I do not know the
>  total number of columns so can I import into an empty database and the
>  columns are automatically created from the end of each line?

No.  You can easily use python, perl, R, java, or some other language
to parse the file and generate the create table statements.  However,
if you just need to remove some columns, you do not really need the
database at all.  Just use a little script (again, in a scripting
language) to remove the columns you like.

Sean

В списке pgsql-novice по дате отправления:

Предыдущее
От: e-letter
Дата:
Сообщение: create database from text file, to delete columns
Следующее
От: e-letter
Дата:
Сообщение: Re: create database from text file, to delete columns