Re: [SQL] Create table command fails with permission denied

2009-08-05 Thread Venkateswara Rao Bondada
[mailto:t...@sss.pgh.pa.us] Sent: Wednesday, August 05, 2009 6:46 AM To: Venkateswara Rao Bondada Cc: Rob Sargent; pgsql-sql@postgresql.org Subject: Re: [SQL] Create table command fails with permission denied Venkateswara Rao Bondada venkateswar...@infosys.com writes: camd=# \c cms postgres You

Re: [SQL] Create table command fails with permission denied

2009-08-04 Thread Rob Sargent
AM To: Venkateswara Rao Bondada Cc: pgsql-sql@postgresql.org Subject: Re: [SQL] Create table command fails with permission denied Looks to me as though you are not the owner of the schema nor superuser nor in a role with permission to create tables in said schema. See the DBA if it's not you

Re: [SQL] Create table command fails with permission denied

2009-08-04 Thread Venkateswara Rao Bondada
-Original Message- From: Rob Sargent [mailto:robjsarg...@gmail.com] Sent: Tuesday, August 04, 2009 3:33 AM To: Venkateswara Rao Bondada Cc: pgsql-sql@postgresql.org Subject: Re: [SQL] Create table command fails with permission denied Looks to me as though you are not the owner of the schema nor

Re: [SQL] Create table command fails with permission denied

2009-08-04 Thread Tom Lane
Venkateswara Rao Bondada venkateswar...@infosys.com writes: camd=# \c cms postgres You are now connected to database cms as user postgres. cms=# create table test(id character varying(80)); ERROR: could not create relation test: Permission denied Actually, what that is complaining about is

[SQL] Create table command fails with permission denied

2009-08-03 Thread Venkateswara Rao Bondada
Hi, I'm new to PostgreSQL, and currently facing an issue with PostgreSQL 7.4 database. I'm getting the following error when tried to create a table. Please let me know the steps (with queries) that I should take care to resolve this issue. cms=# create table test(id character varying(80));

Re: [SQL] Create table command fails with permission denied

2009-08-03 Thread Rob Sargent
Looks to me as though you are not the owner of the schema nor superuser nor in a role with permission to create tables in said schema. See the DBA if it's not you. If it is sign on as postgres (superuser) and grant yourself some access rights. Venkateswara Rao Bondada wrote: Hi, I’m new