我正在尝试实现一个执行存储过程活动的自定义点网络活动。
我知道ADF已经在StoredProcActivity
内构建了。但我想插入已经加密的表(使用Always Encryption提供程序作为Azure Key Vault)
要始终解决此问题,使用Azure Key保管库进行加密要求连接字符串类似于here
我构建的东西很简单,同时创建AzureSqlLinkedService
。我已使用Column Encryption Setting=enabled
aalue添加到我的连接字符串中。实际上,我的连接字符串将是:
Data Source=tcp:<ServerNAme>.database.windows.net,1433;Initial Catalog=<DBName>;User ID=<UserName>@<ServerNAme>;Password=<Password>;Integrated Security=False;Encrypt=True;Connect Timeout=30;Column Encryption Setting=enabled;
但是,我收到了一个错误
实体配置失败:无法连接到已链接的服务。指定的连接字符串无效。