Poucas coisas:
- 1º:use ponto e vírgula (é uma boa prática e no futuro será necessário)
- 2º:leia SQL Server e chaves de criptografia de banco de dados e certifique-se de ter backups de seu SMK,DMK, ...
- 3º:Criar chaves simétricas idênticas em dois servidores
Você pode adicionar
KEY_SOURCE
e IDENTITY_VALUE
:CREATE MASTER KEY ENCRYPTION BY
PASSWORD = 'Bazalt92!';
CREATE CERTIFICATE xxx
WITH SUBJECT = 'xxx';
CREATE SYMMETRIC KEY xxx
WITH ALGORITHM = aes_256,
KEY_SOURCE = 'My key generation bits. This is a shared secret!',
IDENTITY_VALUE = 'Key Identity generation bits. Also a shared secret'
ENCRYPTION BY CERTIFICATE xxx;