mshan
asked on
How to check permissions for a user in sql server 2005
I am trying to find the permissions for a user account in sql server 2005.How to find what are the permissions the particular user account has on a database in sql server 2005?
Right click on the user under Security Tab in Management studio and select Properties.
ASKER
It gives me the role of the user account.ca you tell me How to find what are privileges the user has on the database like permission for insertion,deletion,updatio n?
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
in sql server 2005 we have one function to know permission in sql
select fn_my_permissions(null,'da tabase')
u can give different attributes like tablename table
select fn_my_permissions(null,'da
u can give different attributes like tablename table