以前に SQL Server 2016 をインストールしましたが、その R Services を試してみたいと思っています。このチュートリアルを経て、ステップ 2.5 にたどり着きました。ここでは、このスクリプトで接続をテストする必要がありました。
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 0x80070490: 1168(Element not found.).
私はグーグルで検索しましたが、このチュートリアルでは、をアンインストールしてからインストールする必要があると述べていRegisterRExt.exe
ます。私はそれをしました。コンピューターとインスタンス サービスを再起動しました。しかし、エラーは引き続き発生します。
どうすれば修正できますか?