“Fehler: Berechtigung für Tabellenkonten nachgreesql 13 abgelehnt” Code-Antworten

Fehler: Berechtigung für Tabellenkonten nachgreesql 13 abgelehnt

su - postgres <<xEOFx
set +H

psql -c "CREATE DATABASE mydb"
psql -c "CREATE USER user01 WITH ENCRYPTED PASSWORD 'SomePassword'"

psql -c "GRANT ALL PRIVILEGES ON ALL TABLES    IN SCHEMA public to user01"
psql -c "GRANT ALL PRIVILEGES ON ALL SEQUENCES IN SCHEMA public to user01"
psql -c "GRANT ALL PRIVILEGES ON ALL FUNCTIONS IN SCHEMA public to user01"

psql --dbname=mydb --username=postgres -f /tmp/mydb.sql
psql -c "GRANT ALL PRIVILEGES ON DATABASE mydb TO user01"

psql -c "ALTER USER postgres WITH PASSWORD 'AnotherPassword'"
exit
xEOFx
Emmanuel Mahuni

Fehler: Berechtigung für Tabellenkonten nachgreesql 13 abgelehnt

CREATE OR REPLACE FUNCTION auto_grant_func()
RETURNS event_trigger AS $$
BEGIN
    grant all on all tables in schema public to <username>;
    grant all on all sequences in schema public to <username>;
    grant select on all tables in schema public to <username>;
    grant select on all sequences in schema public to <username>;
END;
$$ LANGUAGE plpgsql;

CREATE EVENT TRIGGER auto_grant_trigger
    ON ddl_command_end
    WHEN TAG IN ('CREATE TABLE', 'CREATE TABLE AS')
EXECUTE PROCEDURE auto_grant_func();
Emmanuel Mahuni

Ähnliche Antworten wie “Fehler: Berechtigung für Tabellenkonten nachgreesql 13 abgelehnt”

Fragen ähnlich wie “Fehler: Berechtigung für Tabellenkonten nachgreesql 13 abgelehnt”

Weitere verwandte Antworten zu “Fehler: Berechtigung für Tabellenkonten nachgreesql 13 abgelehnt” auf Sql

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen