Difference between revisions of "ERROR: permission denied for relation"
Jump to navigation
Jump to search
(Created page with " GRANT ALL PRIVILEGES ON TABLE your-table TO your-user; * {{PostgreSQL}}") |
|||
(12 intermediate revisions by 2 users not shown) | |||
Line 2: | Line 2: | ||
− | + | <code>[[GRANT ALL PRIVILEGES ON TABLE]] your-table TO your-user;</code> | |
+ | <code>SELECT grantee, privilege_type FROM information_schema.role_table_grants WHERE table_name='mytable';</code> | ||
+ | SELECT grantor, grantee, table_schema, table_name, privilege_type FROM information_schema.table_privileges WHERE grantee = 'myuser' | ||
+ | == Related == | ||
+ | * <code>[[GRANT SELECT ON mytable TO xxx]]</code> | ||
+ | * [[\du++]] | ||
− | * {{ | + | == See also == |
+ | * {{Role}} | ||
+ | * {{GRANT}} | ||
+ | * {{psql}} | ||
+ | |||
+ | [[Category: PostgreSQL]] | ||
+ | [[Category: SQL]] |
Latest revision as of 11:55, 27 September 2022
GRANT ALL PRIVILEGES ON TABLE your-table TO your-user;
SELECT grantee, privilege_type FROM information_schema.role_table_grants WHERE table_name='mytable';
SELECT grantor, grantee, table_schema, table_name, privilege_type FROM information_schema.table_privileges WHERE grantee = 'myuser'
Related[edit]
See also[edit]
- PostgreSQL: Database roles,
CREATE USER
,CREATE ROLE
,\du, \du+
,create user, Alter user
GRANT
,\ddp
,GRANT USAGE
,GRANT ALL PRIVILEGES
,GRANT SELECT
, View GRANTs on Redshift,has_table_privilege
,has_schema_privilege
,HAS_DATABASE_PRIVILEGE
,SCHEMA
, Privileges,GRANT EXECUTE
- PostgreSQL:
psql
,.psqlrc, .pgpass
,$HOME/.pg service.conf
,-U, -W, -d
, meta-commands:\du, \dg, \ddp, \dp, \list, \dn, \dt, \c, \l, \di, \q
,show users
,show
,su - postgres
,psql -c, \?, \connect, \conninfo
,--version, --help
, PL/pgSQL
Advertising: