Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SELECT INTO syntax error

Status
Not open for further replies.

rss0213

Programmer
Jul 12, 2007
58
US
Hi. I'm getting a syntax error in my vbscript trying to set a SQL variable to the following string value:

strSQL = "SELECT * INTO tblPaymentDetail FROM OPENDATASOURCE(Provider=Microsoft.ACE.OLEDB.12.0;" & _
"Data Source=C:\Documents and Settings\apprss\Desktop\Purchasing Work\PaymentFiles\PaymentExport\Payment\PaymentDetailExport.csv;" & _
"Persist Security Info=False;" & _
"Extended Properties='text;HDR=Yes;FMT=Delimited'"
cn.Execute strSQL

Does anyone see the syntax error here?


Thanks!
Scott
 
OPENDATASOURCE???
is that not a sqlserver command
 
I don't think so - try google "Access OPENDATASOURCE".

Thanks!
Scott
 
BTW... the syntax error is something in the FROM clause. (I know... this doesn't really narrow it down that much, but that's all the vbscript run-time is telling me.)

Thanks!
Scott
 
try


sqlstr="SELECT * INTO tblPaymentDetail FROM OPENDATASOURCE('Microsoft.ACE.OLEDB.12.0'" & _ "'Data Source=C:\Documents and Settings\apprss\Desktop\Purchasing Work\PaymentFiles\PaymentExport\Payment\PaymentDetailExport.csv;" & _ "Persist Security Info=False;" & _ Extended Properties=""text;HDR=Yes;FMT=Delimited""')dt
 
I tried this:

strSQL = "SELECT * INTO tblPaymentDetail FROM OPENDATASOURCE('Microsoft.ACE.OLEDB.12.0'" & _
"'Data Source=C:\Documents and Settings\apprss\Desktop\Purchasing Work\PaymentFiles\PaymentExport\Payment\PaymentDetailExport.csv;" & _
"Persist Security Info=False;" & _
"Extended Properties=""text;HDR=Yes;FMT=Delimited""')dt"

It's basically the same thing, except I added a double-quote in front of Extended..." because this parm wasn't enclosed in double-quotes.

Thanks!
Scott
 
Oh, and I got the same error - "syntax error in FROM clause.."

Thanks!
Scott
 
Are you trying to import into sqlserver or in to access?
 
Import into Access from CSV file. I saw a blurb about this on another forum, so I thought I should be able to do it. Maybe it's not possible this way. Maybe I need to use INSERT INTO? I was just trying to see if I could do it without typing out all the fields (this was supposed to just import the entire file), because there are many in this CSV file.

Thanks!
Scott
 
Why not simply use the DoCmd.TransferText method ?

Hope This Helps, PH.
FAQ219-2884
FAQ181-2886
 
Great. Now it's telling me my import specification doesn't exist. I copied and pasted the import spec into my vbscript:

varPmtDetail = sCurPath & "\PaymentExport\Payment\PaymentDetailExport.csv"
Dim appAccess
Set appAccess = CreateObject("Access.Application")
appAccess.OpenCurrentDatabase "C:\Documents and Settings\apprss\Desktop\Purchasing Work\PurchasingP2P.accdb"

If (objFSO.FileExists(varPmtDetail)) Then
appAccess.DoCmd.TransferText acImportDelim, "Import-PaymentDetailExport", "tblPaymentDetail", varPmtDetail
End If

Thanks!
Scott
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top