On Tue, Dec 8, 2009 at 1:44 PM, Gauthier, Dave <[email protected]> wrote: > It comes back... > > role "joetheplumber" does not exist > > The user is a sys uid on linux.
You're confusing linux users with postgresql users. They aren't mapped one to the other. First you need to create a pgsql role / user: psql postgres create user joetheplumber superuser; then you'll have the account for joetheplumber as a superuser. -- Sent via pgsql-general mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-general
