Bulk load failed with error using copy
Hi Team,
Objective is to bulk load the table using csv which is available in azure storage. Trying to load the data from tesfile.csv to table airtravel which is available in the test sql pool.
Document followed
COPY INTO dbo.airtravel FROM 'https://madhuritestdatalake.blob.core.windows.net/madhuraitestdatalakefile/2_ExportSourceDataWithBCP/testfolder/tesfile.csv' WITH ( FILE_TYPE = 'CSV', CREDENTIAL = (IDENTITY= 'Storage Account Key', SECRET='mykey'), FIELDTERMINATOR=',', ROWTERMINATOR=';' );
Received error
error Msg 110813, Level 16, State 1, Line 1 The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. Completion time: 2021-10-16T23:24:35.8581042-04:00
Regards
Hemanth