Ask a Question related to ASP Database, Design and Development.
-
S N #1
Problem with data access
i had a working site with iis5 winxp professional on a p4 machine.
suddenly i am having problems with and the asp pages which have some
updating commands for the database. the update commands dont work and i get
one of the following error messages. i have tried restarting the computer
and have also reinstalled microsoft office xp but the problem has not been
solved as yet.
please help
1. Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
[Microsoft][ODBC Microsoft Access Driver]General error Unable to open
registry key 'Temporary (volatile) Jet DSN for process 0x994 Thread 0xac4
DBC 0x147f024 Jet'.
2. Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
[Microsoft][ODBC Microsoft Access Driver] Cannot update. Database or object
is read-only.
S N Guest
-
Deployment problem - unable to access data when hostingtomcat on different machine than the client
Hi, I am developing a flex application that uses servlets to retrieve data from the database and generates graphs. During development, I had the... -
PhP, Access/SQL, Data comparison problem. (I'm new to PhP)
Hi All! I'm fairly new to PhP and basicly trying to learn right now. Now I have a problem - I have a fairly large collection of movies which people... -
Problem reading layer data error? Composite data instead? WTF
There are some situations where as a PS 6 document is seen as having problems in a PS 7 and PS8 version of Photoshop. There is also a chance, because... -
Data Access Problem when importing custom file
Hi, I have an aspx file that creates a custom class object and calls a method which should return a DataSet. It throws a: Description: The... -
access denied on data access pages
I have created data access pages that worked well when I tried them on two separate computer simutaneously, but when we went into production we got... -
Bob Barrows #2
Re: Problem with data access
S N wrote:
1. Stop using ODBC. The Microsoft OLE DB Provider for ODBC Drivers has been> i had a working site with iis5 winxp professional on a p4 machine.
> suddenly i am having problems with and the asp pages which have some
> updating commands for the database. the update commands dont work and
> i get one of the following error messages. i have tried restarting
> the computer and have also reinstalled microsoft office xp but the
> problem has not been solved as yet.
> please help
>
> 1. Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
> [Microsoft][ODBC Microsoft Access Driver]General error Unable to open
> registry key 'Temporary (volatile) Jet DSN for process 0x994 Thread
> 0xac4 DBC 0x147f024 Jet'.
>
>
> 2. Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
> [Microsoft][ODBC Microsoft Access Driver] Cannot update. Database or
> object is read-only.
deprecated and users are advised to use the native Jet OLEDB provider
instead. For a non-password-secured database, your connection string can be
as simple as :
conn.open "provider=micrososft.jet.oledb.4.0" & _
"data source=p:\ath\to\your\database.mdb"
You can use
"data source=" & Server.Mappath("database.mdb")
if your database is in a folder within the wwwroot folder.
2. These 80004005 issues are always NTFS permissions-related. The
IUSR_machinename account (and sometimes the IWAM_machinename account) needs
Change permissions for the folder containing the database file.
Bob Barrows
PS. Gack!! Why did you crosspost to so many groups??? This is an asp and
database issue. You did not have to post to so many groups.
microsoft.public.inetserver.asp.db is the perfect group for this question.
--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
Bob Barrows Guest



Reply With Quote

