小编sur*_*rGe的帖子

SQL Server 2016源代码管理

任何人都知道在哪里可以找到SQL Server 2016工具下的"源代码管理"选项?我希望将Visual Studio Team Services(TFS Online)与SQL Server 2016集成.

如您所见,这是SQL Server 2012,这是SQL Server 2016.

有任何想法吗?

sql sql-server sql-server-2012 azure-devops

5
推荐指数
1
解决办法
3731
查看次数

R 在 SQL Server 2016 中

尝试执行 MSDN 提供的测试脚本以确保启用 R,但它抛出以下错误,

Msg 39023, Level 16, State 1, Procedure sp_execute_external_script, Line 1 [Batch Start Line 0]
'sp_execute_external_script' is disabled on this instance of SQL Server. Use sp_configure 'external scripts enabled' to enable it.
Msg 11536, Level 16, State 1, Line 1
EXECUTE statement failed because its WITH RESULT SETS clause specified 1 result set(s), but the statement only sent 0 result set(s) at run time.
Run Code Online (Sandbox Code Playgroud)

我已经确定我运行了

Exec sp_configure  'external scripts enabled', 1  
Run Code Online (Sandbox Code Playgroud)

使用覆盖重新配置

声明,然后我确保配置设置设置为 1,它是,并在检查和之后重新启动服务,但没有运气。

我还确保我不会加载任何其他 R 开放平台 …

sql r sql-server-2016

2
推荐指数
1
解决办法
1684
查看次数