Reputation: 1527
I am using SQL Server Express edition for my application (Visual Studio 2010 Ultimate, C#). I found that SQL Management Studio does not support Express edition. I googled the query but didn't find a satisfactory solution to my problem. I've downloaded 'LINQPad' but couldn't create a database. Maybe its not a free software.
Now I want to create database and tables, so which (freeware) utility can be used to solve my problem?
Upvotes: 0
Views: 7164
Reputation: 280252
I assume you mean that SQL Server Express does not come with Management Studio, not that Management Studio doesn't support SQL Server Express. You can download the Express version of Management Studio here:
http://www.microsoft.com/download/en/details.aspx?id=22985
If you want the features that aren't included in this version of Management Studio (for example, SQL Server Agent and other features you might want to manage against non-Express editions of SQL Server), you can buy the developer edition for ~$49 from your favorite software reseller. Or you may be licensed to install the version from the media if you already have a full edition installed in your environment.
To install Management Studio Express only (not SQL Server Express) from the executable above:
After you've done this, you should apply SQL Server 2008 R2 Service Pack 1.
Upvotes: 2