SQL 2016 RC3 R服务错误

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服务错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)