Skip to content

Latest commit

 

History

History
60 lines (46 loc) · 2.07 KB

key-guid-transact-sql.md

File metadata and controls

60 lines (46 loc) · 2.07 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic f1_keywords helpviewer_keywords dev_langs
KEY_GUID (Transact-SQL)
KEY_GUID (Transact-SQL)
VanMSFT
vanto
03/06/2017
sql
t-sql
reference
Key_GUID_TSQL
Key_GUID
symmetric keys [SQL Server], GUIDs
KEY_GUID function
GUIDs [SQL Server]
TSQL

KEY_GUID (Transact-SQL)

[!INCLUDE SQL Server Azure SQL Database Azure SQL Managed Instance]

Returns the GUID of a symmetric key in the database.

:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions

Syntax

Key_GUID( 'Key_Name' )  

Arguments

' Key_Name '
The name of a symmetric key in the database.

Return Types

uniqueidentifier

Remarks

If an identity value was specified when the key was created, its GUID is an MD5 hash of that identity value. If no identity value was specified, the server generated the GUID.

If the key is a temporary key, the key name must start with a number sign (#).

Permissions

Because temporary keys are only available in the session in which they are created, no permissions are required to access them. To access a key that is not temporary, the caller requires some permission on the key and must not have been denied VIEW permission on the key.

Examples

The following example returns the GUID of a symmetric key called ABerglundKey1.

SELECT Key_GUID('ABerglundKey1');  

See Also

CREATE SYMMETRIC KEY (Transact-SQL)
sys.symmetric_keys (Transact-SQL)
sys.key_encryptions (Transact-SQL)