grant access at a schema level
Anyone know when or what Vertica release would start supporting various grants at a schema level? Currently, the only way to do this is at an object level, and is very irritating to say the least. Something like this, grant select,insert,update,delete on schema.objectname to username;
0
Comments
At present the only privileges which can used while assigning schema grants are
1. CREATE
2. USAGE
See if you can use this to categorize among grant select, insert, update, delete.
OR
As a workaround, you create a bash script for granting privileges to user and roles at once in bulk.
I can help you with this.
Hope this helps.
thanks
An update on the above answer.
From Version 6.1, we can grant privileges on all objects of a schema using a single SQL Statement for every object type.
@dbadmin Hope this helps. NC
is there a way how to NOT repeat the grant every time someone else creates new table ?
So when user2 creates new table within the same schema, user1 will have access to the new table without running "grant all on all tables in schema" again.
Thanks
Vlada