In SQL Server 2008 R2, If I alter the database master key do I have to make any changes to certificates that change user data base encryption keys. I have an annual update requirement.
So if I do this:
USE [Master];
ALTER MASTER KEY REGENERATE WITH ENCRYPTION BY PASSWORD = 'blah((blah&something';
GO
will it also update keys encrypting all the the certificates that were created for user database encryption keys?
is there a data loss risk?
There are a lot of examples on how to make the change but I'm having trouble finding on point commentary on this specific situation.