Sql-Server

SQL Server 2017 上缺少 Polybase 啟用配置

  • July 30, 2020

我在我的盒子上安裝了 SQL Server 2017 Enterprise (14.0.3162.1)。使用 polybase(橫向擴展組)。但是當我嘗試通過以下方式啟用時:

exec sp_configure @configname = 'polybase enabled', @configvalue = 1;
RECONFIGURE WITH OVERRIDE; 

表明:

Msg 15123, Level 16, State 1, Procedure sp_configure, Line 62 [Batch Start Line 0]
The configuration option 'polybase enabled' does not exist, or it may be an advanced option.

所以我用:

sp_configure 'show advanced option', 1;
GO
RECONFIGURE
Go

並通過以下方式檢查:

select * from sys.configurations where name like '%poly%'

只要:

polybase network encryption
allow polybase export

出現。

在這種情況下如何啟用此功能?

如果我錯過了任何內容,請告訴我。

SQL 2017 不適用於 Polybase。目前,我為此使用 SQL 2019,一切都很好。

exec sp_configure @configname = 'allow polybase export', @configvalue = 1;
RECONFIGURE;

引用自:https://dba.stackexchange.com/questions/240225