Hello @silvan-9125,
Thanks fo the question .
The below TSQL will work for the first row , but it breaks for the last one . I am trying to get more help/clarity on this internally , I will update uou once I hear from our internal team .
COPY INTO dbo.test FROM 'https://…..test.csv'
WITH (
FIELDTERMINATOR='|',
FIRSTROW = 2,
ENCODING = 'UTF8',
CREDENTIAL=(IDENTITY= 'Shared Access Signature', SECRET='’)
) OPTION (LABEL = 'COPY: dbo.test');
Thanks
Himanshu