Skip to content

Latest commit

 

History

History
59 lines (48 loc) · 3.77 KB

sys-column-master-keys-transact-sql.md

File metadata and controls

59 lines (48 loc) · 3.77 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic f1_keywords helpviewer_keywords dev_langs monikerRange
sys.column_master_keys (Transact-SQL)
sys.column_master_keys (Transact-SQL)
jaszymas
jaszymas
10/15/2019
sql
system-objects
reference
column_master_key_definitions_TSQL
column_master_key_definitions
sys.column_master_key_definitions_TSQL
sys.column_master_key_definitions
column_master_keys_TSQL
column_master_keys
sys.column_master_keys_TSQL
sys.column_master_keys
sys.column_master_key_definitions catalog view
sys.column_master_keys catalog view
TSQL
=azuresqldb-current||>=sql-server-2016||>=sql-server-linux-2017||=azuresqldb-mi-current

sys.column_master_keys (Transact-SQL)

[!INCLUDE sqlserver2016-asdb-asdbmi]

Returns a row for each database master key added by using the CREATE MASTER KEY statement. Each row represents a single column master key (CMK).

Column name Data type Description
name sysname The name of the CMK.
column_master_key_id int ID of the column master key.
create_date datetime Date the column master key was created.
modify_date datetime Date the column master key was last modified.
key_store_provider_name sysname Name of the provider for the column master key store that contains the CMK. Allowed values are:

MSSQL_CERTIFICATE_STORE - If the column master key store is a Certificate Store.

A user-defined value, if the column master key store is of a custom type.
key_path nvarchar(4000) A column master key store-specific path of the key. The format of the path depends on the column master key store type. Example:

'CurrentUser/Personal/'<thumbprint>

For a custom column master key store, the developer is responsible for defining what a key path is for the custom column master key store.
allow_enclave_computations bit Indicates if the column master key is enclave-enabled, (if column encryption keys, encrypted with this master key, can be used for computations inside server-side secure enclaves). For more information, see Always Encrypted with secure enclaves.
signature varbinary(max) A digital signature of key_path and allow_enclave_computations, produced using the column master key, referenced by key_path.

Permissions

Requires the VIEW ANY COLUMN MASTER KEY permission.

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

See Also

CREATE COLUMN MASTER KEY (Transact-SQL)
Security Catalog Views (Transact-SQL)
sys.column_encryption_key_values (Transact-SQL)
Always Encrypted
Overview of Key Management for Always Encrypted
Manage keys for Always Encrypted with secure enclaves