473,506 Members | 17,176 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

MS Access DB used by both a local App and .net Web App

I am working on a project to build a reporting web app from an exsiting
database that is controled by a local application. The application that
has control over the database creates a lock file to the database and
at that point I can no longer access the database with my web app. Is
there anyway around this? All I need is read only access to the
database to get some report information to display on the web page.

The error I get on the web app when I try to access the locked db is
"Could not use ''; file already in use."

Anyone have experiance with this?

Nov 19 '05 #1
16 1964
I found this thread but I didn't follow how the problem was fixed.
http://groups.google.com/group/micro...80ef822df6e91c

Nov 19 '05 #2
Well your problem is that Access is a single user database and sucks
somewhat for this type of scneario.

If all your doing is reporting (a read activity), copy the file when you
access it using asp.net to a temp file and read from that instead. That way
you should always have access and will get up to date data.

--
Regards

John Timney
ASP.NET MVP
Microsoft Regional Director

"JonnyD" <ma*********@gmail.com> wrote in message
news:11**********************@o13g2000cwo.googlegr oups.com...
I am working on a project to build a reporting web app from an exsiting
database that is controled by a local application. The application that
has control over the database creates a lock file to the database and
at that point I can no longer access the database with my web app. Is
there anyway around this? All I need is read only access to the
database to get some report information to display on the web page.

The error I get on the web app when I try to access the locked db is
"Could not use ''; file already in use."

Anyone have experiance with this?

Nov 19 '05 #3
I think my suggestion from 3 years ago still is good advice:

"Downloaded FileMon and took another look. Appears ASPNET didn't have the
rights I thought it did to the database and the folder it resides in. Fixed
that, and the problem cleared up"

The ASPNET user must have read/write access to the folder containing your
..mdb file.

Greg
"JonnyD" <ma*********@gmail.com> wrote in message
news:11**********************@z14g2000cwz.googlegr oups.com...
I found this thread but I didn't follow how the problem was fixed.
http://groups.google.com/group/micro...80ef822df6e91c

Nov 19 '05 #4
I would like the data to be as real time as possable though, would it
be slow if i were to copy the db for every page refresh, or even
everytime a querry is run?

Nov 19 '05 #5
MS Access is weird. We run into this all the time on our network where we
want some users to have full rights to a database, and others have only read
rights. Turns out if the read-only people connect while a full-rights
person is connected they get "blocked"(!) See, no matter what your rights
to the .mdb, you have to have full-rights to the .ldb (maybe even create it,
if it is not present) in order for Access to work properly. (Access suxs
for this, but wacha goin do).

The solution for multiple users on a network share is to place the .mdb file
in a folder. Permission the folder for with full-rights for everbody. Then
restricts rights to the .mdb file itself for the read-only folks. This
allows everybody to create/write the .ldb file. A nasty side effect is that
the read-only folks can create/write to any other files in the subfolder.
You cannot just permission the .ldb explicitly, because sometimes it get
deleted.

(There is a KB article on the above, I'll try and track it down._

OK. How does this apply to a web app...

If the .mdb was on the same server, you would just give the local ASPNET
user full rights to the folder that contains the .mdb. There, problem
solved. :)

Since you database is on a different server you have to do more. This is
what I do all time; "Pass-through authentication".

The steps:
#1. Change the password for your ASPNET user on the webserver. (If will give
dire warnings, but just do it). Set it to something secret.
#2. Open machine.config on webserver. Fine the processModel section.
Change password from "autogenerate" to your new password.

