An Azure analytics service that brings together data integration, enterprise data warehousing, and big data analytics. Previously known as Azure SQL Data Warehouse.
Hi @Bhargava Gunnam , @Jaison Menezes
Found that a quote character can be escaped using another character. So I used '=' as the quote character since it was not appearing in any of the values.
SELECT
TOP 100 *
FROM
OPENROWSET(
BULK 'https://<storage>.blob.core.windows.net/Customer/Customer_2023-03-08_07-30.csv',
FORMAT = 'CSV',
PARSER_VERSION = '2.0',
FIELDTERMINATOR = '|',
HEADER_ROW=TRUE,
FIELDQUOTE = '='
) AS [result]