Skip to content

Latest commit

 

History

History
54 lines (38 loc) · 2.45 KB

File metadata and controls

54 lines (38 loc) · 2.45 KB
title Server Configuration: allow polybase export
description Set the configuration option to allow PolyBase export in SQL Server settings.
author MikeRayMSFT
ms.author mikeray
ms.reviewer hudequei, randolphwest
ms.date 08/26/2025
ms.service sql
ms.subservice polybase
ms.topic how-to

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.

EXECUTE sp_configure 'show advanced options', 1;
GO

RECONFIGURE;
GO

EXECUTE sp_configure 'allow polybase export', 1;
GO

RECONFIGURE;
GO

Related content