Run iisreset to restart webserver (or just reboot webser). (If you ever
apply .dotnet SP1 or a future SP; it will reset the ASPNET password back to
some unknown, and things will break - cause it won't match what the
machine.config says. Just reset it again, and double check the account
didn't get lock out.)

Now ASP.NET is running on your webserver with the still limited user
account; ASPNET, but now with a known password. (that is the key to making
this work)

#3. On network share server, create a local account named "ASPNET". Make
password the same as above.
#4. Permission the folder containing your .mdb file on this server, so that
this local account has read-write access to the entire folder(!).

You could have made a domain account, and changed your webserver to run
using it instead. But then you would have to assign that domain account the
same rights as the local ASPNET user on the webserver for things to work
correctly. (That is tricky to do, and not necessary using pass-through).
There are KB on how to do this, but doesn't seem worth the hassel to me.

Added bonus: this method works also if you ever need to connect to SQL
Server running on another server than your webserver.

Let me know what you need cleared up. I'm typing pretty fast. :)

Greg

"Greg Burns" <greg_burns@DONT_SPAM_ME_hotmail.com> wrote in message
news:OB**************@TK2MSFTNGP15.phx.gbl...
I think my suggestion from 3 years ago still is good advice:

"Downloaded FileMon and took another look. Appears ASPNET didn't have the
rights I thought it did to the database and the folder it resides in.
Fixed
that, and the problem cleared up"

The ASPNET user must have read/write access to the folder containing your
.mdb file.

Greg
"JonnyD" <ma*********@gmail.com> wrote in message
news:11**********************@z14g2000cwz.googlegr oups.com...
I found this thread but I didn't follow how the problem was fixed.
http://groups.google.com/group/micro...80ef822df6e91c


Nov 19 '05 #6
Here is the KB I mentioned:

http://support.microsoft.com/default...b;en-us;136128
Required Folder Permissions
If you plan to share a database, the .mdb file should be located in a folder
where users have read, write, create, and delete (or full control)
permissions. Even if you want users to have different file permissions (for
example, some read-only and some read-write), all users sharing a database
must have read, write, and create permissions to the folder. You can,
however, assign read-only permissions to the .mdb file for individual users
while still allowing full permissions to the folder.

"Greg Burns" <greg_burns@DONT_SPAM_ME_hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP15.phx.gbl...
MS Access is weird. We run into this all the time on our network where we
want some users to have full rights to a database, and others have only
read rights. Turns out if the read-only people connect while a
full-rights person is connected they get "blocked"(!) See, no matter what
your rights to the .mdb, you have to have full-rights to the .ldb (maybe
even create it, if it is not present) in order for Access to work
properly. (Access suxs for this, but wacha goin do).

The solution for multiple users on a network share is to place the .mdb
file in a folder. Permission the folder for with full-rights for
everbody. Then restricts rights to the .mdb file itself for the read-only
folks. This allows everybody to create/write the .ldb file. A nasty side
effect is that the read-only folks can create/write to any other files in
the subfolder. You cannot just permission the .ldb explicitly, because
sometimes it get deleted.

(There is a KB article on the above, I'll try and track it down._

OK. How does this apply to a web app...

If the .mdb was on the same server, you would just give the local ASPNET
user full rights to the folder that contains the .mdb. There, problem
solved. :)

Since you database is on a different server you have to do more. This is
what I do all time; "Pass-through authentication".

The steps:
#1. Change the password for your ASPNET user on the webserver. (If will
give dire warnings, but just do it). Set it to something secret.
#2. Open machine.config on webserver. Fine the processModel section.
Change password from "autogenerate" to your new password.

