I am wondering if I can get some help on this? I have this query which gives me all the information of the logins with sysadmin rights but I need to find out the server name as well. I am not able to find a way to link any tables with sys.sysservers or sys.servers.[code="sql"]USE masterGO SELECT p.name AS [loginname] , p.type , p.type_desc , p.is_disabled, CONVERT(VARCHAR(10),p.create_date ,101) AS [created], CONVERT(VARCHAR(10),p.modify_date , 101) AS [update]FROM sys.server_principals p JOIN sys.syslogins s ON p.sid = s.sidWHERE p.type_desc IN ('SQL_LOGIN', 'WINDOWS_LOGIN', 'WINDOWS_GROUP') -- Logins that are not process logins AND p.name NOT LIKE '##%' -- Logins that are sysadmins AND s.sysadmin = 1Go[/code]
↧