title | description | author | ms.author | ms.date | ms.service | ms.subservice | ms.topic | ms.custom | f1_keywords | helpviewer_keywords | dev_langs | monikerRange | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
DROP MASTER KEY (Transact-SQL) |
DROP MASTER KEY (Transact-SQL) |
VanMSFT |
vanto |
03/06/2017 |
sql |
t-sql |
reference |
|
|
|
|
>=aps-pdw-2016 || =azure-sqldw-latest || >=sql-server-2016 || >=sql-server-linux-2017 || =azuresqldb-mi-current || =fabric |
[!INCLUDE sql-asdbmi-asa-pdw-fabric]
Removes the master key from the current database.
:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions
DROP MASTER KEY
This statement takes no arguments.
The drop will fail if any private key in the database is protected by the master key.
Requires CONTROL permission on the database.
The following example removes the master key for the [!INCLUDE sssampledbobject-md] database.
USE AdventureWorks2022;
DROP MASTER KEY;
GO
Examples: [!INCLUDEssazuresynapse-md] and [!INCLUDEssPDW]
The following example removes the master key.
USE master;
DROP MASTER KEY;
GO
CREATE MASTER KEY (Transact-SQL)
OPEN MASTER KEY (Transact-SQL)
CLOSE MASTER KEY (Transact-SQL)
BACKUP MASTER KEY (Transact-SQL)
RESTORE MASTER KEY (Transact-SQL)
ALTER MASTER KEY (Transact-SQL)
Encryption Hierarchy