tags:

views:

202

answers:

2

Can I use free SQLServer Express in my commercial windows project? Are there any license issues? How many nodes it supports in multiuser environment ?

+3  A: 

Quick answer is Yes. I have heard of MS themselves say it is OK. See this MSDN forums thread.

Oded
+3  A: 

SQL Server Express is distributed for free and can be used reliably in any small business application.

The Wikipedia article is quite good at highlighting the key drawbacks of using an Express edition compared to a commercial SQL Server instance. Most notable perhaps is the lack of a SQL Server Agent process, which is usually used for job scheduling.

Programming Hero