SQL 2016 RC3 R服务错误

2022-04-17 00:00:00 r sql-server sql-server-2016
当前的许多问题都与以前版本的RC或CTP有关。这是使用RC3的最新文档和版本。

我正在运行他们的sample code以验证一切正常:

exec sp_execute_external_script  @language =N'R',
@script=N'OutputDataSet<-InputDataSet',  
@input_data_1 =N'select 1 as hello'
with result sets (([hello] int not null));
go

以下是错误:

Msg 39021, Level 16, State 1, Line 1
Unable to launch runtime for 'R' script. Please check the configuration of the 'R' runtime.
Msg 39019, Level 16, State 1, Line 1
An external script error occurred: 
Unable to launch the runtime. ErrorCode 0x80004005: .
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.

我之前在这个机器上卸载了rc0,否则SQL 2016就不会有其他的问题了。它是命名实例(SQL2016),因为盒子上安装了2014年。

RServer的日志表明一切都已找到并正确安装。"执行外部脚本"设置已启用。我不知道还能做什么。任何想法都会有帮助。我只想在我们自己的环境中看到这一点。


解决方案

能否确认Uninstalling previous versions of R components已完成,包括删除对R扩展的引用:

RegisterRExt.exe/卸载

如果在命名实例上启用了R集成,请在/INSTANCE:后指定实例名称

RegisterRExt.exe/UNINSTALL/INSTANCE:[实例名称]

相关文章