Transparent Data Encryption (TDE) performs real-time I / O encryption and decryption of data and log files.
http://msdn.microsoft.com/en-us/library/bb934049.aspx
Do you have it?
Update:
Can you tell which operations are being blocked? for example, inserts, deletes, updates, scans an index, etc.
TDE - , - " ". :
... ( ).... DDL , . , DDL, . , , . .
msdn
, " ", , , , . , , , .
:
SELECT DB_NAME(e.database_id) AS DatabaseName,
e.database_id,
e.encryption_state,
CASE e.encryption_state
WHEN 0 THEN 'No key present - encryption unavailable'
WHEN 1 THEN 'Unencrypted'
WHEN 2 THEN 'Encryption in progress'
WHEN 3 THEN 'Encrypted'
WHEN 4 THEN 'Key change in progress'
WHEN 5 THEN 'Decryption in progress'
END AS encryption_state_desc,
c.name,
e.percent_complete
FROM sys.dm_database_encryption_keys AS e
LEFT JOIN master.sys.certificates AS c
ON e.encryptor_thumbprint = c.thumbprint