I have the following SQL Bulk Insert query:
BULK INSERT [dialerresults] FROM [C:\IVR Test\csvtest.txt] WITH (FIELDTERMINATOR = ',' ROWTERMINATOR = '/n')
and here is the sample data:
1,512 206 1293,rob stevens,doctor alexander,1 5 10,12:30, null
2,512 555 1212,jason reed,doctor smith,5 5 10,1:00, null
3,512 444 1111,sean jones,doctor paul,6 1 10,4:00, null
4,512 111 1212,zach cochran,doctor stevens,5 6 10,3:15, null
The table has the following fields
ID (int)
phonenumber (varchar 20)
patientname (varchar 20)
drname (varchar 30)
apptdate (datetime 8)
appttime (datetime 4)
currentdate (timestamp 8)
When I run this query with the Query Analyzer for SQL server, I am not getting any errors but I'm also not getting any data inserted into the table. I'm on SQL server 2000. When I run the query I have added a Select * from dialerresults to see if any data is inserted and the analyzer tells me that there are 0 rows affected. Does anyone have any idea as to why it's not inserting the data?
Thank you Doug
result (char 10)
BULK INSERT [dialerresults] FROM [C:\IVR Test\csvtest.txt] WITH (FIELDTERMINATOR = ',' ROWTERMINATOR = '/n')
and here is the sample data:
1,512 206 1293,rob stevens,doctor alexander,1 5 10,12:30, null
2,512 555 1212,jason reed,doctor smith,5 5 10,1:00, null
3,512 444 1111,sean jones,doctor paul,6 1 10,4:00, null
4,512 111 1212,zach cochran,doctor stevens,5 6 10,3:15, null
The table has the following fields
ID (int)
phonenumber (varchar 20)
patientname (varchar 20)
drname (varchar 30)
apptdate (datetime 8)
appttime (datetime 4)
currentdate (timestamp 8)
When I run this query with the Query Analyzer for SQL server, I am not getting any errors but I'm also not getting any data inserted into the table. I'm on SQL server 2000. When I run the query I have added a Select * from dialerresults to see if any data is inserted and the analyzer tells me that there are 0 rows affected. Does anyone have any idea as to why it's not inserting the data?
Thank you Doug
result (char 10)