Skip to content

Latest commit

 

History

History
51 lines (38 loc) · 2.44 KB

allow-polybase-export.md

File metadata and controls

51 lines (38 loc) · 2.44 KB
title description author ms.author ms.reviewer ms.date ms.service ms.subservice ms.topic
Server configuration: allow polybase export
Set the configuration option to allow PolyBase export in SQL Server settings.
MikeRayMSFT
mikeray
hudequei, randolphwest
07/18/2024
sql
polybase
conceptual

Server configuration: allow polybase export

[!INCLUDE sqlserver2016]

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

The possible values are described in the following table:

Value Meaning
0 (default) Disabled
1 Enabled

This change takes effect immediately.

Examples

The following example enables this setting.

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

Related content