rczuba said:
>>1) Would switching to SQL Server cause it to be faster (not considering any hardware considerations)?
>>
>>2) Would switching to SQL Server cause a lot of rework on the Front End databases w/ respect to the code?
>>Or would it be as simple as linking the front end to the new tables in SQL Server?
The weaselly answer is, "it depends". If you make the queries pass-throughs, and if you offload as much as
you can onto the SQL Server by means of pass-through queries and stored procedures, then you may get
better performance.
OTOH, if all you do is link the tables, and leave the queries as is, you may not see much if any performance gain.
Before you make that leap, are you certain that you have the right indexes in place, and that your design is
efficient?