Connecting to SQL server

G

Guest

Connecting Access to SQL tables is simple but is it wise? With say 40/50
users using an Access runtime FE should a prudent database developer be
connecting directly to tables. What should be the strategy in multi-user
environment data entry and modification??

There must be some documentation around on this subject comments and links
will be thankfully recieved.

john bell
 
R

Rick Brandt

johnb said:
Connecting Access to SQL tables is simple but is it wise? With say
40/50 users using an Access runtime FE should a prudent database
developer be connecting directly to tables. What should be the
strategy in multi-user environment data entry and modification??

There must be some documentation around on this subject comments and
links will be thankfully recieved.

john bell

As in any good client server database application you want to concentrate on
pulling the least amount of data at a time. Connecting directly to tables in
not an issue as long as you do so in a manner that will not drag tons of records
over the LAN unnecessarily.

An Access front end to a SQL Server back end with 40/50 users is barely
scratching the surface. I have a few hundred users connecting to half a dozen
databases on three or four servers with no problems.
 
G

Guest

Thank you Rick for your comments
john bell

Rick Brandt said:
As in any good client server database application you want to concentrate on
pulling the least amount of data at a time. Connecting directly to tables in
not an issue as long as you do so in a manner that will not drag tons of records
over the LAN unnecessarily.

An Access front end to a SQL Server back end with 40/50 users is barely
scratching the surface. I have a few hundred users connecting to half a dozen
databases on three or four servers with no problems.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top