Hi i have a problem with MS SQL server 2000 and hope to seek for some advise.
i have the following samples
aa|0|abcdefg|
b|0|abcdefg|
i used the bulk insert in the query analyser..
BULK INSERT adl_ntid from 'C:/abc.unl with
(
FIELDTERMINATOR = '|',
ROWTERMINATOR = '|\n'
)
but they prompt me
Bulk insert data conversion error (truncation) for row 1, column 3 (NAME).
when i open in notepad, there is a square icon seperating my data. and i think this is the reason for the unsucessful insertion into my database.
i had looked into UNICODE DATA. but could not solve the problem
hope i can get some help
i have the following samples
aa|0|abcdefg|
b|0|abcdefg|
i used the bulk insert in the query analyser..
BULK INSERT adl_ntid from 'C:/abc.unl with
(
FIELDTERMINATOR = '|',
ROWTERMINATOR = '|\n'
)
but they prompt me
Bulk insert data conversion error (truncation) for row 1, column 3 (NAME).
when i open in notepad, there is a square icon seperating my data. and i think this is the reason for the unsucessful insertion into my database.
i had looked into UNICODE DATA. but could not solve the problem
hope i can get some help
Comment