We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f9186e commit bcbf802Copy full SHA for bcbf802
QueryTemplates/Common Scripts/always-encrypted.sql
@@ -0,0 +1,13 @@
1
+SELECT t.name AS TableName,
2
+ c.name AS ColumnName,
3
+ k.name AS KeyName,
4
+ c.encryption_type_desc,
5
+ c.encryption_algorithm_name
6
+FROM sys.columns AS c
7
+ INNER JOIN
8
+ sys.column_encryption_keys AS k
9
+ ON c.column_encryption_key_id = k.column_encryption_key_id
10
11
+ sys.tables AS t
12
+ ON c.object_id = t.object_id
13
+WHERE encryption_type IS NOT NULL;
0 commit comments