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!

MS SQL problem

Status
Not open for further replies.

b00gieman

Programmer
Jul 9, 2007
60
DE
Hi!
Can somebody tell me what's wrong in this SQL command:

Code:
SELECT * INTO dbo.shopping_TSR FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0', 'Excel 8.0;Database='c:\inetpub\[URL unfurl="true"]wwwroot\fileuploader\upload\tmb2.xls'',[/URL] 'SELECT * FROM [Sheet1$]')

because I'm getting this error:
Incorrect syntax near 'c:'
 
That will give the following error:

Initialize returned 0x80004005: The provider did not give any information about the error.]

I'm developing an application in asp for importing data from excel to ms sql.
My SQL command(in the ASP page) looks like this:
Code:
SQLstr = "SELECT * INTO dbo.shopping_TSR FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0', 'Excel 8.0;Database='"+Server.MapPath("/fileuploader/upload/tmb2.xls")+"'', 'SELECT * FROM [Sheet1$]')"
Am I doing something wrong in the SQL statement?
I used Server.mapPath because the excel file is stored on a server.
 
Get rid of the single quote after Database=' and change the two single quotes later to one single quote. If that doesn't work, use two each in place of the ones you removed.

[COLOR=black #d0d0d0]My alarm clock causes time travel. When I hit snooze, no apparent time passes before the alarm sounds again, but the universe has in fact moved forward through time by ten minutes![/color]
 
I did that.Now I'm getting the following error:

[Microsoft][ODBC SQL Server Driver][SQL Server]OLE DB error trace [OLE/DB Provider 'Microsoft.Jet.OLEDB.4.0' IDBInitialize::Initialize returned 0x80004005: The provider did not give any information about the error.]

Any idea on what could be the cause?

Thanks in advance!
 
do you have read write access to the temp directory on the server?
 
On which server?The asp files and the .xls file are on a server,and the database is on another server.
 
I've always had security problems when trying to do stuff like this. Test it with a file on the server first, then if you get that working you know what the problem if it doesn't work somewhere else.

[COLOR=black #d0d0d0]My alarm clock causes time travel. When I hit snooze, no apparent time passes before the alarm sounds again, but the universe has in fact moved forward through time by ten minutes![/color]
 
Well...the excel file and the asp script are on the same server.Should I try with a file stored on the sql server or....?
 
Yes put the file on the sql server to try it, since you are accessing it through the server.


[COLOR=black #d0d0d0]My alarm clock causes time travel. When I hit snooze, no apparent time passes before the alarm sounds again, but the universe has in fact moved forward through time by ten minutes![/color]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top