473,387 Members | 1,569 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Architectures for multi-user access database

I currently have a multi-user access database which is put on a shared
drive L: on a Windows Servers. Entire database is one file premdb.mdb.
Users access this database from their laptops. Following problems
occur:
1. Access is way too slow in WAN environment. Server is located in New
Jersey and users are in California and Puerto Rico.
2. Database often becomes corrupt
3. When one user updates some data in the database, other users often
have
to wait for long time before they can access the database ...

I have read numerous articles on internet including Microsoft's web
site. I am looking into following architectures and will like to know
other's opinions:

1. Install Microsoft Access on Windows 2000 server and place Access
database on a local drive of the server (i.e. no shared drive for
Access). Create/assign accounts for users on the server and ask users
to logon to the server using Remote Desk Top and run Access on the
server (instead on Laptop..). I am hoping that performance will be
better because now one is only sending screens (using terminal server)
instead of sending data/forms/reports etc via shared drive L: access.
I am using there are no side effects because of remote desk
top/terminal server.
2. Split the database into front end back end, premdb_fe.mdb
premdb_be.mdb. Keep backend on shared drive L, but keep front end on a
local drive of everyone's hard disk drive. It should reduce network
traffic? Will it also reduce chances of corruption.
3. Is there anyway to keep backend on a local drive of Windows Server
and link back end tables in front end using ODBC. I did not have
success because I kept getting error that ODBC connection are not
allowed between Microsoft Access DB and Microsoft Access DB.

Are there other architectures?
Appreciate any response or pointers.
Thanks a lot,
Prem

Nov 13 '05 #1
5 3664
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

You should split the db - that should clear up the corruptions. For
each user put a copy of the front-end in a user folder. Use something
like Terminal Server or Citrix (or your idea for Remote Desktop) to
allow each user to access their folder on the server.

When linking Access tables (back-ends) to Access front-ends you do not
use ODBC connections. Access provides it's own connections - just use
the File > Get External Data > Link Tables... and select "Microsoft
Access (*.mdb; *.mda; *.mde)" from the Combo Box "Files of type:".
Follow the directions & Access will do the rest.

--
MGFoster:::mgf00 <at> earthlink <decimal-point> net
Oakland, CA (USA)

-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv

iQA/AwUBQct4Z4echKqOuFEgEQLL8QCbB0kU+vd9tNFEBJ9urSE+IZ SiStQAoOfW
GjAAeHa9M0js4fhHEg4vzkks
=uF2n
-----END PGP SIGNATURE-----
pr**********@hotmail.com wrote:
I currently have a multi-user access database which is put on a shared
drive L: on a Windows Servers. Entire database is one file premdb.mdb.
Users access this database from their laptops. Following problems
occur:
1. Access is way too slow in WAN environment. Server is located in New
Jersey and users are in California and Puerto Rico.
2. Database often becomes corrupt
3. When one user updates some data in the database, other users often
have
to wait for long time before they can access the database ...

I have read numerous articles on internet including Microsoft's web
site. I am looking into following architectures and will like to know
other's opinions:

1. Install Microsoft Access on Windows 2000 server and place Access
database on a local drive of the server (i.e. no shared drive for
Access). Create/assign accounts for users on the server and ask users
to logon to the server using Remote Desk Top and run Access on the
server (instead on Laptop..). I am hoping that performance will be
better because now one is only sending screens (using terminal server)
instead of sending data/forms/reports etc via shared drive L: access.
I am using there are no side effects because of remote desk
top/terminal server.
2. Split the database into front end back end, premdb_fe.mdb
premdb_be.mdb. Keep backend on shared drive L, but keep front end on a
local drive of everyone's hard disk drive. It should reduce network
traffic? Will it also reduce chances of corruption.
3. Is there anyway to keep backend on a local drive of Windows Server
and link back end tables in front end using ODBC. I did not have
success because I kept getting error that ODBC connection are not
allowed between Microsoft Access DB and Microsoft Access DB.

