title | description | author | ms.author | ms.reviewer | ms.date | ms.service | ms.subservice | ms.topic | helpviewer_keywords | monikerRange | |
---|---|---|---|---|---|---|---|---|---|---|---|
Create a Database Master Key |
Create a database master key in SQL Server by using Transact-SQL. Be sure you have the required permissions. |
jaszymas |
jaszymas |
vanto |
09/12/2019 |
sql |
security |
conceptual |
|
>=aps-pdw-2016||=azuresqldb-current||=azure-sqldw-latest||>=sql-server-2016||>=sql-server-linux-2017||=azuresqldb-mi-current |
[!INCLUDE SQL Server] This topic describes how to create a database master key in [!INCLUDEssnoversion] by using [!INCLUDEtsql].
Requires CONTROL permission on the database.
-
Choose a password for encrypting the copy of the master key that will be stored in the database.
-
In Object Explorer, connect to an instance of [!INCLUDEssDE].
-
Expand System Databases, right-click
master
and then click New Query. -
Copy and paste the following example into the query window and click Execute.
-- Creates the master key. -- The key is encrypted using the password "23987hxJ#KL95234nl0zBe". CREATE MASTER KEY ENCRYPTION BY PASSWORD = '23987hxJ#KL95234nl0zBe';
For more information, see CREATE MASTER KEY (Transact-SQL).