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 |
|
priyaram
Yak Posting Veteran
82 Posts |
Posted - 2005-08-08 : 15:53:02
|
| is there any stored procedure to check what user is having what access rights on what tables??thanks in advance |
|
|
X002548
Not Just a Number
15586 Posts |
|
|
SQLServerDBA_Dan
Aged Yak Warrior
752 Posts |
Posted - 2005-08-08 : 16:17:15
|
| You can also use the information schema:SELECT PRIVILEGE_TYPE, TABLE_CATALOG, TABLE_SCHEMA, TABLE_NAMEFROM INFORMATION_SCHEMA.TABLE_PRIVILEGESWHERE GRANTEE = [REPLACE WITH A USER]DanielSQL Server DBAwww.dallasteam.com |
 |
|
|
|
|
|