Ask a Question related to ASP Database, Design and Development.
-
JackV #1
Dreaded Jet DB error 80004005 help needed. What causes this???
Hi All,
I'm trying to understand what causes this error message:
Microsoft JET Database Engine error '80004005'
The Microsoft Jet database engine cannot open the file
'\\Devadp\cdrive\Inetpub\wwwroot\cgi-bin\HSW.MDB'. It is already opened
exclusively by another user, or you need permission to view its data.
/newopenedcasedupload.asp, line 28
My code works when the access db is located locally but when I try to access
a remote database on another server, I get the above message. Here is my
working code (when db is local) below. How can I access the remote db?
dim connectionstring, rs, db, Querystring
connectionstring = "provider=microsoft.jet.oledb.4.0;data source=
\\Devadp\cdrive\Inetpub\wwwroot\cgi-bin\HSW.MDB;persist security info=false"
Set Conn = Server.CreateObject("ADODB.Connection")
Conn.Open "DataUpload","InsertUpdate","xxxx"
set db = Server.CreateObject("ADODB.Connection")
db.Open connectionstring
Set rs = Server.CreateObject("ADODB.Recordset")
JackV Guest
-
Help 80004005 Error...
I'm working with a customer who has an NT Server (I think it's SP3) running IIS 4. We just converted the databases to Access 2000 and loaded Access... -
80004005 error
I initially posted this in a different ng. I was advised that this ng was perhaps more attuned to my question. The following is my original post:... -
Error Trapping the dreaded refresh
Hi All My problem basically is as follows: 1) User enters their details to create a new account in my db. 2) They press the submit, the... -
Provider error '80004005' Unspecified error - ARRRGGGHHH!!!!!
I have searched usenet & dev sites to no avail although many have had similar problems, reckon its an issue with DSN but not sure.. error occurs... -
Microsoft OLE DB Provider for ODBC Drivers error '80004005' Error
Hi folks - i've got a windows 2000 server (SP3) i've run the IIS lockdown tool on it and set for dynamic websites - all the static pages within the... -
Ray at #2
Re: Dreaded Jet DB error 80004005 help needed. What causes this???
See the steps you need to take here first.
[url]http://www.aspfaq.com/show.asp?id=2168[/url]
Ray at work
"JackV" <vituja@consumer.org> wrote in message
news:%23YMun%23i%23DHA.3284@TK2MSFTNGP09.phx.gbl.. .access> Hi All,
>
> I'm trying to understand what causes this error message:
> Microsoft JET Database Engine error '80004005'
>
> The Microsoft Jet database engine cannot open the file
> '\\Devadp\cdrive\Inetpub\wwwroot\cgi-bin\HSW.MDB'. It is already opened
> exclusively by another user, or you need permission to view its data.
>
> /newopenedcasedupload.asp, line 28
>
>
> My code works when the access db is located locally but when I try toinfo=false"> a remote database on another server, I get the above message. Here is my
> working code (when db is local) below. How can I access the remote db?
>
> dim connectionstring, rs, db, Querystring
>
> connectionstring = "provider=microsoft.jet.oledb.4.0;data source=
> \\Devadp\cdrive\Inetpub\wwwroot\cgi-bin\HSW.MDB;persist security>
> Set Conn = Server.CreateObject("ADODB.Connection")
> Conn.Open "DataUpload","InsertUpdate","xxxx"
> set db = Server.CreateObject("ADODB.Connection")
> db.Open connectionstring
> Set rs = Server.CreateObject("ADODB.Recordset")
>
>
>
>
Ray at Guest
-
JackV #3
Re: Dreaded Jet DB error 80004005 help needed. What causes this???
Thanks for the info Ray
"Ray at <%=sLocation%> [MVP]" <myfirstname at lane34 dot com> wrote in
message news:ez9IIFj%23DHA.3668@TK2MSFTNGP09.phx.gbl...my> See the steps you need to take here first.
>
> [url]http://www.aspfaq.com/show.asp?id=2168[/url]
>
> Ray at work
>
> "JackV" <vituja@consumer.org> wrote in message
> news:%23YMun%23i%23DHA.3284@TK2MSFTNGP09.phx.gbl.. .> access> > Hi All,
> >
> > I'm trying to understand what causes this error message:
> > Microsoft JET Database Engine error '80004005'
> >
> > The Microsoft Jet database engine cannot open the file
> > '\\Devadp\cdrive\Inetpub\wwwroot\cgi-bin\HSW.MDB'. It is already opened
> > exclusively by another user, or you need permission to view its data.
> >
> > /newopenedcasedupload.asp, line 28
> >
> >
> > My code works when the access db is located locally but when I try to> > a remote database on another server, I get the above message. Here is> info=false"> > working code (when db is local) below. How can I access the remote db?
> >
> > dim connectionstring, rs, db, Querystring
> >
> > connectionstring = "provider=microsoft.jet.oledb.4.0;data source=
> > \\Devadp\cdrive\Inetpub\wwwroot\cgi-bin\HSW.MDB;persist security>> >
> > Set Conn = Server.CreateObject("ADODB.Connection")
> > Conn.Open "DataUpload","InsertUpdate","xxxx"
> > set db = Server.CreateObject("ADODB.Connection")
> > db.Open connectionstring
> > Set rs = Server.CreateObject("ADODB.Recordset")
> >
> >
> >
> >
>
JackV Guest



Reply With Quote

