Answers for "acess privileges on database"

SQL
1

how to give access to database in postgresql server to another user

GRANT permissions ON DATABASE dbname TO username;
Posted by: Guest on June-17-2020
0

psql set access privileges

REVOKE ALL ON DATABASE example_database FROM example_user;
GRANT CONNECT ON DATABASE example_database TO example_user;
GRANT SELECT ON ALL TABLES IN SCHEMA public TO example_user;
Posted by: Guest on April-27-2020

Code answers related to "acess privileges on database"

Code answers related to "SQL"

Browse Popular Code Answers by Language