I’m bulk loading files into a table which, among other fields, has a text field (the data to be stored here can contain more than 8000 characters). When I try to use BULK INSERT to load this data I get an error message if the data that is going into the field is more than ~5000 characters long. If I cut down the size of the data which is going into the text field, the bulk insert works fine.
Any Ideas?
My T-SQL
[tt]
BULK INSERT tblCTD FROM 'D:\janus\HydChem\tblCTD.csv' WITH (FIELDTERMINATOR = '!', ROWTERMINATOR = '&', TABLOCK)
[/tt]
The Error message
[tt]
[Microsoft][ODBC SQL Server Driver][DBNETLIB]ConnectionCheckForData (CheckforData()).
Server: Msg 11, Level 16, State 1, Line 0
General network error. Check your network documentation.
Connection Broken
[/tt]
Thx in advance
Sunaj
'The gap between theory and practice is not as wide in theory as it is in practice'
Any Ideas?
My T-SQL
[tt]
BULK INSERT tblCTD FROM 'D:\janus\HydChem\tblCTD.csv' WITH (FIELDTERMINATOR = '!', ROWTERMINATOR = '&', TABLOCK)
[/tt]
The Error message
[tt]
[Microsoft][ODBC SQL Server Driver][DBNETLIB]ConnectionCheckForData (CheckforData()).
Server: Msg 11, Level 16, State 1, Line 0
General network error. Check your network documentation.
Connection Broken
[/tt]
Thx in advance
Sunaj
'The gap between theory and practice is not as wide in theory as it is in practice'