Discussion:
[ADMIN] lo_import
(too old to reply)
Maurício Cruz
2012-01-03 19:05:45 UTC
Permalink
Hi all,

I'm trying to use lo_import to import a file into my database, if I
execute from postgres runing in my local machine
it works perfectly, but if I do it in the postgres runing in the server,
it says "No such file or directory"

I Guess postgres only see file on the machine it is runing and not
through the network...
I will have to upload the file into the server and then use import ?
is there any other way ?

Thanks every one.
Cruz
--
Sent via pgsql-admin mailing list (pgsql-***@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-admin
Fabrízio de Royes Mello
2012-01-04 00:01:55 UTC
Permalink
Post by Maurício Cruz
Hi all,
Hi Mauricio,
Post by Maurício Cruz
I'm trying to use lo_import to import a file into my database, if I
execute from postgres runing in my local machine
it works perfectly, but if I do it in the postgres runing in the server,
it says "No such file or directory"
It's the default behavior.


I Guess postgres only see file on the machine it is runing and not through
Post by Maurício Cruz
the network...
I will have to upload the file into the server and then use import ? is
there any other way ?
The lo_import/lo_export functions read/write files in the same file system
where postgres server is running [1]...

If you need send some file from your client to your database server you
must verify the implementation of libpq API in your programming language to
use another functions (lo_creat, lo_open, lo_write, lo_read) to create LOs
from your client side of connection into your server [2].

Another way is using "psql" client program [3] to import/export large
objects.

[1] http://www.postgresql.org/docs/9.1/static/lo-funcs.html
[2] http://www.postgresql.org/docs/9.1/static/lo-examplesect.html
[3] http://www.postgresql.org/docs/9.1/static/app-psql.html
--
Fabrízio de Royes Mello
Consultoria/Coaching PostgreSQL
Post by Maurício Cruz
Blog sobre TI: http://fabriziomello.blogspot.com
Perfil Linkedin: http://br.linkedin.com/in/fabriziomello
Twitter: http://twitter.com/fabriziomello
Loading...