Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Am I able to develop software for free on MS SqlServer 2005/2008 Express edition databases?

share|improve this question

4 Answers

up vote 10 down vote accepted

Yes, You can.

But Express version have few limitations

  1. SQL Server use only one CPU at a time
  2. Maximum memory is 1GB
  3. Database size limit is 4GB

And you can redistribute SQL Server, but you must register for that at Microsoft.

UPDATE - SQL Server 2008 R2

Database size limit is 10GB

share|improve this answer

Yes, here is a relevant faq.

You are free to redistribute your applications commercially...

share|improve this answer

Yes, SQL Server Express is free to develop on, free to use, free to ship to your customers - FREE all around! :-)

In addition to MicTech's list of limitations, SQL Server Express is (at this time) 32-bit only.

As for the 4 GB limitation for the database, this is per database, so you can easily have several databases in SQL Server Express on the same machine - each up to 4 GB in size. And in SQL Server Express 2008, the data stored in the FILESTREAM filegroup (BLOBs stored on disk) is not considered for this limit.

Marc

share|improve this answer

Wrong Answer: As far as I know, you are free to develop in any Microsoft Express Edition as long as you do not redistribute the code commercially.

EDIT: I swear I read a license a while ago which said you couldn't. They must have changed it on me, either that or I'm thinking of the license for my student edition. Sorry about that.

Another Edit: Just clarifying, my original answer was completely wrong, I got my MS licenses confused. As far as I know from reading the licenses last night, you can develop to your hearts content with Microsoft Express Edition software.

share|improve this answer
2  
@indyK1ng, you have a source for "as long as you do not redistribute the code commercially" info? – Eugene Yokota Jun 19 '09 at 5:24
2  
The FAQ explicitly says you are free to develop commercial apps. – John Weldon Jun 19 '09 at 5:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.