SELECT permission_name as Allowed
FROM fn_my_permissions('NORTHWIND', 'DATABASE')
The fn_my_permissions system function returns a list of the permissions effectively granted to the principal on a securable, in our case, the database Northwind. So running the query shown above, will display the permission of the current connected principal
Similarly to view permissions of the principal on a specific table, use this query
SELECT permission_name as Allowed
FROM fn_my_permissions('dbo.Employees', 'object')
If you want to view the permissions of a different principal user, use
EXECUTE AS LOGIN = 'USERNAME'
GO
and then execute the query.
Did you like this post?
|
|
|
||
|
|
|
|
|
|
|
subscribe via rss |
|
subscribe via e-mail |
|
|
print this post |
|
follow me on twitter |




comments
0 Responses to "Find out the permission of the Current Connected User on the database using SQL Server 2005/2008"Post a Comment