sql >> Database >  >> RDS >> PostgreSQL

FOUT:toestemming geweigerd voor relatietabelnaam op Postgres tijdens het proberen van een SELECT als een alleen-lezen gebruiker

Hier is de complete oplossing voor PostgreSQL 9+, onlangs bijgewerkt.

CREATE USER readonly  WITH ENCRYPTED PASSWORD 'readonly';
GRANT USAGE ON SCHEMA public to readonly;
ALTER DEFAULT PRIVILEGES IN SCHEMA public GRANT SELECT ON TABLES TO readonly;

-- repeat code below for each database:

GRANT CONNECT ON DATABASE foo to readonly;
\c foo
ALTER DEFAULT PRIVILEGES IN SCHEMA public GRANT SELECT ON TABLES TO readonly; --- this grants privileges on new tables generated in new database "foo"
GRANT USAGE ON SCHEMA public to readonly; 
GRANT SELECT ON ALL SEQUENCES IN SCHEMA public TO readonly;
GRANT SELECT ON ALL TABLES IN SCHEMA public TO readonly;

Met dank aan https://jamie.curle.io/creating-a-read-only-user-in-postgres/ voor verschillende belangrijke aspecten

Als iemand kortere code vindt, en liefst een die dit voor alle bestaande databases kan uitvoeren, extra kudos.



  1. Tips om uw SQL Server-complexiteit te verminderen

  2. Hoe pgAdmin 4 te installeren op Ubuntu 20.04/18.04/16.04

  3. ComboBox.ValueMember en DisplayMember

  4. MySQL-indexen - wat zijn de best practices?