Run iisreset to restart webserver (or just reboot webser). (If you ever
apply .dotnet SP1 or a future SP; it will reset the ASPNET password back
to some unknown, and things will break - cause it won't match what the
machine.config says. Just reset it again, and double check the account
didn't get lock out.)

Now ASP.NET is running on your webserver with the still limited user
account; ASPNET, but now with a known password. (that is the key to making
this work)

#3. On network share server, create a local account named "ASPNET". Make
password the same as above.
#4. Permission the folder containing your .mdb file on this server, so
that this local account has read-write access to the entire folder(!).

You could have made a domain account, and changed your webserver to run
using it instead. But then you would have to assign that domain account
the same rights as the local ASPNET user on the webserver for things to
work correctly. (That is tricky to do, and not necessary using
pass-through). There are KB on how to do this, but doesn't seem worth the
hassel to me.

Added bonus: this method works also if you ever need to connect to SQL
Server running on another server than your webserver.

Let me know what you need cleared up. I'm typing pretty fast. :)

Greg

"Greg Burns" <greg_burns@DONT_SPAM_ME_hotmail.com> wrote in message
news:OB**************@TK2MSFTNGP15.phx.gbl...
I think my suggestion from 3 years ago still is good advice:

"Downloaded FileMon and took another look. Appears ASPNET didn't have
the
rights I thought it did to the database and the folder it resides in.
Fixed
that, and the problem cleared up"

The ASPNET user must have read/write access to the folder containing your
.mdb file.

Greg
"JonnyD" <ma*********@gmail.com> wrote in message
news:11**********************@z14g2000cwz.googlegr oups.com...
I found this thread but I didn't follow how the problem was fixed.
http://groups.google.com/group/micro...80ef822df6e91c



Nov 19 '05 #7
"John Timney ( MVP )" <ti*****@despammed.com> wrote in message
news:uE**************@tk2msftngp13.phx.gbl...
Well your problem is that Access is a single user database
That simply isn't true...
http://office.microsoft.com/en-gb/as...408601033.aspx
and sucks somewhat for this type of scneario.


That, however, is perfectly true.
Nov 19 '05 #8
"JonnyD" <ma*********@gmail.com> wrote in message
news:11**********************@o13g2000cwo.googlegr oups.com...
Anyone have experiance with this?


Yes, and you're not going to like the answer.

Put simply, an Access database is *totally* unsuited to what you're trying
to do with it, for several reasons:

1) Although the Jet engine is inherently multi-user, it is a desktop
database engine, not a server database engine. This means that all queries
run on the client, not the server.

2) Whenever an Access database is opened, a corresponding locking file (e.g.
Northwind.ldb) is created with the same name and in the same folder as the
database. This means that every user of the database needs to have,
essentially, full control permissions on the network folder.

3) Access databases restrict the number of concurrent connections from IIS -
I can't remember exactly what that figure is, but it's quite low.

4) If you have the Access application installed on your desktop and,
inadvertently or even intentionally, open a database as "Exclusive" (e.g. to
do some maintenance or whatever), Access will remember that setting and will
always subsequently open that database as Exclusive until you explicitly
tell it not to, thereby preventing any other user from connecting to it.
Do yourself a huge favour and use SQL Server / MSDE / mySql...
Nov 19 '05 #9
A caveat and some info...

re:
This means that every user of the database needs to have, essentially, full control
permissions on the network folder.
In a anonymous-access web application there's only one user.

re: 3) Access databases restrict the number of concurrent connections from IIS - I can't
remember exactly what that figure is, but it's quite low.
I've run web applications with a sustained 60+
concurrent connections without a problem.

Fine-tuning your connections ( releasing them
as soon as you're done with them ) helps a lot.

re: Do yourself a huge favour and use SQL Server / MSDE / mySql...
MSDE will outperform Access on the web, and mySql
will vastly outperform Access on the web, and SQL Server will
outperform all of them.

Something to keep in mind is that SQL Server Express is already
available at MSDN Subscriber downloads and will be released
to the general public in less than 10 days.

It will easily outperform MSDE and give mySql a run for its money
....and it's free.

For a desktop application with less than 60 concurrent users,
however, Access is a fine solution which offers many advantages
and built-in resources.


Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
Foros de ASP.NET en Espaņol : http://asp.net.do/foros/
======================================
"Mark Rae" <ma**@mark-N-O-S-P-A-M-rae.co.uk> wrote in message
news:OX**************@TK2MSFTNGP09.phx.gbl... "JonnyD" <ma*********@gmail.com> wrote in message
news:11**********************@o13g2000cwo.googlegr oups.com...
Anyone have experiance with this?


Yes, and you're not going to like the answer.

Put simply, an Access database is *totally* unsuited to what you're trying to do with
it, for several reasons:

1) Although the Jet engine is inherently multi-user, it is a desktop database engine,
not a server database engine. This means that all queries run on the client, not the
server.

2) Whenever an Access database is opened, a corresponding locking file (e.g.
Northwind.ldb) is created with the same name and in the same folder as the database.
This means that every user of the database needs to have, essentially, full control
permissions on the network folder.

3) Access databases restrict the number of concurrent connections from IIS - I can't
remember exactly what that figure is, but it's quite low.

