Click to See Complete Forum and Search --> : The requested resource is in use.


jytioh
12-05-2004, 10:05 PM
I'm having "The requested resource is in use" problem on some of my asp pages. Those affected are the ones with recordsets read from access database. Pages not linked to database are not affected. Please advise on what I should do in order to solve this problem.

Thank you.

russell
12-05-2004, 10:48 PM
ms access can only be utilized by one user at a time. if it is open via the access gui, it won't be available for any other purpose. (1) don't open it other than via asp, (2) else, use a more robust db (mssql, mysql, oracle, db2 etc.)

sum up: if you use access for asp, don't allow anyone to touch it other than your asp.

jytioh
12-05-2004, 10:56 PM
Based on my latest observations, it is working on recordsets when i refresh but it will fail when I try to login to any password protected area.

russell
12-06-2004, 01:04 AM
are you explicitly closing and destroying all of your objects? how many users on your site?

jytioh
12-06-2004, 02:27 AM
how do i explicitly destroy or close objects on the server?

russell
12-06-2004, 01:02 PM
rs.close
set rs = nothing
db.close
set db = nothing

etc.