RE: [GENERAL] Additional Super User account(s) - Mailing list pgsql-general

From K.T.
Subject RE: [GENERAL] Additional Super User account(s)
Date
Msg-id 002901be3f2f$e9c3f920$48d8a5ce@arcane
Whole thread Raw
List pgsql-general
>>Modify pg_shadow directly.
>>
>>--
>>  Bruce Momjian                        |  http://www.op.net/~candle
>>  maillist@candle.pha.pa.us            |  (610) 853-3000
>>  +  If your life is a hard drive,     |  830 Blythe Avenue
>>  +  Christ can be your backup.        |  Drexel Hill, Pennsylvania 19026


Above was a reply to me from Bruce that lit a light....

If you are using pre 6.3...(not sure of the version)  You need to:

    Select * from pg_user;  (or was it pg_users?)

Post 6.3....

    select * from pg_shadow;

There is a field called usesuper for the account in question.  Update that
field to 't' or TRUE.
Then user will be able to then run "COPY TO" commands.  Problem is tho that
the copy to command is run in the background using UID 26 (psotgres) so UNIX
file acces priviledges are limited to postgres' priviledges.  So output to a
tmp directory and move the file back to a secure directroy :)



pgsql-general by date:

Previous
From: Clark Evans
Date:
Subject: Re: [GENERAL] Graphics Supported?
Next
From: "David D. Custer"
Date:
Subject: Informix SE vs PostgreSQL?