Are there other architectures?
Appreciate any response or pointers.

Nov 13 '05 #2

MGFoster wrote:
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

You should split the db - that should clear up the corruptions. For
each user put a copy of the front-end in a user folder. Use something like Terminal Server or Citrix (or your idea for Remote Desktop) to
allow each user to access their folder on the server.

When linking Access tables (back-ends) to Access front-ends you do not use ODBC connections. Access provides it's own connections - just use the File > Get External Data > Link Tables... and select "Microsoft
Access (*.mdb; *.mda; *.mde)" from the Combo Box "Files of type:".
Follow the directions & Access will do the rest.

--
MGFoster:::mgf00 <at> earthlink <decimal-point> net
Oakland, CA (USA)

-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv

iQA/AwUBQct4Z4echKqOuFEgEQLL8QCbB0kU+vd9tNFEBJ9urSE+IZ SiStQAoOfW
GjAAeHa9M0js4fhHEg4vzkks
=uF2n
-----END PGP SIGNATURE-----
pr**********@hotmail.com wrote:
I currently have a multi-user access database which is put on a shared drive L: on a Windows Servers. Entire database is one file premdb.mdb.

Users access this database from their laptops. Following problems
occur:
1. Access is way too slow in WAN environment. Server is located in New Jersey and users are in California and Puerto Rico.
2. Database often becomes corrupt
3. When one user updates some data in the database, other users often have
to wait for long time before they can access the database ...

I have read numerous articles on internet including Microsoft's web
site. I am looking into following architectures and will like to know other's opinions:

1. Install Microsoft Access on Windows 2000 server and place Access
database on a local drive of the server (i.e. no shared drive for
Access). Create/assign accounts for users on the server and ask users to logon to the server using Remote Desk Top and run Access on the
server (instead on Laptop..). I am hoping that performance will be
better because now one is only sending screens (using terminal server) instead of sending data/forms/reports etc via shared drive L: access. I am using there are no side effects because of remote desk
top/terminal server.
2. Split the database into front end back end, premdb_fe.mdb
premdb_be.mdb. Keep backend on shared drive L, but keep front end on a local drive of everyone's hard disk drive. It should reduce network
traffic? Will it also reduce chances of corruption.
3. Is there anyway to keep backend on a local drive of Windows Server and link back end tables in front end using ODBC. I did not have
success because I kept getting error that ODBC connection are not
allowed between Microsoft Access DB and Microsoft Access DB.

Are there other architectures?
Appreciate any response or pointers.


Thanks, I am assuming that there are no known problems running MS
Access in terminal server environment.

Nov 13 '05 #3
There's just no way to run Access on the user machine across the WAN and get
satisfactory performance with the data on a remote server. Terminal server
is the only satisfactory approach that I know for running the
all-Access-and-Jet multiuser across a WAN.

Otherwise, you could create an Access client for the users and employ ODBC
to access a server database such as MS SQL Server running on the server...
if there are few enough users, the free MSDE (aka Desktop SQL Server) would
suffice for the server backend.

<pr**********@hotmail.com> wrote in message
news:11********************@f14g2000cwb.googlegrou ps.com...

MGFoster wrote:
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

You should split the db - that should clear up the corruptions. For
each user put a copy of the front-end in a user folder. Use

something
like Terminal Server or Citrix (or your idea for Remote Desktop) to
allow each user to access their folder on the server.

When linking Access tables (back-ends) to Access front-ends you do

not
use ODBC connections. Access provides it's own connections - just

use
the File > Get External Data > Link Tables... and select "Microsoft
Access (*.mdb; *.mda; *.mde)" from the Combo Box "Files of type:".
Follow the directions & Access will do the rest.

--
MGFoster:::mgf00 <at> earthlink <decimal-point> net
Oakland, CA (USA)

-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv

