Home Forums SQL Server 2005 T-SQL (SS2K5) Select ALL logins, users, and user groups shown in SSMS Security > Logins RE: Select ALL logins, users, and user groups shown in SSMS Security > Logins

  • select * from sys.server_principals

    that will have domain users, as well as all the built in users; the sql_logins is a limited view of that same data(WHERE type_desc = 'SQL_LOGIN').

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!