Ask Learn
Preview
Please sign in to use this experience.
Sign inThis browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Removes the master key from the current database.
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 AdventureWorks
database.
USE AdventureWorks;
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)
Please sign in to use this experience.
Sign in