4) If you have the Access application installed on your desktop and, inadvertently or
even intentionally, open a database as "Exclusive" (e.g. to do some maintenance or
whatever), Access will remember that setting and will always subsequently open that
database as Exclusive until you explicitly tell it not to, thereby preventing any other
user from connecting to it.
Do yourself a huge favour and use SQL Server / MSDE / mySql...

Nov 19 '05 #10
I guess it depends on how big your database is? Its only one option.....and
may be entirely unsuitable for your needs.

--
Regards

John Timney
ASP.NET MVP
Microsoft Regional Director

"JonnyD" <ma*********@gmail.com> wrote in message
news:11**********************@g47g2000cwa.googlegr oups.com...
I would like the data to be as real time as possable though, would it
be slow if i were to copy the db for every page refresh, or even
everytime a querry is run?

Nov 19 '05 #11
"Juan T. Llibre" <no***********@nowhere.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
In a anonymous-access web application there's only one user.
Yes, but the OP is talking about sharing the same Access database between
internal users over a network and external users over the web.
I've run web applications with a sustained 60+
concurrent connections without a problem.
OK - I was under the impression that there was some intentional internal
limit to the number of concurrent connections.
Fine-tuning your connections ( releasing them
as soon as you're done with them ) helps a lot.


Yes indeed - good advice, and not just for Access... :-)
Nov 19 '05 #12
re:
Yes, but the OP is talking about sharing the same Access database between internal users
over a network and external users over the web.
OK, I didn't see that.

re: OK - I was under the impression that there was some intentional internal limit to the
number of concurrent connections.
MSDE does that, but not Access.

But, there isn't really a "limit" to the number of connections in MSDE.

What happens is that, after 8 concurrent connections have been reached,
MSDE will throttle down the new connections, although none are denied.

They will all be served, with a slight delay for all connections above 8.


Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
Foros de ASP.NET en Espaņol : http://asp.net.do/foros/
======================================
"Mark Rae" <ma**@mark-N-O-S-P-A-M-rae.co.uk> wrote in message
news:uQ**************@TK2MSFTNGP15.phx.gbl... "Juan T. Llibre" <no***********@nowhere.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
In a anonymous-access web application there's only one user.


Yes, but the OP is talking about sharing the same Access database between internal users
over a network and external users over the web.
I've run web applications with a sustained 60+
concurrent connections without a problem.


OK - I was under the impression that there was some intentional internal limit to the
number of concurrent connections.
Fine-tuning your connections ( releasing them
as soon as you're done with them ) helps a lot.


Yes indeed - good advice, and not just for Access... :-)

Nov 19 '05 #13
You are of course correct - in that it "can" be shared. This was my chain of
thought:

Unless you open it in shared mode at connection time its pretty much a
single user database, as once its opened by anyone in exclusive mode its
locked for access to everyone else until that lock is cleared. .Also, if
you have any access client opening any tables for any form of schema
editing, you will by default lock it to that user alone and render the
database exclusively locked until that user releases the system - forcing
single use. This is a problem with shared Access databases, as you cant
compact or repair a shared DB file if the LDB claims its shared and you
could end up with a corrupted DB due to sharing problems and invalid record
locking. All round, Access is not the ideal choice for a shared
database.....

--
Regards

John Timney
ASP.NET MVP
Microsoft Regional Director

"Mark Rae" <ma**@mark-N-O-S-P-A-M-rae.co.uk> wrote in message
news:eF**************@TK2MSFTNGP09.phx.gbl...
"John Timney ( MVP )" <ti*****@despammed.com> wrote in message
news:uE**************@tk2msftngp13.phx.gbl...
Well your problem is that Access is a single user database


That simply isn't true...
http://office.microsoft.com/en-gb/as...408601033.aspx
and sucks somewhat for this type of scneario.


That, however, is perfectly true.

Nov 19 '05 #14
> re:
OK - I was under the impression that there was some intentional internal
limit to the number of concurrent connections.


MSDE does that, but not Access.


http://support.microsoft.com/default...23120121120120

Note Although a file-server solution can support up to 255 simultaneous
users, if the users of your solution will be frequently adding data and
updating data, it is a good idea for an Access file-server solution to
support no more than 25 to 50 users.

