I can't seem to get SQL 2005 to import a text file.
My intent is to bring in each line in the text file as a separate row. So the result looks like:
ID col1
1 one long row of text (len = 255)
2 another long row of text
.....
No columns, no delimiters
I used to do this all the time in SQL 2000, but when I try in 2005 (via the Import Export Wizard) I get the error:
Error 0xc02020a1: Data Flow Task: Data conversion failed. The data conversion for column "Column 0" returned status value 4 and status text "Text was truncated or one or more characters had no match in the target code page.".
I've seen some evidence in Google that this is a known bug in 2005. Any ideas?
My intent is to bring in each line in the text file as a separate row. So the result looks like:
ID col1
1 one long row of text (len = 255)
2 another long row of text
.....
No columns, no delimiters
I used to do this all the time in SQL 2000, but when I try in 2005 (via the Import Export Wizard) I get the error:
Error 0xc02020a1: Data Flow Task: Data conversion failed. The data conversion for column "Column 0" returned status value 4 and status text "Text was truncated or one or more characters had no match in the target code page.".
I've seen some evidence in Google that this is a known bug in 2005. Any ideas?