zhonghandle
Programmer
Hi,
I am trying to load the following csv file:
C1,C2,C3
1 ,M ,5
2 ,W ,1
3 ,M ,8C
Where C1, C2 and C3 are column names.
When I load the file using Microsoft.Jet.OLEDB.4.0, the table in SQL server looks like the following:
C1,C2,C3
1 ,M ,5
2 ,W ,1
3 ,M ,
Which 8C missing.
Can anyone tell me how to make the string value '8c' inserted?
Also, i tried to bulk load the CSV file in Query Analizer and I keep getting the error the source file not find even if the file is there. Is that because bulk load can only be used on the server?
Thanks alot.
I am trying to load the following csv file:
C1,C2,C3
1 ,M ,5
2 ,W ,1
3 ,M ,8C
Where C1, C2 and C3 are column names.
When I load the file using Microsoft.Jet.OLEDB.4.0, the table in SQL server looks like the following:
C1,C2,C3
1 ,M ,5
2 ,W ,1
3 ,M ,
Which 8C missing.
Can anyone tell me how to make the string value '8c' inserted?
Also, i tried to bulk load the CSV file in Query Analizer and I keep getting the error the source file not find even if the file is there. Is that because bulk load can only be used on the server?
Thanks alot.