vote up 0 vote down star

what sql query will i need to show the activated server roles in a specific user?

flag

53% accept rate
Are you trying to determine if a user has the roles "db_writer", etc, assigned to it? – Darksider Oct 7 '08 at 6:10
im trying to determine what server roles (system admin, security admin, process admin, etc....) a user have.. – sef Oct 7 '08 at 6:15

2 Answers

vote up 1 vote down

THIS SHOULD DO IT:

select 'ServerRole' = spv.name, 'MemberName' = lgn.name, 'MemberSID' = lgn.sid from master.dbo.spt_values spv, master.dbo.sysxlogins lgn where spv.low = 0 and spv.type = 'SRV' and lgn.srvid IS NULL and spv.number & lgn.xstatus = spv.number

link|flag
vote up 0 vote down

EXEC sp_helpuser 'username' should do.

link|flag
Tnx 4 giving me an idea.. – sef Oct 7 '08 at 6:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.