“Erro: permissão negada para contas da tabela PostgreSql 13” Respostas de código

Erro: permissão negada para contas da tabela PostgreSql 13

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

Erro: permissão negada para contas da tabela PostgreSql 13

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

Respostas semelhantes a “Erro: permissão negada para contas da tabela PostgreSql 13”

Perguntas semelhantes a “Erro: permissão negada para contas da tabela PostgreSql 13”

Mais respostas relacionadas para “Erro: permissão negada para contas da tabela PostgreSql 13” em Sql

Procure respostas de código populares por idioma

Procurar outros idiomas de código