設定 [允許 PolyBase 匯出] 組態選項

適用於:SQL Server 2016 (13.x) 和更新版本

allow polybase export 伺服器組態選項允許從 SQL Server 匯出資料。 相較於舊版,從 2022 SQL Server 2022 (16.x) 開始,此組態選項的功能不同:

下表說明可用的值:

意義
0 已停用 (預設設定)。
1 啟用

此變更會立即生效。

範例

下列範例會啟用此設定。

sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'allow polybase export', 1;
GO
RECONFIGURE;
GO

後續步驟