DB File Problems

  • Thread starter Thread starter T Cordon
  • Start date Start date
T

T Cordon

I have a asp.net website that uses an Access DB to tresent various
information to the logged in users. The problem is when I try to replace
that DB with one with the same name and structure that contains updated
data, I cant because it says the file is being used, even if I stop the www
service for that site.

What can I?

Thanks
 
Hi, T Cordon,

Check your code to see if you have left opened connections to the db.

It is not enough to stop the website, you should terminate the aspnet_wp.exe
(or in Windows 2003 w3wp.exe) process as it is in it that the file is
opened.

Greetings
Martin
 
All my connections are closed


Martin Dechev said:
Hi, T Cordon,

Check your code to see if you have left opened connections to the db.

It is not enough to stop the website, you should terminate the aspnet_wp.exe
(or in Windows 2003 w3wp.exe) process as it is in it that the file is
opened.

Greetings
Martin
 
Back
Top