Answers for "show all privileges a user has in a schema postgres"

SQL
1

user privileges postgresql information_schema

GRANT SELECT ON ALL TABLES IN SCHEMA PUBLIC TO testuser2;
Posted by: Guest on May-26-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 "show all privileges a user has in a schema postgres"

Code answers related to "SQL"

Browse Popular Code Answers by Language