:)
Nov 19 '05 #15
Hi, Greg.

Don't forget that in an anonymous web environment there's only *one* user.

The caveats in :

"For each person who opens a shared database, the Jet database engine
writes an entry in the database's .ldb file. The size of each .ldb entry is 64 bytes.
The first 32 bytes contains the computer name (such as JohnDoe).
The second 32 bytes contains the security name (such as Admin)."

don't apply, since only one user is accessing the Access db.

But, the limits to Access db's are quite evident.
For web usage, MSDE, and now SSE, are far better choices.

Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
Foros de ASP.NET en Espaņol : http://asp.net.do/foros/
======================================
"Greg Burns" <greg_burns@DONT_SPAM_ME_hotmail.com> wrote in message
news:Ob*************@TK2MSFTNGP09.phx.gbl...
re:
OK - I was under the impression that there was some intentional internal limit to the
number of concurrent connections.


MSDE does that, but not Access.


http://support.microsoft.com/default...23120121120120

Note Although a file-server solution can support up to 255 simultaneous users, if the
users of your solution will be frequently adding data and updating data, it is a good
idea for an Access file-server solution to support no more than 25 to 50 users.

:)

Nov 19 '05 #16
On 28 Oct 2005 15:22:32 -0700, "JonnyD" <ma*********@gmail.com> wrote:

¤ I am working on a project to build a reporting web app from an exsiting
¤ database that is controled by a local application. The application that
¤ has control over the database creates a lock file to the database and
¤ at that point I can no longer access the database with my web app. Is
¤ there anyway around this? All I need is read only access to the
¤ database to get some report information to display on the web page.
¤
¤ The error I get on the web app when I try to access the locked db is
¤ "Could not use ''; file already in use."
¤
¤ Anyone have experiance with this?

You're probably on the right track. The .LDB file is usually the stinker in this scenario and
typically requires that any user accessing the database have *full* access to the folder where the
database is located. That would be first thing I would check.
Paul
~~~~
Microsoft MVP (Visual Basic)
Nov 19 '05 #17

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
2939
by: Frnak McKenney | last post by:
Back when computer dinosaurs roamed the earth and the precursors to today's Internet were tiny flocks of TDMs living symbiotically with the silicon giants, tracking access to data processing...
13
13312
by: Simon Bailey | last post by:
I am a newcomer to databases and am not sure which DBMS to use. I have a very simplified knowledge of databases overall. I would very much appreciate a (simplifed) message explaining the advantages...
6
1532
by: user451 | last post by:
As the most Access-savvy person in my office, I have been handed the task of proposing a nationwide expansion of a project that I have developed in Access. A brief overview: Right now, about 25...
6
3855
by: John | last post by:
Hi We have an access app (front-end+backend) running on the company network. I am trying to setup replication for laptop users who go into field and need the data synched between their laptops...
64
5140
by: John | last post by:
Hi What future does access have after the release of vs 2005/sql 2005? MS doesn't seem to have done anything major with access lately and presumably hoping that everyone migrates to vs/sql. ...
0
3271
by: bettervssremoting | last post by:
To view the full article, please visit http://www.BetterVssRemoting.com Better VSS Remote Access Tool including SourceOffSite, SourceAnyWhere and VSS Remoting This article makes a detailed...
21
10759
by: Kevin Swanson | last post by:
I'm attempting some remote registry manipulation via C#. I've written a test app to simply grab a specified key from a specified hive on a specified machine. The call to OpenSubKey is throwing...
17
2456
by: DaveG | last post by:
Hi all I am planning on writing a stock and accounts program for the family business, I understand this is likely to take close to 2 years to accomplish. The stock is likely to run into over a...
52
9914
by: Neil | last post by:
We are running an Access 2000 MDB with a SQL 7 back end. Our network guy is upgrading to Windows Server 2003 and wants to upgrade Office and SQL Server at the same time. We're moving to SQL Server...
0
1330
by: Nymus | last post by:
I would like to use an access database as a shared database on a remote website. I don't know if it is possible, but this is what i would like to do with this database: - Use it to run a database...
0
7218
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7103
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7370
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
7021
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
1
5035
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4701
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
1532
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
755
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
409
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.