switching from Access to SQL

Asked By Jim Tanner
22-Mar-05 04:41 PM
Earn up to 0 extra points for answering this tough question.
hey i have an ASP app that has been functional for about 2 years now...... due to overwhelming traffic to the site (50,000 hits / day), we've noticed that our DB connection has been flaking out sometimes... (errors about file in use / unspecified errors when trying to cnonect) so, we thought maybe switching the DB from Access to SQL Server may clear up this problem. is SQL Server more tolerant of multiple concurrant connections? obviously, about 95% of the SQL syntax will be the same...... do you forsee any problems switchin from access to sql?

  Access was never designed

Asked By Peter Bromberg
22-Mar-05 04:58 PM
to handle a large number of concurrent connections. It is a file-based database. Sql Server is a service, it is a broker-based database. Sql Server is designed to handle a large number of concurrent jobs efficiently. You should not have any problems. You may have some work ahead writing stored procedures from your Access queries (the syntax can be somewhat different), but it will be good practice.

  Datatype Conversion

Asked By Eddie Molieri
22-Mar-05 05:05 PM
You should be aware of some datatype conversions. Not too much of a problem though.
Create New Account