I have the following on an asp page -
<%
Set Con=server.CreateObject("ADODB.Connection")
con.Open "DSNNAME", "USERNAME", "PASSWORD"
con.Execute "BULK INSERT tblName FROM 'C:\Inetpub\wwwroot\file.csv' WITH
(MAXERRORS = 0, FIELDTERMINATOR = '"",""', ROWTERMINATOR = '\n')"
con.close
Response.Redirect "success.asp"
%>
The script appears to run and return me to success.asp, however there is
nothing posted in the db. What am I doing wrong?
--
Olivia Towery