RE: While Using COPY COMMAND ...

From: Jeff Eckermann <jeckermann(at)verio(dot)net>
To: "'Bhuvan A'" <bhuvanbk(at)yahoo(dot)com>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: RE: While Using COPY COMMAND ...
Date: 2001-07-06 13:39:19
Message-ID: 08CD1781F85AD4118E0800A0C9B8580B094B16@NEZU
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

To clarify a little further...
psql (client application) runs with the permissions of the system user who
has called it, so psql has no difficulty in writing to that user's home
directory (or anywhere else that the user has write permission).
COPY is run by the backend, and therefore the backend user ("postgres")
needs permission to write to the target file.
Your choices are:
1. Adjust the permissions on your home directory
2. Use \copy instead: being a psql command, that runs with the same
permissions that psql has.

> -----Original Message-----
> From: Bhuvan A [SMTP:bhuvanbk(at)yahoo(dot)com]
> Sent: Friday, July 06, 2001 3:39 AM
> To: David Stanaway
> Cc: pgsql-sql(at)postgresql(dot)org
> Subject: Re: While Using COPY COMMAND ...
>
>
> hello sirs,,
>
> the permission of '/tmp/' directory is
> drwxrwxrwt 41 root root 12288 Jul 6 14:01 /tmp/
>
> the permission of the file copied to '/tmp/' directory is
> -rw-r--r-- 1 postgres users 399 Jul 6 12:01
> /tmp/fap-table
>
> Sir, as you mentioned if it is not possible to copy to a
> home directory, then how can we able to redirect the result
> of some queries to any possible file in home directory!!???
>
> Example:
>
> bhuvan=# \o select-output
> bhuvan=# select * from stdcodes;
> bhuvan=#
>
> NOTE: I am really new to postgres, kindly apologize for any
> inconvince in my submission.
>
> Thanking you,
>
> Yours truly,
> Bhuvaneswar.
>
> On Fri, 6 Jul 2001, David Stanaway wrote:
>
> >
> > On Friday, July 6, 2001, at 04:35 PM, Bhuvan A wrote:
> >
> > >
> > > hello sirs,,
> > >
> > > I am using PSQL client. I can able to copy the contents of a
> > > table to '/tmp/' directory. But Why can't i able to copy
> > > contents of a table to my home directory?
> >
> > My guess is that user/group postgres can't write to your home directory.
> >
> > Who owns the file you copied to /tmp ?
> >
> > --
> > Best Regards
> > David Stanaway
> > ========================.---------------------------------------------
> > Technology Manager - Australia's Premier Internet Broadcasters
> > david(at)NetVentures(dot)com(dot)au Office +612 9357 1699
> > ========================'---------------------------------------------
> >
>
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 1: subscribe and unsubscribe commands go to majordomo(at)postgresql(dot)org

Browse pgsql-sql by date

  From Date Subject
Next Message postgresql 2001-07-06 13:46:58 finding current oid
Previous Message Doug McNaught 2001-07-06 13:32:28 Re: Transactions within a function