Postgres Utenti: differenze tra le versioni

Da Emigar.
Jump to navigation Jump to search
(Creata pagina con "==Super User== create role pgadmin with encrypted password 'XXXYYYYZZZZZ'; alter role pgadmin with login; grant all privileges on database postgres to pgadmin; alter role...")
 
Nessun oggetto della modifica
Riga 6: Riga 6:
alter role pgadmin with createrole;
alter role pgadmin with createrole;
alter role pgadmin with superuser;
alter role pgadmin with superuser;

==utenti sola lettura==
create role ciccio_pasticcio with login encrypted password 'XXXYYYYZZZZZ';
create group pasticcio_ro;
alter group pasticcio_ro add user ciccio_pasticcio;
grant connect on database pasticci_db to pasticcio_ro;
grant usage on schema pasticci_schema to pasticcio_ro;
grant select on all tables in schema pasticci_schema to pasticcio_ro;





Versione delle 10:53, 9 mar 2022

Super User

create role pgadmin with encrypted password 'XXXYYYYZZZZZ';
alter role pgadmin with login;
grant all privileges on database postgres to pgadmin;
alter role pgadmin with createdb;
alter role pgadmin with createrole;
alter role pgadmin with superuser;

utenti sola lettura

create role ciccio_pasticcio with login encrypted password 'XXXYYYYZZZZZ'; create group pasticcio_ro; alter group pasticcio_ro add user ciccio_pasticcio; grant connect on database pasticci_db to pasticcio_ro; grant usage on schema pasticci_schema to pasticcio_ro; grant select on all tables in schema pasticci_schema to pasticcio_ro;