Select ALL logins, users, and user groups shown in SSMS Security > Logins

  • I want to select all logins, users, and user groups that are shown in the Security > Logins folder in SSMS.

    I run this command:

    select * from sys.sql_logins

    select * from sysusers

    The folder in SSMS has 66 items, but the query only returns 14 and 22 rows, even including things not shown in the folder such as db_owner, db_accessadmin, etc.

  • Apologies if I posted in the incorrect forum.

    I don't see a way to delete the post so I'll just post the answer from the other forum:

    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

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply