You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/t-sql/statements/create-external-file-format-transact-sql.md
+8-7Lines changed: 8 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ The following file formats are supported:
36
36
37
37
- JSON - Applies to Azure SQL Edge only. For information on using OPENROWSET to import JSON data in other platforms, see [Import JSON documents into SQL Server](../../relational-databases/json/import-json-documents-into-sql-server.md) or [Query JSON files using serverless SQL pool in Azure Synapse Analytics](/azure/synapse-analytics/sql/query-json-files).
- Delta - Applies to the [serverless SQL pools in Azure Synapse Analytics](/azure/synapse-analytics/sql/query-delta-lake-format) and[!INCLUDE[sssql22-md](../../includes/sssql22-md.md)].
40
40
41
41
## Syntax
42
42
@@ -122,27 +122,24 @@ WITH (
122
122
123
123
### [Delta table](#tab/delta)
124
124
```syntaxsql
125
-
-- Create an external file format for delta table files.
125
+
-- Create an external file format for delta table files (serverless SQL pools in Synapse analytics and SQL Server 2022).
126
126
CREATE EXTERNAL FILE FORMAT file_format_name
127
127
WITH (
128
128
FORMAT_TYPE = DELTA
129
+
-- DATA_COMPRESSION is available only in SQL Server
0 commit comments