Expand Minimize
This topic has not yet been rated - Rate this topic

DROP MASTER KEY (Transact-SQL)

Removes the master key from the current database.

Topic link icon 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 AdventureWorks2012 database.

USE AdventureWorks2012;
DROP MASTER KEY;
GO
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.