2
데이터베이스의 암호화 인증서를 나열하기위한 쿼리
인스턴스에서 각 데이터베이스를 암호화하는 데 사용되는 인증서 다음을 사용하여 데이터를 얻을 수 있지만 쿼리를 작성하는 방법 USE master GO -- this provides the list of certificates SELECT * FROM sys.certificates -- this provides the list of databases (encryption_state = 3) is encrypted SELECT * FROM sys.dm_database_encryption_keys WHERE encryption_state = 3; …