Ask Learn
Preview
Ask Learn is an AI assistant that can answer questions, clarify concepts, and define terms using trusted Microsoft documentation.
Please sign in to use Ask Learn.
Sign inThis browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Symptoms:
When using blob auditing on Azure SQL Server or Database, after you export database to .bacpac file
if you import the database to another Azure SQL DB that already have blob auditing enabled at the server level you may get this error message:
Could not import package.
Error SQL72014: .Net SqlClient Data Provider: Msg 15578, Level 16, State 1, Line 1 There is already a master key in the database. Please drop it before performing this statement.
Error SQL72045: Script execution error. The executed script:
CREATE MASTER KEY;
if you import the database to local on-premise SQL Server installation you may get this error:
Error SQL72014: .Net SqlClient Data Provider: Msg 33161, Level 15, State 1, Line 1 Database master keys without password are not supported in this version of SQL Server.
Error SQL72045: Script execution error. The executed script:
CREATE MASTER KEY;
this also apply if you created master key without password for your own usage.
Cause:
This caused by a different behavior between Azure SQL DB and Local SQL Server installation
a master key without password is an Azure SQL DB only feature, while local SQL Server installation must have password encryption for master key.
read more about it here CREATE MASTER KEY (Transact-SQL)
failure to import back to Azure SQL caused by a limitation in the import process.
our teams are currently working to change this behavior from the server side.
Resolution:
to mitigate import to Azure SQL DB use the import from the Azure portal.
to mitigate import to local SQL Server installation you can alter the existing master key and add password encryption to it.
this should be done before you export the database
ALTER MASTER KEY ADD ENCRYPTION BY PASSWORD = '<PasswordHere>';
for short term mitigation we provide you PowerShell script that do the following:
after running this PS script on the bacpac you will have new bacpac file with "patched" suffix.
example:
C:\PS> .\RemoveMasterKey.ps1 -bacpacPath "C:\BacPacs\Test.bacpac"
Ask Learn is an AI assistant that can answer questions, clarify concepts, and define terms using trusted Microsoft documentation.
Please sign in to use Ask Learn.
Sign in