I have a database called ADB.
When I create a new user/role, that user cannot, by default SEE ADB and query against the tables in it.
How can I change that default?
Milen A. Radev
63.1k22 gold badges111 silver badges112 bronze badges
asked Mar 9, 2010 at 18:12
1 Answer 1
Depending on how you create roles, it may be that your database does not give access rights to the 'public' role (which by default is what new roles belong to). You could grant all rights on the database to public, or make the new role a sub-role of whatever role does have access rights to it.
answered Mar 9, 2010 at 18:19
Sign up to request clarification or add additional context in comments.
Comments
lang-sql