Ask a Question related to ASP Database, Design and Development.
-
urich #1
Database locked.
Upon running my asp application, the application locks up.
I now see a file with .ldb in the fpdb folder which I
cannot delete. Apparently this is a duplicate version of
the database that the application is trying to access.
How do I get this application from keep locking up?
urich Guest
-
Database locked up
I'm using an Access database and it seems to think it's being access by a process even though it's not. I can pull data, but cannot save any... -
gif is locked
I pasted a snapshot in ps and saved as a gif. Now, I need to upload it for an example but I need to blur out the password. When I reopen the gif... -
locked out of my pc
My kid was playing a joke and he changed the password on my wondow xp system, how do I got pass this? -
locked out
Computer locked me out when idle for a couple of min. Requests admin. password, I forgot it. I had to cut power to log back in . It happened twice... -
I'm Locked Out!
My mother purchased my computer from some one else she knew, and it was fine. I had administrator privileges and everything, but I let someone use... -
Martin CLAVREUIL #2
Re: Database locked.
hello,
as access has no transaction coordinator any R/W access to the database will
lock it in read only mode. This a normal behaviour.
So, you have to connect your db just once, putting the connexion in the
application object.
"urich" <urich@wlake.org> a écrit dans le message de
news:011801c38060$69055a00$a101280a@phx.gbl...> Upon running my asp application, the application locks up.
> I now see a file with .ldb in the fpdb folder which I
> cannot delete. Apparently this is a duplicate version of
> the database that the application is trying to access.
>
> How do I get this application from keep locking up?
Martin CLAVREUIL Guest
-
Bob Barrows #3
Re: Database locked.
urich wrote:
No - the ldb file is the lock file which the first user of the database must> Upon running my asp application, the application locks up.
> I now see a file with .ldb in the fpdb folder which I
> cannot delete. Apparently this is a duplicate version of
> the database that the application is trying to access.
>
be able to create. It is not a duplicate of your database. It contains
information about which users are currently using the database. Subsequent
users of the database must be able to write to this file if it exists (so
their name can be added to or deleted from the list of current database
users), or create the file if it does not exist. The last user of the
database must have permissions to delete this file, or else the database can
remain locked.
This means that users of your database must have Change permissions (read
and write) for the folder containing your database file. With asp, this
means that the IUSR_machine account must be granted this level of
permission, as well as the IWAM_machine account. see:
[url]http://www.aspfaq.com/show.asp?id=2062[/url]
HTH,
Bob Barrows
Bob Barrows Guest
-
Bob Barrows #4
Re: Database locked.
Martin CLAVREUIL wrote:
Not true.> hello,
>
> as access has no transaction coordinator any R/W access to the
> database will lock it in read only mode. This a normal behaviour.
This is the worst thing you can possibly do if you want your application to>
> So, you have to connect your db just once, putting the connexion in
> the application object.
>
scale. See this:
[url]http://www.aspfaq.com/2053[/url]
Bob Barrows
Bob Barrows Guest



Reply With Quote

