SQL 2016 RC3 R Services Error(SQL 2016 RC3 R服务错误)
本文介绍了SQL 2016 RC3 R服务错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
当前的许多问题都与以前版本的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:[实例名称]
这篇关于SQL 2016 RC3 R服务错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
织梦狗教程
本文标题为:SQL 2016 RC3 R服务错误
基础教程推荐
猜你喜欢
- 表 './mysql/proc' 被标记为崩溃,应该修复 2022-01-01
- 二进制文件到 SQL 数据库 Apache Camel 2021-01-01
- mysql选择动态行值作为列名,另一列作为值 2021-01-01
- 在多列上分布任意行 2021-01-01
- 如何根据该 XML 中的值更新 SQL 中的 XML 2021-01-01
- 在 MySQL 中:如何将表名作为存储过程和/或函数参数传递? 2021-01-01
- MySQL 中的类型:BigInt(20) 与 Int(20) 2021-01-01
- 什么是 orradiag_<user>文件夹? 2022-01-01
- 如何在 SQL 中将 Float 转换为 Varchar 2021-01-01
- oracle区分大小写的原因? 2021-01-01
