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

I had on my laptop SQL Server 2008 R2 and Visual Studio 2008 and 2010 (we're a training company - hence the need for multiple versions). I've installed SQL Server 2012, and have finally got SQL Server Data Tools to show up, so that I can create SSRS reports in Visual Studio 2010. However ...

Although I've installed Management tools - many times - on two separate instances of SQL Server 2012, I can't find them in Programs and can't run them. The only SSMS program I can find runs SSMS 2008 R2.

I realise that common advice is to install SQL Server before Visual Studio, but I really don't want to uninstall VS, as this will bring a host of other problems. I've Googled this and still can't find an answer. Any of the bright young things at StackOverflow able to help? Thanks in advance.

share|improve this question

7 Answers

up vote 51 down vote accepted

You can get SSMS Express tools from here or full SQL Server Eval tools from here. MSDN/TechNet Downloads is currently the only place to get RTM versions (non-eval) of the SSMS 2012 toolset.

share|improve this answer
4  
I've got the softwware - that's not the problem. It's installing it so that I can actually see and run SSMS! – Andy Brown May 4 '12 at 19:45
1  
Installing 2012 DEV RTM now...should be able to tell you soon. What version did you install 2012 Express/Eval/RTM? – SliverNinja May 4 '12 at 19:49
12  
SSMS 2012 is installed to C:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn\ManagementStudio\Ssms.exe – SliverNinja May 4 '12 at 21:52
1  
That really helps - many thanks! It does now load, but unfortunately now comes up with an error message saying that I need to run the command ssms.exe /resetsettings from the command prompt. I'll try variations out and be sure to add a comment back here. – Andy Brown May 5 '12 at 8:50
Tried what was suggested: the command runs OK but has no effect on the problem. Googling and investigation suggests that my SSMS installation hasn't worked, and I need to uninstall and try again - which I've done! Ah well, I'll try again and report back ... – Andy Brown May 5 '12 at 8:58
show 2 more comments

Just download SQLManagementStudio_x64_ENU.exe from Microsoft Downloads - SQL Server® 2012 Express with SP1

share|improve this answer
2  
+1 for direct link – psur Nov 10 '12 at 12:37
+ 1 for sharing a direct link to it which was great. – jeffery Nov 13 '12 at 23:34
1  
Is SQL Profiler included with this. I remember with 2008 you didn't get Profiler when you installed the express version of Management Studio. – Micky McQuade Dec 10 '12 at 22:31
1  
Yes the Express edition includes the full suite of client tools... here's a screenshot of the setup screen. – Tim Lewis Apr 22 at 14:45

I just ran into this problem. What I had to do was open back the installation for SQL Server and click Installation -> New SQL server installation or add features to existing installation. Then when we follow the instruction until we reach feature selection, just check the SQL Management tools checkbox and continue.

No idea why this software is considered a feature and hidden like this. Should be a stand alone software installation,

share|improve this answer
1  
Agree it should be more obvious, but many SQL Server installations wont need client tools - they will be managed from other servers. – Mark Jul 26 '12 at 4:02
3  
Agree on both Shawn and Mark. But sometimes you only want the management studio. – JP Hellemons Sep 12 '12 at 10:11
because microsoft realized having a bunch of disparate installers caused all kinds of install / uninstall headaches. – FlavorScape Jan 16 at 21:47

Not sure if this will help anyone else, but here's how I solved this. Uninstalled all parts of SQL Server 2012 using Control Panel in Windows, then reinstalled (choosing "All Features"). Now works! Now what was I doing a couple of days ago when I started this ...

share|improve this answer

On the Official SQL Server 2012 ISO that's for download, just navigate to \x64\Setup\ (or \x86\Setup) and you will find "sql_ssms.msi". It's only about 60 MB, and since it's an .MSI you can probably provision it to be installed automatically (say for a large lab or classroom environment).

share|improve this answer
1  
For me the sql_ssms.msi crashes with a vague error message. – CodingBarfield Nov 12 '12 at 7:45
As, @Rich in TX points out below, you have to, apparently, run it from an elevated command prompt? -- you might just right right clicking it and run as administrator -- but YMMV. – BrainSlugs83 Jan 15 at 3:28

"For me the sql_ssms.msi crashes with a vague error message. – CodingBarfield"

You have to run sql_ssms.msi from an elevated command prompt

share|improve this answer

I found it here: http://www.microsoft.com/en-us/download/details.aspx?id=29062

This did not require any TechNet rigamarole or the use of their horrible Java 7 based download manager.

share|improve this answer
Just for the record, that link goes to the download of SQL Server 1012 Express, which includes the SSMS Express version. This is not the same as the full SSMS, which may (or may not) be what the OP or anyone else needs. – Andrew Barber Feb 13 at 21:51

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.