I have search around but have not found anything that has worked in bulk inserting records into a SQL table. I have tried different variation using characters, ASCII and HEX values without success. Each time generating an error. I usually perform alteration in Excel (no SQL experience_), but this file has over 5M records. This has to be possible, does anyone have a working solution or provide additional guidance ? Thank you in advance.
ERROR:
Msg 4866, Level 16, State 1, Line 110 The bulk load failed. The column is too long in the data file for row 1, column 1. Verify that the field terminator and row terminator are specified correctly. Msg 7399, Level 16, State 1, Line 110 The OLE DB provider "BULK" for linked server "(null)" reported an error. The provider did not give any information about the error. Msg 7330, Level 16, State 2, Line 110 Cannot fetch a row from OLE DB provider "BULK" for linked server "(null)".
Sample Data

-- Linefeed - 0x0A
-- Quote - 0xFE
-- Column - 0X14
BULK INSERT AllTags
FROM 'C:\Data\Swap Drive\Elegance Brands\01. Document Export\REL000001-REL296747\VOL0002.DAT'
WITH (
FIRSTROW = 2 ,
FIELDTERMINATOR = '0x14',
ROWTERMINATOR='\n' ,
BATCHSIZE=250000 ,
MAXERRORS= 2,
KEEPNULLS
);
GO
Appreciated any assistance, thank you in advance.



