Skip to content

Latest commit

 

History

History
50 lines (38 loc) · 2.37 KB

File metadata and controls

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