Skip to content

Commit bfd21f3

Browse files
authored
Update allow-polybase-export.md
The documentation is inconsistent, https://learn.microsoft.com/en-us/sql/t-sql/statements/create-external-table-as-select-transact-sql?view=sql-server-linux-ver16 states: For SQL Server 2022 (16.x), the option allow polybase export must be enabled on sp_configure. For more information, see Set allow polybase export configuration option. On this page the documentation limits this setting to hadoop external tables, however it also applies to S3 external tables etc. Sample code states the code should enable the setting, sample code however used to run with 0 which means the the feature gets disabled. Looks like this sample code was never run on a machine ;-)
1 parent 1005929 commit bfd21f3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/database-engine/configure-windows/allow-polybase-export.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.topic: conceptual
1313

1414
[!INCLUDE [sqlserver2016](../../includes/applies-to-version/sqlserver2016.md)]
1515

16-
`allow polybase export` server configuration option allows `INSERT` into a Hadoop external table.
16+
`allow polybase export` server configuration option allows `INSERT` into an external table.
1717

1818
This feature does not support insert into other external data sources.
1919

@@ -36,12 +36,12 @@ sp_configure 'show advanced options', 1;
3636
GO
3737
RECONFIGURE;
3838
GO
39-
sp_configure 'allow polybase export', 0;
39+
sp_configure 'allow polybase export', 1;
4040
GO
4141
RECONFIGURE;
4242
GO
4343
```
4444

4545
## Next steps
4646

47-
[Exporting data](../../relational-databases/polybase/polybase-configure-hadoop.md#exporting-data)
47+
[Exporting data](../../relational-databases/polybase/polybase-configure-hadoop.md#exporting-data)

0 commit comments

Comments
 (0)