This topic describes how to create a database master key in SQL Server by using Transact-SQL.
Security
Permissions
Requires CONTROL permission on the database.
Using Transact-SQL
To create a database master key
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 Database Engine.
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';
Administer an SQL Server database infrastructure for cloud, on-premises and hybrid relational databases using the Microsoft PaaS relational database offerings.