我目前正在测试 SQL Server 2016 的 Always Encrypted 功能,并且我能够使用默认密钥对列进行加密,但我无法通过“生成 PowerShell 脚本以稍后运行”选项编写这项工作。
有没有人遇到过并重新调整过这个?
我目前正在测试 SQL Server 2016 的 Always Encrypted 功能,并且我能够使用默认密钥对列进行加密,但我无法通过“生成 PowerShell 脚本以稍后运行”选项编写这项工作。
有没有人遇到过并重新调整过这个?
它在我的环境中工作:
我想我有类似的问题,因为我没有使用最新的SQL Server Management Studio
. 您可以在此处找到最新版本。
生成的代码如下所示 - 我认为您可以更改它并尝试如果您无法保存为 PS 脚本:
# Generated by SQL Server Management Studio at 9:15 AM on 2017-10-09
Import-Module SqlServer
# Set up connection and database SMO objects
$sqlConnectionString = "Data Source=SQLInstanceName\INST1;Initial Catalog=databaseName;Integrated Security=True;MultipleActiveResultSets=False;Connect Timeout=30;Encrypt=False;TrustServerCertificate=False;Packet Size=4096;Application Name=`"Microsoft SQL Server Management Studio`""
$smoDatabase = Get-SqlDatabase -ConnectionString $sqlConnectionString
# If your encryption changes involve keys in Azure Key Vault, uncomment one of the lines below in order to authenticate:
# * Prompt for a username and password:
#Add-SqlAzureAuthenticationContext -Interactive
# * Enter a Client ID, Secret, and Tenant ID:
#Add-SqlAzureAuthenticationContext -ClientID '<Client ID>' -Secret '<Secret>' -Tenant '<Tenant ID>'
# Change encryption schema
$encryptionChanges = @()
# Add changes for table [dbo].[TablenameX]
$encryptionChanges += New-SqlColumnEncryptionSettings -ColumnName dbo.TablenameX.columNameX -EncryptionType Deterministic -EncryptionKey "CEK_Auto1"
Set-SqlColumnEncryption -ColumnEncryptionSettings $encryptionChanges -InputObject $smoDatabase
SQL版本是:
Microsoft SQL Server 2016 (SP1) (KB3182545) - 13.0.4001.0 (X64) 2016 年 10 月 28 日 18:17:30 版权所有 (c) Microsoft Corporation Enterprise Edition:Windows Server 2012 R2 Standard 6.3 上基于内核的许可(64 位) (内部版本 9600:)(管理程序)
SSMS 版本是Microsoft SQL Server Management Studio 14.0.17177.0
- 或来自我提供的链接的 v17.2。