iQA/AwUBQct4Z4echKqOuFEgEQLL8QCbB0kU+vd9tNFEBJ9urSE+IZ SiStQAoOfW
GjAAeHa9M0js4fhHEg4vzkks
=uF2n
-----END PGP SIGNATURE-----
pr**********@hotmail.com wrote:
I currently have a multi-user access database which is put on a shared drive L: on a Windows Servers. Entire database is one file premdb.mdb.

Users access this database from their laptops. Following problems
occur:
1. Access is way too slow in WAN environment. Server is located in New Jersey and users are in California and Puerto Rico.
2. Database often becomes corrupt
3. When one user updates some data in the database, other users often have
to wait for long time before they can access the database ...

I have read numerous articles on internet including Microsoft's web
site. I am looking into following architectures and will like to know other's opinions:

1. Install Microsoft Access on Windows 2000 server and place Access
database on a local drive of the server (i.e. no shared drive for
Access). Create/assign accounts for users on the server and ask users to logon to the server using Remote Desk Top and run Access on the
server (instead on Laptop..). I am hoping that performance will be
better because now one is only sending screens (using terminal server) instead of sending data/forms/reports etc via shared drive L: access. I am using there are no side effects because of remote desk
top/terminal server.
2. Split the database into front end back end, premdb_fe.mdb
premdb_be.mdb. Keep backend on shared drive L, but keep front end on a local drive of everyone's hard disk drive. It should reduce network
traffic? Will it also reduce chances of corruption.
3. Is there anyway to keep backend on a local drive of Windows Server and link back end tables in front end using ODBC. I did not have
success because I kept getting error that ODBC connection are not
allowed between Microsoft Access DB and Microsoft Access DB.

Are there other architectures?
Appreciate any response or pointers.


Thanks, I am assuming that there are no known problems running MS
Access in terminal server environment.

Nov 13 '05 #4

Larry Linson wrote:
There's just no way to run Access on the user machine across the WAN and get satisfactory performance with the data on a remote server. Terminal server is the only satisfactory approach that I know for running the
all-Access-and-Jet multiuser across a WAN.

Otherwise, you could create an Access client for the users and employ ODBC to access a server database such as MS SQL Server running on the server... if there are few enough users, the free MSDE (aka Desktop SQL Server) would suffice for the server backend.

<pr**********@hotmail.com> wrote in message
news:11********************@f14g2000cwb.googlegrou ps.com...

MGFoster wrote:
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

You should split the db - that should clear up the corruptions. For each user put a copy of the front-end in a user folder. Use

something
like Terminal Server or Citrix (or your idea for Remote Desktop) to allow each user to access their folder on the server.

When linking Access tables (back-ends) to Access front-ends you do
not
use ODBC connections. Access provides it's own connections -
just use
the File > Get External Data > Link Tables... and select
"Microsoft Access (*.mdb; *.mda; *.mde)" from the Combo Box "Files of type:". Follow the directions & Access will do the rest.

--
MGFoster:::mgf00 <at> earthlink <decimal-point> net
Oakland, CA (USA)

-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv

iQA/AwUBQct4Z4echKqOuFEgEQLL8QCbB0kU+vd9tNFEBJ9urSE+IZ SiStQAoOfW
GjAAeHa9M0js4fhHEg4vzkks
=uF2n
-----END PGP SIGNATURE-----
pr**********@hotmail.com wrote:
> I currently have a multi-user access database which is put on a

shared
> drive L: on a Windows Servers. Entire database is one file

premdb.mdb.
>
>
> Users access this database from their laptops. Following problems > occur:
> 1. Access is way too slow in WAN environment. Server is located in New
> Jersey and users are in California and Puerto Rico.
> 2. Database often becomes corrupt
> 3. When one user updates some data in the database, other users

