MSDE is SQL Server 2000, only a "personal" version. As it is SQL Server, it
has the benefits of being an actual database server, rather than an engine
attached to a file. As it is a server, it will take more memory, but it will
serve up pages much faster, even with more data.
Realistically, I would never run an Access database more than around 25MB.
That may be huge for you right now. I also would be very careful about
access to the Access database, as it is quite easy to lock the database and
have all users suffer. With MSDE, being SQL Server, it is harder (damn near
impossible unless you are trying) to lock up the database completely.
The 5 simultaneous connections generally equate to hundreds of Internet
users, unless you are dumping huge amounts of data to a page (which is
generally frowned apon). The reason is data access, if done correctly, takes
a fraction of a second.
Another benefit of MSDE is the ability to add stored procedures, which will
add to security. As MSDE is more secure, by default, stored procs (aka
sprocs) are just one additional security benefit.
The hardest part is setting up MSDE for mixed mode, if you want to get away
from integrated security (more secure, but a bit harder to grasp the
concept). There are files on the support site for setting up a mixed mode
database, as well as plenty of info on the web for using iSQL or oSQL to set
up mixed mode after the fact.
If you can get SQL Server, you can use the client tools to manage the
database. If not, you are stuck with iSQL/oSQL or you can go out to source
repositories, like SourceForge.net and find a database management tool.
The extra benefit of MSDE is the ability to move up to full-fledged SQL
Server if your needs grow.
--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
**********************************************************************
Think Outside the Box!
**********************************************************************
Thanks Gregory.
It is so difficult to get actual figures on this topic.
So, although the MSDE permits less (simultaneous) connections then
Access, it performs better and allows larger amounts of data?
What would the crossover point (Access -> MSDE) be with respect to data?
I have insert/updates of 5Kb and occasional reads up to 25Kb. (Assuming
max 5 simultaneous connections?)
Norman