sql server 2016 ctp3 :Post 安装 R 配置错误
sq lserver 2016 ctp3 :Post installation R configuration-error
大家好,
我已经在 windows 服务器中安装了 sql 服务器 2016 以了解 R 集成的强大功能,现在在执行 post 安装步骤和 运行 post 安装脚本,我不断收到错误
我正在使用命名实例(在此处更改了名称),完成了第一步,即启用外部脚本
我是Microsoft平台的新手,绝不是DBA,所以如果我遗漏了什么,请指出我
我是 运行 这个脚本 windows powershell(作为管理员)。请协助
“%programfiles%\RRO\RRO-3.2.2-for-RRE-7.5.0\R-3.2.2\library\RevoScaleR\rxLibs\x64\RegisterRExt” /install /instance:mydb\rinstance
我也尝试从其目录中 运行 RegisterRExt,但同样的错误不断出现。
install/instance:mydb\rinstance
At line:1 char:97
+ ... \RegisterRExt"/install/instance:mydb\rinstance
+ ~
You must provide a value expression following the '/' operator.
At line:1 char:97
+ ... \RegisterRExt"/install/instance:mydb\rinstance
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Unexpected token 'install/instance:mydb\rinstance' in expression or statement.
+ CategoryInfo : ParserError: (:) [], ParentContainsErrorRecordException
+ FullyQualifiedErrorId : ExpectedValueExpression
尽管 运行 RegisterRExt 可执行文件单独显示它需要一个 /install 参数,但它不起作用。
要使用 PowerShell 调用 RegisterRExt.exe,请使用以下语法:
&"${env:programfiles}\RRO\RRO-3.2.2-for-RRE-7.5.0\R-3.2.2\library\RevoScaleR\rxLibs\x64\RegisterRExt.exe" /install /instance:sql_instance_name
此 PowerShell 命令使用调用 (&) 运算符调用 RegisterRExt.exe,使用环境变量,并将实例名称传递给它。
有关详细信息,请参阅 Using environment variables with Windows PowerShell and The CALL Operator。
大家好,
我已经在 windows 服务器中安装了 sql 服务器 2016 以了解 R 集成的强大功能,现在在执行 post 安装步骤和 运行 post 安装脚本,我不断收到错误
我正在使用命名实例(在此处更改了名称),完成了第一步,即启用外部脚本
我是Microsoft平台的新手,绝不是DBA,所以如果我遗漏了什么,请指出我 我是 运行 这个脚本 windows powershell(作为管理员)。请协助
“%programfiles%\RRO\RRO-3.2.2-for-RRE-7.5.0\R-3.2.2\library\RevoScaleR\rxLibs\x64\RegisterRExt” /install /instance:mydb\rinstance
我也尝试从其目录中 运行 RegisterRExt,但同样的错误不断出现。
install/instance:mydb\rinstance
At line:1 char:97
+ ... \RegisterRExt"/install/instance:mydb\rinstance
+ ~
You must provide a value expression following the '/' operator.
At line:1 char:97
+ ... \RegisterRExt"/install/instance:mydb\rinstance
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Unexpected token 'install/instance:mydb\rinstance' in expression or statement.
+ CategoryInfo : ParserError: (:) [], ParentContainsErrorRecordException
+ FullyQualifiedErrorId : ExpectedValueExpression
尽管 运行 RegisterRExt 可执行文件单独显示它需要一个 /install 参数,但它不起作用。
要使用 PowerShell 调用 RegisterRExt.exe,请使用以下语法:
&"${env:programfiles}\RRO\RRO-3.2.2-for-RRE-7.5.0\R-3.2.2\library\RevoScaleR\rxLibs\x64\RegisterRExt.exe" /install /instance:sql_instance_name
此 PowerShell 命令使用调用 (&) 运算符调用 RegisterRExt.exe,使用环境变量,并将实例名称传递给它。
有关详细信息,请参阅 Using environment variables with Windows PowerShell and The CALL Operator。