Answers for "postgres how to grant access to user after db creation"

SQL
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 "postgres how to grant access to user after db creation"

Code answers related to "SQL"

Browse Popular Code Answers by Language