↧
Answer by Jason Cumberland
The scripts below will help you to monitor the encryption/decryption process. There is a percent_complete column that shows you the level of completion, but it is not an immediate process. ALTER...
View ArticleAnswer by Leo
SELECT DB_NAME(database_id), encryption_state FROM sys.dm_database_encryption_keys ; GO When the statement above is run, a state is returned. A database encryption state of “2” means that encryption...
View Article