'Can't create Database Master Key with Azure Synapse Analytics (Azure DW) using my admin account created at the birth of the resource

I am opening the query on the master system database.

I've tried:

Go
CREATE MASTER KEY ENCRYPTION by PASSWORD = 'fakepassword';
Go

and receive this error message:

Msg 15247, Level 16, State 1, Line 1
User does not have permission to perform this action.


Solution 1:[1]

You should switch from master to your DW and run the following:

CREATE MASTER KEY;

See the documentation here.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Community