Hop on the SQL Server Express
Rick Heiges did a talk on SQL Server Express (SSE). SSE is the natural successor to Microsoft SQL Server Desktop Engine 2000 (MSDE2000) and a light-weight version of SQL Server 2005. And it is free! Here's a summary of the talk. It is interleaved with some last minute information provided by two SSE team members from Microsoft.
Features of SSE
SSE supports quite a lot of features from SQL Server 2005 and more:
Some numbers (and comparing SSE to MSDE2000)
MSDE2000 had a "workload governor" limited to 10 connections, meaning only 10 connections can perform simultaneous work (which made MSDE2000 into a badly scaling database engine). You could have more connections in MSDE2000 though. This limitation has been lifted.
SSE uses SQL Native Access Client (SNAC), instead of the MDAC libraries. It runs on Windows 2000 Server, Windows Server 2003 and Windows XP.
SSE has a 4 GB RAM limited. The CPU and RAM is down to one CPU and 1 GB of RAM (from 2 CPU and GB on MSDE2000). SSE only has one task/thread scheduler so one hyperthreaded and dual core processors it will only effectively run on one thread and one core. It will run on x64 processors, but not on Itanium processors. The database file size is 4 GB, but there is no limit on the log files.
Supported tools
SSE can be used from many tools to manage it. These include Visual Studio, SqlCmd (sqlcmd.exe /e /s.\sqlexpress), SQL Express Manager (and again, this is going to be replaced). Side note: in fact SQL Express Manager can even manage SQL2005 databases.
So, where MSDE2000 was limited in such a way that it was hard to use it in a scalable, enterprise scenario, SSE does not have such limitations.