I have a table schema as follows:
field1 datetime
field2 float
field3 varchar(50)
I am attempting to import a text file, with records in the following layout. Here's a sample record:
11/16/2003 12:10a 146,944 log_dump.11160010
I've tried using BULK INSERT, but each time, it tells me that 0 records were inserted. There are no syntax errors. I even created a format file from a bcp export that I tweaked to align up with the text file layout, but I get the same results.
Any help pointing me the right direction would be appreciated. Thank you.
field1 datetime
field2 float
field3 varchar(50)
I am attempting to import a text file, with records in the following layout. Here's a sample record:
11/16/2003 12:10a 146,944 log_dump.11160010
I've tried using BULK INSERT, but each time, it tells me that 0 records were inserted. There are no syntax errors. I even created a format file from a bcp export that I tweaked to align up with the text file layout, but I get the same results.
Any help pointing me the right direction would be appreciated. Thank you.