Re: mysql load_file() function

From: Sean Davis <sdavis2(at)mail(dot)nih(dot)gov>
To: "Ben-Nes Yonatan" <da(at)canaan(dot)co(dot)il>
Cc: <pgsql-general(at)postgresql(dot)org>, "David Fetter" <david(at)fetter(dot)org>
Subject: Re: mysql load_file() function
Date: 2005-02-04 14:35:59
Message-ID: 16147B8B-76BA-11D9-8DF0-000D933565E8@mail.nih.gov
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general


On Feb 4, 2005, at 8:34 AM, Ben-Nes Yonatan wrote:

>> On Fri, Feb 04, 2005 at 09:27:08AM +0200, Ben-Nes Yonatan wrote:
>>> Hi all,
>>>
>>> Does anyone know if PostgreSQL got a function which work like
>>> load_file() of mySQL?
>>
>> I am not quite sure what load_file() does, but check the COPY command
>> and the analgous \copy in psql. As with many other PostgreSQL
>> commands, COPY has a man page in lower case:
>>
>> man copy
>>
>
> First thanks for your answer David but im afraid that i still got a
> problem
> with this solution... im not trying to upload a big file which contain
> data
> which is supposed to be divided to plenty of rows, i want to upload a
> big
> file (wav,ppt,whatever...) into one column one row... maybe i can use
> COPY
> to upload the rows to a temp_table and then from there build the file
> at the
> primary table so it will be only postgresql working in his own
> enviroment...
> though that seem "too heavy" isnt there a better elegant solution?
>

Try looking here--again if I understand what you are trying to do....

http://www.postgresql.org/docs/8.0/interactive/largeobjects.html

Large objects in postgresql can be files, images, etc. There are
several functions for manipulating them (loading, etc.) available in
postgresql.

Sean

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Bruno Wolff III 2005-02-04 14:42:25 Re: Postgres using up all my memory
Previous Message Bruno Wolff III 2005-02-04 14:18:16 Re: How to delete duplicate rows?