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.
AdventureWorks
USE AdventureWorks; DROP MASTER KEY; GO