often
> have
> to wait for long time before they can access the database ...
>
> I have read numerous articles on internet including Microsoft's
web > site. I am looking into following architectures and will like to know
> other's opinions:
>
> 1. Install Microsoft Access on Windows 2000 server and place
Access > database on a local drive of the server (i.e. no shared drive for > Access). Create/assign accounts for users on the server and ask users
> to logon to the server using Remote Desk Top and run Access on
the > server (instead on Laptop..). I am hoping that performance will be > better because now one is only sending screens (using terminal

server)
> instead of sending data/forms/reports etc via shared drive L:

access.
> I am using there are no side effects because of remote desk
> top/terminal server.
> 2. Split the database into front end back end, premdb_fe.mdb
> premdb_be.mdb. Keep backend on shared drive L, but keep front end on a
> local drive of everyone's hard disk drive. It should reduce

network > traffic? Will it also reduce chances of corruption.
> 3. Is there anyway to keep backend on a local drive of Windows

Server
> and link back end tables in front end using ODBC. I did not have > success because I kept getting error that ODBC connection are not > allowed between Microsoft Access DB and Microsoft Access DB.
>
> Are there other architectures?
> Appreciate any response or pointers.


Thanks, I am assuming that there are no known problems running MS
Access in terminal server environment.


Thanks a lot. I did not know of the free version of Desktop SQL SERVER.
I will take a look,
Prem

Nov 13 '05 #5
<pr**********@hotmail.com> wrote
Thanks a lot. I did not know of the
free version of Desktop SQL SERVER.


It comes on your Access or Office Pro install CDs, but before you get very
excited about it, know that it is deliberately limited in the number of
users it will support. When more than five of its internal "batch processes"
are in progress, it inserts delays. Some have reported adequate response
with up to 25 users on a LAN (not a WAN), but we don't know specifics of
those applications.

The beta of the Express Version of the next release of SQL Server, we hear,
does not have that same limiting mechanism, but it is only in beta test form
and may or may not be free once it is released. On the other hand, it
doesn't make sense to me that Microsoft would release a free version of SQL
Server capable of competing with the for-fee version, now or later.

Larry Linson
Microsoft Access MVP
Nov 13 '05 #6

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

Similar topics

37
by: ajikoe | last post by:
Hello, Is anyone has experiance in running python code to run multi thread parallel in multi processor. Is it possible ? Can python manage which cpu shoud do every thread? Sincerely Yours,...
4
by: Frank Jona | last post by:
Intellisense with C# and a multi-file assembly is not working. With VB.NET it is working. Is there a fix availible? We're using VisualStudio 2003 Regards Frank
12
by: * ProteanThread * | last post by:
but depends upon the clique: ...
0
by: frankenberry | last post by:
I have multi-page tiff files. I need to extract individual frames from the multi-page tiffs and save them as single-page tiffs. 95% of the time I receive multi-page tiffs containing 1 or more black...
6
by: cody | last post by:
What are multi file assemblies good for? What are the advantages of using multiple assemblies (A.DLL+B.DLL) vs. a single multi file assembly (A.DLL+A.NETMODULE)?
1
by: louis_pastorik | last post by:
Does anyone have any information about 64 bit python support for Xeon and Opteron architectures on Windows platforms? If anyone has built the python runtime on either of these platforms before I...
4
by: mimmo | last post by:
Hi! I should convert the accented letters of a string in the correspondent letters not accented. But when I compile with -Wall it give me: warning: multi-character character constant Do the...
5
by: Shane Story | last post by:
I can seem to get the dimensions of a frame in a multiframe tiff. After selecting activeframe, the Width/Height is still really much larger than the page's actual dimensions. When I split a...
1
by: VMI | last post by:
I'm searching for a webcast that discusses some of the software architectures available to develop software. I've mostly used n-tier architecture, but, the way I understand it, there are so many...
19
by: Hallvard B Furuseth | last post by:
Do anyone know of an architecture where this can break? T *ptr1, *ptr2; ... if (ptr1 == ptr2) if (CHAR_BIT*sizeof(T*) <= (width of int)) /*otherwise undefined*/ assert((int)ptr1 == (int)ptr2);...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
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
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
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
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...

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.