How would I disable database encryption on one of my databases that's using the server's master key?
Specifically, if I run the query:
select is_master_key_encrypted_by_server from sys.databases where name = '<db name>'
it will return a 1 indicating the database is using the server's master key for encryption. Does anyone know how to disable this (i.e., get the value returned to be 0)?
Any help is much appreciated!