From: | "Wong, Kam Fook (TR Technology)" <kamfook(dot)wong(at)thomsonreuters(dot)com> |
---|---|
To: | Pgsql-admin <pgsql-admin(at)lists(dot)postgresql(dot)org> |
Subject: | 101 Grants and Access Right Table/View |
Date: | 2024-10-17 18:38:07 |
Message-ID: | CH0PR03MB6100645C5E5EF4CBD89AB31BFE472@CH0PR03MB6100.namprd03.prod.outlook.com |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-admin |
I have a simple question for "access rights" view or table within Postgres.
Here is my grant query:
GRANT USAGE ON SCHEMA abc TO abc_user;
GRANT SELECT, INSERT, UPDATE, DELETE ON ALL TABLES IN SCHEMA abc TO abc_user;
GRANT ALL ON ALL SEQUENCES IN SCHEMA abc TO abc_user;
GRANT EXECUTE ON ALL ROUTINES IN SCHEMA abc TO abc_user;
But I can't find a view/table that is associated with the above grants? The view/table below doesn't shown the above granted rights.
select * from information_schema.role_table_grants;
select * from information_schema.usage_privileges
Thank you
Kam Fook Wong
This e-mail is for the sole use of the intended recipient and contains information that may be privileged and/or confidential. If you are not an intended recipient, please notify the sender by return e-mail and delete this e-mail and any attachments. Certain required legal entity disclosures can be accessed on our website: https://www.thomsonreuters.com/en/resources/disclosures.html
From | Date | Subject | |
---|---|---|---|
Next Message | rams nalabolu | 2024-10-17 18:40:34 | Re: 101 Grants and Access Right Table/View |
Previous Message | Sathish Reddy | 2024-10-17 18:22:19 | Run maintenance proc |