Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
hoggy
Starting Member
11 Posts |
Posted - 2012-06-28 : 07:29:53
|
I want to revoke DENY SELECT at the database level. Cannot find an example anywhere. An example would be greatly appreciated.To be clear the role has "DENY SELECT" on it now. I want to remove this, but not explicitly Grant Select. |
|
robvolk
Most Valuable Yak
15732 Posts |
Posted - 2012-06-28 : 09:49:15
|
Just run REVOKE SELECT the same way you ran DENY SELECT. |
|
|
hoggy
Starting Member
11 Posts |
Posted - 2012-06-28 : 10:26:11
|
Thanks, I ran:REVOKE select FROM MyUser in-case anyone else ever comes on this. |
|
|
|
|
|