Skip to content

Latest commit

 

History

History
50 lines (38 loc) · 2.37 KB

allow-polybase-export.md

File metadata and controls

50 lines (38 loc) · 2.37 KB
title description author ms.author ms.reviewer ms.date ms.service ms.subservice ms.topic
Allow PolyBase export configuration option
Set `allow polybase export` configuration option in SQL Server settings
WilliamDAssafMSFT
wiassaf
mikeray
12/13/2022
sql
polybase
conceptual

Set allow polybase export configuration option

[!INCLUDE sqlserver2016]

The allow polybase export server configuration option allows the export of data out of SQL Server. The functionality of this configuration option is different starting with [!INCLUDEsssql22-md] compared to previous versions:

The possible values are described in the following table:

Value Meaning
0 Disabled, the default setting.
1 Enabled

This change takes effect immediately.

Example

The following example enables this setting.

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

Next steps