问题标签 [sql-server-2016]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
sql-server-2016 - Sql Server 2016 ctp3 R 配置错误
尝试执行安装后脚本来配置 R 时出现错误。我将 sql server 2016 ctp3 安装为命名实例。
运行以下命令:
错误: 连接到 SQL Server... 错误:建立与 SQL Server 的连接时发生与网络相关或特定于实例的错误。服务器未找到或无法访问。验证实例名称是否正确以及 SQL Server 是否配置为允许远程连接。(提供者:SQL 网络接口,错误:26 - 错误或指定的定位服务器/实例)未能成功完成操作。
也尝试使用 Powershell,但同样的错误。我可以通过 sqlcmd 或直接连接到相同的命名实例,但上面的命令总是失败并出现相同的错误。我是盒子的管理员。已检查防火墙规则并添加了新实例正在使用的所有端口。虽然没有运气。
感谢帮助。新泽西州
cloud - 逐行加密 SQL Server 2016
是否可以使用 Always Encrypted 功能和 SQL Server 2016 中的行级安全功能?并以某种方式对特定用户要查看的行使用不同的 EncryptionKeys 加密行?
sql - SQL Server 2016 sp_execute_external_script 与 R 集成的错误
我正在评估SQL Server 2016
在 Windows 10 上与 R 的数据库内集成。我已按照安装所有组件和脚本的步骤进行操作。现在我有以下问题:
sp_execute_external_script 驻留在哪里?我找不到它。当我运行脚本时,例如:
我收到错误:
“消息 39021,级别 16,状态 1,行 1 无法启动“R”脚本的运行时。请检查“R”运行时的配置。消息 39019,级别 16,状态 1,第 1 行发生外部脚本错误:无法启动运行时。错误代码 0x80070490: 1168(未找到元素。)。”</p>
根据上述建议,我重新运行脚本,但并没有解决问题。
非常感谢任何建议。
sql - 你能用 T-SQL 创建 SSIS 包吗?
是否可以仅使用 T-SQL 创建新的 SSIS 包?
具体我使用的是 SQL Server 2016,我还没有对 SSIS 做很多事情。
azure-sql-database - 增加始终加密证书的有效性
我正在使用 SQL Server 的 Always Encrypted 功能使用受自签名证书保护的主密钥来加密数据库中的几列。该证书是使用 SQL 2016 的 Management Studio 创建的,并且始终默认为比颁发日期提前一年的到期日期 - 它存储在当前用户的 Windows 证书存储中。
是否可以将此证书的有效期延长至一年以上?
更具体地说,是否可以编写 AE 所需的证书 - 据我了解,此证书与 CREATE CERTIFICATE 命令创建的 sql 证书不同,需要导出为 pfx 等文件格式才能被 Azure Web 应用程序访问。
此外,如果证书已过期,数据是否仍可加密/解密?
c# - 始终加密的用户定义表类型参数
我将用户定义的表类型(idlist)的 SQL 参数传递给存储过程 - 在我添加Column Encryption Setting=Enabled;
到 web.config 以使应用程序与 SQL 的 Always Encrypted 功能一起工作之前,一切都运行良好。
引发的异常是:
表类型参数“@f”必须具有有效的类型名称。
关于这里可能发生什么的任何想法?
sql-server - Retrieving encrypted column 'xxx' with CommandBehavior=SequentialAccess is not supported
I have setup a Azure SQL Database and enabled Always Encrypted.
One of the column (column3) is varchar(Max)
.
When I query the database from SSMS without using "column encryption setting=enabled"
, I can see that all the columns have binary data.
When I query the database from SSMS using "column encryption setting=enabled"
, I am getting an error as below:
An error occurred while executing batch. Error message is: Retrieving encrypted column 'column3' with CommandBehavior=SequentialAccess is not supported.
This is what my table definition looks like:
If I remove the encryption on column3, everything works fine and I can see decrypted values.
Am I missing something here?