Ajay_kumar
Ajay_kumar

Reputation: 21

Problem inserting database using postgres

When i am runing mu insert query too insert into database i am getting an error message like .. ERROR: permission denied for relation advertiser_regidetdir

How will i resolve this? thanks

Upvotes: 0

Views: 251

Answers (1)

Frank Heikens
Frank Heikens

Reputation: 127596

You don't have permissions to do an INSERT, use GRANT to change this. You must have access to a role that is either superuser or object owner.

http://www.postgresql.org/docs/current/interactive/sql-grant.html

Upvotes: 1

Related Questions