首先,我要说的是,我正在尝试设置TDE (透明数据加密)的SQL Server 2012实例是Enterprise。
但是,在遵循MSDN教程教程时,我将看到以下一行:
create database encryption key with algorithm = AES_256 encryption by server certificate TDECertificate我得到了一个错误:
Msg 33117, Level 16, State 1, Line 6
Transparent Data Encryption is not available in the edition of this SQL Server instance. See books online for more details on feature support in different SQL Server editions.有人能告诉我为什么我会犯这个错误吗?
发布于 2012-09-12 13:48:00
我在2012年的开发人员实例中也尝试过同样的方法,并且没有遇到任何问题。
通过运行以下命令确保连接到的实例确实是Enterprise或Developer版本
SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition')
发布于 2012-09-12 13:44:56
发现问题了。在椅子和键盘之间。
我们安装了两个Server实例,而我查询的是错误的实例。
https://serverfault.com/questions/426739
复制相似问题