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/copy-into-transact-sql.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -274,17 +274,17 @@ IDENTITY_INSERT specifies whether the identity value or values in the imported d
274
274
275
275
#### *AUTO_CREATE_TABLE = { 'ON' | 'OFF' }*
276
276
277
-
*AUTO_CREATE_TABLE* specifies if the table could be automatically created by working alongside with automatic schema discovery. It is available only for parquet files.
277
+
*AUTO_CREATE_TABLE* specifies if the table could be automatically created by working alongside with automatic schema discovery. It is available only for Parquet files.
278
278
279
-
- ON: Enables automatic table creation. The COPY INTO process will create a new table automatically by discovering the structure of the file to be loaded.
279
+
- ON: Enables automatic table creation. The COPY INTO process will create a new table automatically by discovering the structure of the file to be loaded. Can also be used with preexisting tables to take advantage of automatic schema discovery of Parquet files.
280
280
- OFF: Automatic table creation is not enabled. Default.
281
281
282
282
>[!NOTE]
283
283
> The automatic table creation works alongside with automatic schema discovery. The automatic table creation is NOT enabled by default.
284
284
285
-
Do not load into hash distributed tables from parquet files using COPY INTO with AUTO_CREATE_TABLE = 'ON'.
285
+
Do not load into hash distributed tables from Parquet files using COPY INTO with AUTO_CREATE_TABLE = 'ON'.
286
286
287
-
If parquet files are to be loaded into hash distributed tables using COPY INTO, load it into a round robin staging table followed by INSERT ... SELECT from that table to the target hash distributed table.
287
+
If Parquet files are to be loaded into hash distributed tables using COPY INTO, load it into a round robin staging table followed by INSERT ... SELECT from that table to the target hash distributed table.
288
288
289
289
### Permissions
290
290
@@ -377,7 +377,7 @@ WITH (
377
377
378
378
### D. Load Parquet or ORC using existing file format object
379
379
380
-
This example uses a wildcard to load all parquet files under a folder.
380
+
This example uses a wildcard to load all Parquet files under a folder.
0 commit comments