The following query returns the list of available fixed server roles
EXEC sp_helpsrvrole;
Members belonging to the sysadmin server role have the permissions to perform any activity in the server.
In order to find out if the logged in user is a sysadmin:
SELECT IS_SRVROLEMEMBER( 'sysadmin', '
Returns 1 if user is a sysadmin, 0 if user is not.
In order to find out the permissions associated with the sysadmin fixed server role:
EXEC sp_srvrolepermission 'sysadmin';
Did you like this post?
|
|
|
||
|
|
|
|
|
|
|
subscribe via rss |
|
subscribe via e-mail |
|
|
print this post |
|
follow me on twitter |




comments
1 Response to "How to find out if the logged in user is a sysadmin member"Administrators Group is Sysadmin... but member of Administrator group still returns 0 for this query.
Is there any other way to find if user\Group is having sysadmin permission or not ?
Post a Comment