Collections:
sys.server_principals - Listing All Login Names in SQL Server
How To List All Login Names on the Server in SQL Server?
✍: FYIcenter.com
If you want to see a list of all login names defined on the server, you can use the system view, sys.server_principals as shown in this tutorial exercise:
-- Login with sa SELECT name, sid, type, type_desc FROM sys.server_principals WHERE type = 'S'; GO name sid type type_desc -------- ----------------------------------- ---- --------- sa 0x01 S SQL_LOGIN FYI_DBA 0x348AF32B3B58CB40B67A5F5B7086B96E S SQL_LOGIN Fyi_Login 0x5EB8701EAEBAA74F86FCF5BD8E37B8C5 S SQL_LOGIN
So you have two login names on the server at this moment.
⇒ "ALTER LOGIN" - Changing the Password of a Login Name in SQL Server
⇐ Verifying a Login Name with SQLCMD Tool in SQL Server
2016-10-20, 7235🔥, 0💬
Popular Posts:
What Is Transport Network Substrate (TNS) in Oracle? TNS, Transport Network Substrate, is a foundati...
Can You Drop an Index Associated with a Unique or Primary Key Constraint in Oracle? You can not dele...
How To Get the Definition of a Stored Procedure Back in SQL Server Transact-SQL? If you want get the...
What Are the Differences between BINARY and VARBINARY in MySQL? Both BINARY and VARBINARY are both b...
How to print value on console in SQL Server Transact-SQL? How to use the PRINT statements? In Transa...