目前的许多问题都与之前版本的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的日志表明找到并正确安装了所有内容。执行外部脚本&#39;设置已启用。我不确定还能做什么。任何想法都会有所帮助。我只是想在我们自己的环境中看到这一点。
答案 0 :(得分:0)
您能否确认Uninstalling previous versions of R components已完成,包括删除对R扩展名的引用:
RegisterRExt.exe / UNINSTALL
如果在命名实例上启用了R集成,请在/ instance:
之后指定实例名称RegisterRExt.exe / UNINSTALL / INSTANCE:[instancename]