Skip to content

Latest commit

 

History

History
57 lines (47 loc) · 3.42 KB

File metadata and controls

57 lines (47 loc) · 3.42 KB
description sys.sql_logins (Transact-SQL)
title sys.sql_logins (Transact-SQL) | Microsoft Docs
ms.custom
ms.date 01/20/2016
ms.prod sql
ms.prod_service database-engine, sql-database, pdw
ms.reviewer
ms.technology system-objects
ms.topic reference
f1_keywords
sys.sql_logins_TSQL
sql_logins_TSQL
sys.sql_logins
sql_logins
dev_langs
TSQL
helpviewer_keywords
sys.sql_logins catalog view
ms.assetid 0d9c5b09-86fe-40ff-baab-00b7c051402f
author VanMSFT
ms.author vanto
monikerRange >=aps-pdw-2016||=azuresqldb-current||>=sql-server-2016||>=sql-server-linux-2017||=azuresqldb-mi-current

sys.sql_logins (Transact-SQL)

[!INCLUDEtsql-appliesto-ss2008-asdb-xxxx-pdw-md]

Returns one row for every [!INCLUDEssNoVersion] authentication login.

Column name Data type Description
<inherited columns> -- Inherits from sys.server_principals.
is_policy_checked bit Password policy is checked.
is_expiration_checked bit Password expiration is checked.
password_hash varbinary(256) Hash of SQL login password. Beginning with [!INCLUDEssSQL11], stored password information is calculated using SHA-512 of the salted password.

For a list of columns that this view inherits, see sys.server_principals (Transact-SQL). The columns owning_principal_id and is_fixed_role is not inherited from sys.server_principals.

Remarks

To view both [!INCLUDEssNoVersion] authentication logins and Windows authentication logins, see sys.server_principals (Transact-SQL).

When contained database users are enabled, connections can be made without logins. To identify those accounts, see sys.database_principals (Transact-SQL).

Permissions

SQL Server: Any [!INCLUDEssNoVersion] authentication login can see their own login name, and the sa login. To see other logins, requires ALTER ANY LOGIN, or a permission on the login.
To view the contents of the password_hash column, the CONTROL SERVER permission is required. Azure SQL Database: only members of the special database role loginmanager in master or the AAD Admin and Server Admin can see all logins.

[!INCLUDEssCatViewPerm] For more information, see Metadata Visibility Configuration.

See Also

Catalog Views (Transact-SQL)
Security Catalog Views (Transact-SQL)
Password Policy
Principals (Database Engine)