伺服器組態:允許 Polybase 匯出
適用於:SQL Server 2016 (13.x) 和更新版本
allow polybase export
伺服器組態選項允許從 SQL Server 匯出資料。 相較於舊版,從 2022 SQL Server 2022 (16.x) 開始,此組態選項的功能不同:
在 SQL Server 2022 (16.x) 和更新版本中,CREATE EXTERNAL TABLE AS SELECT (CETAS) 陳述式會要求您使用
sp_configure
來啟用allow polybase export
。 此設定允許資料匯出至 CSV 或 Parquet 檔案。 如需範例,請參閱使用 CREATE EXTERNAL TABLE AS SELECT 將資料匯出為 parquet。在 SQL Server 2019 (15.x) 和較早版本中,啟用
allow polybase export
可讓 Hadoop 將資料從 SQL Server 匯出至外部資料表。 如需詳細資訊,請參閱 PolyBase 連接器和匯出資料。
下表說明可用的值:
值 | 意義 |
---|---|
0 (預設值) |
停用 |
1 |
啟用 |
此變更會立即生效。
範例
下列範例會啟用此設定。
EXEC sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
EXEC sp_configure 'allow polybase export', 1;
GO
RECONFIGURE;
GO