I want to change the permissions for all the tables in a SQL-Server database at once. Is there a way to do this?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
Run the results of this script (change to suit your requirements):
|
|||
|
|
|
Provided all of your tables belong to the same schema, you could modify permissions at the Schema level. |
|||||||
|
|
You can write a script that retrieves the set of tables and then grants/denies permissions through dynamic SQL. However, I think a better approach would be to create a role, grant rights to that role, and then add/remove individuals from that role as needed. |
|||
|
|