Hi,
We had SQL 2008 R2 server SRV1 with databases: distribution, user_db and etc. Server run as replication distributor.
Now we moved to SQL 2014 server SRV1 that holds only same user_db database. Replication distributor now runs on SRV2.
I noticed that user_db on new SRV1 has "is_master_key_encrypted_by_server" set to 1 (SELECT name, is_master_key_encrypted_by_server FROM sys.databases WHERE name = 'user_db' )
User_db has keys:
##MS_DatabaseMasterKey##
SQLSERVER_REPLICATION
User_db has certificate:
SQLSERVER_REPLICATION - ENCRYPTED_BY_MASTER_KEY.
I guess all this is legacy configuration from old server SRV1. Now I would like to remove all these keys and certificates from user_db and set "is_master_key_encrypted_by_server" to 0.
Is any service that could use this configuration if we are not using db encryption, we only use service broker and couple transactional replication subscriptions on user_db?
Thanks