Max Size Before Going SQL Server?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

In practice, what is the cutover point where we would want to go to SQL
Server? I have a user with two Access databases, one is 850MB and one is
1.02GB in size, after compaction. Both are on drives mapped to a Win2K
server. Her queries take hours to run. There are a couple of million rows
in her favorite tables. Should she move this app to SQL Server? The
application does lots of summing of data over time, not individual lookups.
 
Hi Dave,

It sounds as if the queries are having to pull a lot of data across the
network. In that case, you should see a big increase in speed just by
copying the mdb files to a local drive and working with them there.

If that's not satisfactory, it sounds like time for SQL Server, taking
care to get as much of the processing as possible done on the server.
 
be sure you are compacting your database regularly. This will cut the size
and speed up processes
 
Back
Top