Skip to content

Commit 8dfa4ca

Browse files
authored
Merge pull request #33604 from jovanpop-msft/patch-48
Specify that field quote can be only a single character
2 parents bd22649 + 7ac3189 commit 8dfa4ca

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/t-sql/functions/openrowset-transact-sql.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: "OPENROWSET includes all connection information that is required to
44
author: MikeRayMSFT
55
ms.author: mikeray
66
ms.reviewer: randolphwest, hudequei, wiassaf, nzagorac, jovanpop
7-
ms.date: 02/12/2025
7+
ms.date: 03/26/2025
88
ms.service: sql
99
ms.subservice: t-sql
1010
ms.topic: reference
@@ -68,7 +68,7 @@ OPENROWSET( BULK 'data_file' ,
6868
-- bulk_options related to input file format
6969
[ , CODEPAGE = { 'ACP' | 'OEM' | 'RAW' | 'code_page' } ]
7070
[ , FORMAT = { 'CSV' | 'PARQUET' | 'DELTA' } ]
71-
[ , FIELDQUOTE = 'quote_characters' ]
71+
[ , FIELDQUOTE = 'quote_character' ]
7272
[ , FORMATFILE = 'format_file_path' ]
7373
[ , FORMATFILE_DATA_SOURCE = 'data_source_name' ]
7474
@@ -313,7 +313,7 @@ Beginning with [!INCLUDE [sssql17-md](../../includes/sssql17-md.md)], the format
313313

314314
#### FIELDQUOTE = '*field_quote*'
315315

316-
Beginning with [!INCLUDE [sssql17-md](../../includes/sssql17-md.md)], this argument specifies a character that is used as the quote character in the CSV file. If not specified, the quote character (`"`) is used as the quote character as defined in the [RFC 4180](https://datatracker.ietf.org/doc/html/rfc4180) standard.
316+
Beginning with [!INCLUDE [sssql17-md](../../includes/sssql17-md.md)], this argument specifies a character that is used as the quote character in the CSV file. If not specified, the quote character (`"`) is used as the quote character as defined in the [RFC 4180](https://datatracker.ietf.org/doc/html/rfc4180) standard. Only a single character can be specified as the value for this option.
317317

318318
## Remarks
319319

0 commit comments

Comments
 (0)