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 |
helpme
Posting Yak Master
141 Posts |
Posted - 2011-09-25 : 20:12:54
|
What's the easiest way to find out what tables a user has access to within a database and the permissions (insert, update, etc.) that the user has to those tables? |
|
Sachin.Nand
2937 Posts |
Posted - 2011-09-26 : 10:42:57
|
sp_helprotect @username='ParticularUsername'If you want to check for all the users in the DB then set value of @username to NULLPBUH |
 |
|
helpme
Posting Yak Master
141 Posts |
Posted - 2011-09-26 : 12:10:53
|
Thanks! |
 |
|
|
|
|