Hi all,I have a file data to be loaded to sql using bulk import optionI have 11 | delimiters in it, but I want to load the entire file records into one column, say for eg. file A|B|....|xyz1A|B|....|xyz22A|B|....|xyz3stage_tablecolumn1A|B|....|xyz1A|B|....|xyz22A|B|....|xyz3BULK INSERT dbo.[stage_table] FROM '\\UB26\Project\ATTR_M.txt' WITH ( BATCHSIZE = 50000, --FIELDTERMINATOR = '\r\n', ROWTERMINATOR = '\r\n', KEEPNULLS )is giving me the below errorThe bulk load failed. The column is too long in the data file for row 1, column 1.
-Neil