Answers for "postgres show schema permissions"

7

grant schema permissions postgres

GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA schema_name TO username;
Posted by: Guest on May-20-2020
0

postgresql check privileges on schema

WITH "names"("name") AS (
  SELECT n.nspname AS "name"
    FROM pg_catalog.pg_namespace n
      WHERE n.nspname !~ '^pg_'
        AND n.nspname <> 'information_schema'
) SELECT "name",
  pg_catalog.has_schema_privilege(current_user, "name", 'CREATE') AS "create",
  pg_catalog.has_schema_privilege(current_user, "name", 'USAGE') AS "usage"
    FROM "names";
Posted by: Guest on July-22-2021

Code answers related to "postgres show schema permissions"

Browse Popular Code Answers by Language