Re: How to insert data from a text file

Поиск
Список
Период
Сортировка
От Michael Wood
Тема Re: How to insert data from a text file
Дата
Msg-id 5a8aa6680907201227w578db654icf429a6373c9c838@mail.gmail.com
обсуждение исходный текст
Ответ на Re: How to insert data from a text file  (damien clochard <damien@dalibo.info>)
Ответы Re: How to insert data from a text file  (Mike <1100100@gmail.com>)
Список pgsql-novice
2009/7/20 damien clochard <damien@dalibo.info>:
> Mike a écrit :
[...]
>> I used the following command to gather all file and directory names.
>> "/abc" is the main directory on the linux samba server where all
>> company data is located:
>>
>> root@acme:/# ls -Ralh /abc > /home/mike/file_output.txt

If you just want the file paths, using "find" might make things easier
to deal with:

# find /abc -type f -print >/home/mike/file_output.txt

>> file_output.txt is 33 megs. and lists approximately 650,000 file names
>> and their directory paths.
>>
>> I want to pull all the file name info. and directory path info. from
>> "file_output.txt" and place each file name into a postgresql database
>> along with the related file location information.
>> The ultimate goal is to be able to make an alpha-numeric query and be
>> presented with matching file names and their location on the samba
>> server.
>>
>> How do I pull the data from "file_output.txt" and place it into the
>> postgres database?

If you use "find" as mentioned above, then you can do this to get the
file and directory information by splitting on the last "/".

--
Michael Wood <esiotrot@gmail.com>

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

Предыдущее
От: JORGE MALDONADO
Дата:
Сообщение: STARTING SERIAL / BIGSERIAL FIELDS FROM 1.
Следующее
От: Michael Wood
Дата:
Сообщение: Re: how to ignore a column from pg_dump