Microsoft Access Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
User Name:
Password:
Remember me
Go Back   ASP Free ForumsDatabaseMicrosoft Access Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread ASP Free Forums Sponsor:
  #1  
Old September 21st, 2003, 09:21 AM
jaseybabes jaseybabes is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Sep 2003
Posts: 1 jaseybabes User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
General error Unable to open registry key 'Temporary (volatile) Jet DSN for process 0

Up until the end of last week the webserver was working fine.

However since all the recommended patches were put on the Windows 2000 Server running IIS 5 the following error is now displayed:
Microsoft OLE DB Provider for ODBC Drivers error '80004005'

[Microsoft][ODBC Microsoft Access Driver]General error Unable to open registry key 'Temporary (volatile) Jet DSN for process 0x380 Thread 0x460 DBC 0x2013f84 Jet'.

/library/inc_dbconnection.asp, line 10

The only thing that changed was the recommended updates were put on.

Any ideas?

Reply With Quote
  #2  
Old September 25th, 2003, 03:26 AM
hmathieu hmathieu is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Sep 2003
Posts: 2 hmathieu User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
We have the same problem since 2 weeks.... the website itself is not updated, only the server patching. Same connecting problems. After a reboot the site will work a few hours and the error will come back.

I have not found any info on the technet site about this... who could help?

Reply With Quote
  #3  
Old September 25th, 2003, 08:24 AM
smeyj smeyj is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Sep 2003
Posts: 1 smeyj User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
make sure your connection string has the right path.

Give the IUSR account write permissions to the directory where the Access database is and to the windows %temp% directory.

Reply With Quote
  #4  
Old September 25th, 2003, 12:27 PM
hmathieu hmathieu is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Sep 2003
Posts: 2 hmathieu User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
did all this before... and why de website will work a few hours after rebooting the servers and stop suddenly? Only after a time this error appears.

Gtz.

Hans

Reply With Quote
  #5  
Old October 15th, 2003, 10:34 AM
hismightiness hismightiness is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Oct 2003
Location: Florida
Posts: 3 hismightiness User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
If your permissions heirarchy (spelled correctly?) in your web directories and any other directories which house your DB's are not set-up correctly, your permissions can be reset everytime the server is rebooted. I used to encounter that a lot in the past.

[EDIT] - Oops! Also, many updates will change some settings you made to your web site and it's structure. The worst I have seen so far is upgrading to 2003 FrontPage Extensions, and the newset MDAC update. They were a nightmare!

Last edited by hismightiness : October 15th, 2003 at 10:39 AM.

Reply With Quote
  #6  
Old January 23rd, 2004, 03:44 AM
wdjong wdjong is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Jan 2004
Posts: 1 wdjong User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Hello all,

Perhaps a tad bit late but I had the same error when I tried to login to my localhost or thrue the web to the website. I set all permissions correctly but it didn't help.

The cause for my problems were eventually linked to my firewall. Aparently closing down my firewall blocked my pc for the iwam usr etc. Even with an admin account, logging into the website didn't work. (NT authorisation)

The solution for the problem was to simply configure the firewall correctly to allow more rights to web users. (The firewall I used was Black Ice.)

Hope to have helped others with the firewall solution.

Reply With Quote
  #7  
Old August 9th, 2004, 05:24 AM
HoangNuked HoangNuked is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Aug 2004
Posts: 1 HoangNuked User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Thumbs up

Hi,

I have the same problem as yours. I don't use ODBC driver but Jet Driver and that works;

Some code ex:

------------------------
......
svrpath = server.MapPath("/")
constr = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & svrpath & "\database\MyDBAccess.mdb;Persist Security Info=False"

Set ConDb1=Server.CreateObject("ADODB.Connection")
ConDb1.Open conStr
......
------------------------

Good luck!

Reply With Quote
  #8  
Old August 9th, 2004, 08:00 AM
hismightiness hismightiness is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Oct 2003
Location: Florida
Posts: 3 hismightiness User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Yeah, we ended up moving over to the very same driver until we upgraded to .Net & SQL Server.

Reply With Quote
  #9  
Old June 17th, 2008, 12:48 AM
mr_menon mr_menon is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Jun 2008
Posts: 7 mr_menon User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 54 m 33 sec
Reputation Power: 0
Quote:
Originally Posted by HoangNuked
Hi,

I have the same problem as yours. I don't use ODBC driver but Jet Driver and that works;

Some code ex:

------------------------
......
svrpath = server.MapPath("/")
constr = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & svrpath & "\database\MyDBAccess.mdb;Persist Security Info=False"

Set ConDb1=Server.CreateObject("ADODB.Connection")
ConDb1.Open conStr
......
------------------------

Good luck!


Hey

Thank you very much..it worked..i was facing the same problem and couldnt find any solution..I just registered myself to this forum so i could write you thank you note ///

Thanks
Take care
menon

Reply With Quote
  #10  
Old June 26th, 2009, 01:18 AM
huitradoemm huitradoemm is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Jun 2009
Posts: 1 huitradoemm User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 6 m 24 sec
Reputation Power: 0
Thank you

Quote:
Originally Posted by HoangNuked
Hi,

I have the same problem as yours. I don't use ODBC driver but Jet Driver and that works;

Some code ex:

------------------------
......
svrpath = server.MapPath("/")
constr = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & svrpath & "\database\MyDBAccess.mdb;Persist Security Info=False"

Set ConDb1=Server.CreateObject("ADODB.Connection")
ConDb1.Open conStr
......
------------------------

Good luck!


This really help me so much!! Thank you!!!

Reply With Quote
Reply

Viewing: ASP Free ForumsDatabaseMicrosoft Access Help > General error Unable to open registry key 'Temporary (volatile) Jet DSN for process 0


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump



 Free IT White Papers!
 
How to Present Effectively Online
This white paper offers practical and actionable advice on the key steps that any presenter should consider as they plan and execute a Webinar or online meeting.

 
Open Source Security Myths
Open Source Software (OSS) is computer software whose source code is available to the general public with relaxed or non-existent intellectual property restrictions (or arrangement such as the public domain), and is usually developed with the input of many contributors.

 
Power and Cooling Capacity Management for Data Centers
This paper describes the principles for achieving power and cooling capacity management.

 
Scalable, Fault-Tolerant NAS for Oracle - The Next Generation
For several years NAS has been evolving as a storage alternative for Oracle databases, and for good reason: NAS is quite often the simplest, most cost-effective storage approach for Oracle. Learn about the benefits that HP's approach to scalable NAS brings to Oracle environments in this comprehensive white paper.

 
Understanding Web Application Security Challenges
This white paper discusses many common threats and preventive measures for Web application security, and explains what you can do to help protect your organization.

 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2009 by Developer Shed. All rights reserved. DS Cluster 3 hosted by Hostway
Stay green...Green IT