Viewing post 1 (of 1 total)
I encountered the same issue and the following solution worked for me:
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=123808
USE [<database>];
GO
OPEN MASTER KEY
DECRYPTION BY PASSWORD = <password>;
ALTER MASTER KEY...
May 22, 2014 at 7:24 pm
#1715924