473,503 Members | 2,105 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Why upgrade to MS SQL Server (be it 2000 or 2005) from Access (say, 97)?


Probably this question has been asked hundreds of times and yet net
search has not generated satisfactory enough answer, at least, to me.
And OK, let's assume your organization has more than 200 employees,
just one measure to indicate that it's not small and data processing
needs are quite extensive (for both OLTP and OLAP).

We've heard so much about concurrency support, stability and
performance. Are there any real persuasive paper out there to talk
about it? Now, let me also put it in another perspective, say, you're
a Microsoft sql server sales guy or gal for that matter for new
accounts. What you got?

Thanks.

Dec 1 '05 #1
5 1273
NickName wrote:
Probably this question has been asked hundreds of times and yet net
search has not generated satisfactory enough answer, at least, to me.
And OK, let's assume your organization has more than 200 employees,
just one measure to indicate that it's not small and data processing
needs are quite extensive (for both OLTP and OLAP).

We've heard so much about concurrency support, stability and
performance. Are there any real persuasive paper out there to talk
about it? Now, let me also put it in another perspective, say, you're
a Microsoft sql server sales guy or gal for that matter for new
accounts. What you got?

Thanks.

One good reason is that using SQL Server is that the network load is
much less than compared to using linked tables.
I've executed the following query from the VBA-Direct window:
UPDATE table SET column = 'value'
table contained approx. 7000 records. The packet count for executing
this with SQL Server was exactly 9. When using MS Access as a backend,
the packet count was more than 65000.
Also, I believe that Access can only work with 25 connections at most,
while SQL Server can have virtually unlimited connections. Please
correct me when I'm wrong.
When using the database locally (i.e. not over a network), upgrading to
SQL Server would be extra overhead imho.

Olivié
Dec 1 '05 #2
Ol!v!é wrote:
Also, I believe that Access can only work with 25 connections at most,
while SQL Server can have virtually unlimited connections. Please
correct me when I'm wrong.


That would depend on how well/badly the Access application was written,
the topology used (monolithic MDB, split Code/tables, unbound forms,
etc). YMMV a lot.

To the OP:
SQL Server will handle more users and support larger databases, both in
the physical limits and practical limits, has better security, is much
more robust and AFAIK doesn't lose pointers to text (memo) columns like
Jet does :-)
Dec 1 '05 #3
> Also, I believe that Access can only work with 25 connections

The multi-user characterisation for Access 95 used 32 automated
workstations, which hit the database a bit harder than 32 human
users would.
UPDATE table SET column = 'value'
table contained approx. 7000 records. The packet count for
this with SQL Server was exactly 9. When using MS Access as
None of my clients would let you near their SQL Servers!

If you have your 25 (min) SQL Server users doing updates
like that, all the real users will be out to lunch while
they wait for their applications to respond!

Building applications for 25 users means not writing
queries like that.

(david)
""Ol!v!é"" <stevenlangenaken-at-@hotmail-dot-.com> wrote in message
news:11***************@seven.kulnet.kuleuven.ac.be ... NickName wrote:
Probably this question has been asked hundreds of times and yet net
search has not generated satisfactory enough answer, at least, to me.
And OK, let's assume your organization has more than 200 employees,
just one measure to indicate that it's not small and data processing
needs are quite extensive (for both OLTP and OLAP).

We've heard so much about concurrency support, stability and
performance. Are there any real persuasive paper out there to talk
about it? Now, let me also put it in another perspective, say, you're
a Microsoft sql server sales guy or gal for that matter for new
accounts. What you got?

Thanks.

One good reason is that using SQL Server is that the network load is much
less than compared to using linked tables.
I've executed the following query from the VBA-Direct window:
UPDATE table SET column = 'value'
table contained approx. 7000 records. The packet count for executing this
with SQL Server was exactly 9. When using MS Access as a backend, the
packet count was more than 65000.
Also, I believe that Access can only work with 25 connections at most,
while SQL Server can have virtually unlimited connections. Please correct
me when I'm wrong.
When using the database locally (i.e. not over a network), upgrading to
SQL Server would be extra overhead imho.

Olivié

Dec 1 '05 #4
david epsom dot com dot au wrote:
UPDATE table SET column = 'value'
table contained approx. 7000 records. The packet count for
this with SQL Server was exactly 9. When using MS Access as

None of my clients would let you near their SQL Servers!

If you have your 25 (min) SQL Server users doing updates
like that, all the real users will be out to lunch while
they wait for their applications to respond!

Building applications for 25 users means not writing
queries like that.

The query I wrote was only for the demonstration of the difference in
network load between MS Access and SQL Server, not as an example on how
to write queries.

Olivié
Dec 1 '05 #5
I appreciate all the inputs. Do any of you have some pointer to some
well-thought-out paper on the topic?

Dec 1 '05 #6

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

Similar topics

3
6259
by: Doug Baroter | last post by:
Hi, One of my clients has the following situation. They use Access DB for data update etc. some business functions while they also want to view the Access data quickly and more efficiently in...
1
1451
by: Kamyk | last post by:
Hello all! I have such question to all of you. I have some tables linked from MS SQL Server 2000. Is time of processing query based on these linked tables from MS SQL Server 2000, faster or...
3
2217
by: datapro01 | last post by:
I am a DB2 DBA that has been asked to become familiar enough with SQL Server in order to become actively involved in its installation, implementation, and to review database backup/recovery...
2
1448
by: mal hit | last post by:
I would like to know if it's possible to embed a SQL Server 2000/2005 DB within a desktop application so that the end users cannot view the DB. Also, this will prevent them from copying the...
0
1973
by: dunleav1 | last post by:
Does enabling/disabling Data Execution Prevention (DEP) have a performance impact on SQL 2000 or SQL 2005?
4
3743
by: David | last post by:
Hi all, I just asked some people to help me out and phone microsoft with the following information, kindly they refused unless we setup a support contract with them first, for pre-sales...
0
1956
by: KIKOY | last post by:
HI! I am using sql server 2000 for database and VB6 as programming language. my program is working in our LAN. my problem is when I used VPN connection for the remote offices to the main...
2
987
by: Javilen | last post by:
Hello, I am trying to right an application that will dump the information from an sql server 2000 into Access 2000 via VB.net The gist is, we have 1 table in sql 2000, it has 5 columns and 15...
4
4120
by: Feris T | last post by:
Hi, Is there any development library exist in the market for SQL Server 2000/2005 transaction log reader ? I need to use it for Capture Data Change (CDC). Preferably Java. Regards, Feris
2
2520
by: Yemata Abebe | last post by:
What is the maximum number of records SQL Server 2000, 2005 and Oracle 11g can handle
0
7204
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
7091
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
7282
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
5586
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
3171
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3162
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1516
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
741
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
391
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.