Where is SQL Server Management Studio 2012?

SsmsSql Server-2012

Ssms Problem Overview


I had SQL Server 2008 R2 and Visual Studio 2008 and 2010 on my laptop. 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.

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 Visual Studio, as this will bring a host of other problems.

How can I fix this problem?

Ssms Solutions


Solution 1 - Ssms

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

Solution 2 - Ssms

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.

Note the first link now(dec 2017) points to 'Microsoft® SQL Server® 2012 Service Pack 2 (SP2) Express'. ssms 2014 and 2017 are still available.

Solution 3 - Ssms

I just ran into this problem. I had to 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.

I have no idea why this software is considered a feature and hidden like this. It should be a stand-alone software installation.

Solution 4 - Ssms

I've found that the command line is my friend in these situations.

I installed the SQL Server 2012 Enterprise Management Tools, including Management Studio, off the DVD (mounted ISO actually), without installing anything else using this command:

e:\setup.exe /Q /IACCEPTSQLSERVERLICENSETERMS /ACTION=install /FEATURES=Tools

Run the command prompt with elevated privileges. And be patient, as it has to unpack the installation files. Don't try to install the MSI files directly, as you lose the dependency checking packaged with the main installer.

Again, this is to install the full version off the Enterprise or Developer media, if you have it, and do not wish to settle for the free Express edition.

Solution 5 - Ssms

Full or"Complete Management Studio" as opposed to "Express".

I was very confused at a perceived lack of Management Studio on a newly provisioned SQL Server 2012 SP1 standard and enterprise edition on Azure running on Windows Server 2012.

Normally it would be found from the Start Button Shortcuts or at least in C:\Program Files somewhere.

Eventually, I located C:\SQLServer_11.0_Full, the image install path - executed and confirmed Management Studio was in fact installed by default even although it could not been seen via Add Remove Programs.

In short, if you provision an SQL Server 2012 VM on Windows Server 2012 on Azure simply run PowerShell and then enter ssms.exe to access Management Studio.

C:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn\ManagementStudio\ssms.exe

Solution 6 - Ssms

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).

Solution 7 - Ssms

Late answer but could be of use to other readers

Although SQL Server Management Studio installation is user friendly (more or less) people still seem to bump into different issues. There are lots of tutorials and instructions online, and I personally followed the ones found in this article: http://www.sqlshack.com/sql-server-management-studio-step-step-installation-guide/

It explains installing a standalone SSMS, but you can also install SSMS along with SQL Server – just make sure that you have selected Management Tools in the Feature selection screen.

I also recommend reading a step-by-step tutorial on installing SSMS 2008 Express after Visual Studio 2010 which can be found here: http://blogs.msdn.com/b/bethmassi/archive/2011/02/18/step-by-step-installing-sql-server-management-studio-2008-express-after-visual-studio-2010.aspx

It can help if you’ve just installed Visual Studio 2010 but also want to install SQL Server Management Studio.

Solution 8 - Ssms

After going back into the installer & checking off "Management Tools", ssms.exe was available under "C:\Program Files\Microsoft SQL Server\110\Tools\Binn\ManagementStudio" (thanks to everyone for pointing out where to find it).

sql server setup

Solution 9 - Ssms

Solution 10 - Ssms

I uninstalled all parts of SQL Server 2012 using Control Panel in Windows and then reinstalled (choosing "All Features"). Now it works!

Solution 11 - Ssms

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.

Solution 12 - Ssms

For separate modules (x86 and x64), if you want a customized installation without downloading loads of crap, see Servers Microsoft® SQL Server® 2012 Express.

Solution 13 - Ssms

I downloaded it from here (named 'Microsoft SQL Server Data Tools'). In this version you will get a Visual Studio 2012 installation with the functionality to manage the SQL Server 2012 server.

Solution 14 - Ssms

Select SQL Management Studio from the dropdown in Download SQL Server 2012 Express.

Solution 15 - Ssms

Install SQLEXPRADV_x64_ENU for x64 bit version from here and choose to install all components. This installs SQL Server Management Studio. You can also install Reporting Services with this installation.

/Express with Advanced Services (contains the database engine, Express Tools, Reporting Services, and Full Text Search)/

Download Link: http://www.microsoft.com/en-us/download/details.aspx?id=29062

Solution 16 - Ssms

I found what seems to be the latest 2014 and 2012 SQL Server Management Studio releases here Previous SQL Server Management Studio Releases

Solution 17 - Ssms

Run PowerShell and type:

gci -Path "C:\Program Files*\Microsoft SQL Server" -Recurse -Include "Ssms.exe" | Select -ExpandProperty FullName

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionAndy BrownView Question on Stackoverflow
Solution 1 - SsmsMichal MinichView Answer on Stackoverflow
Solution 2 - SsmsSliverNinja - MSFTView Answer on Stackoverflow
Solution 3 - SsmsShawn McleanView Answer on Stackoverflow
Solution 4 - SsmsAmir SoofiView Answer on Stackoverflow
Solution 5 - Ssmsscott_lotusView Answer on Stackoverflow
Solution 6 - SsmsBrainSlugs83View Answer on Stackoverflow
Solution 7 - SsmsTodorSView Answer on Stackoverflow
Solution 8 - SsmsJeffrey KnightView Answer on Stackoverflow
Solution 9 - SsmsTHE JOATMONView Answer on Stackoverflow
Solution 10 - SsmsAndy BrownView Answer on Stackoverflow
Solution 11 - SsmsMordachaiView Answer on Stackoverflow
Solution 12 - SsmsNaturalBornCamperView Answer on Stackoverflow
Solution 13 - SsmsMohaView Answer on Stackoverflow
Solution 14 - SsmsCesar DuranView Answer on Stackoverflow
Solution 15 - Ssmsuser2063329View Answer on Stackoverflow
Solution 16 - SsmsjamesView Answer on Stackoverflow
Solution 17 - SsmsemekmView Answer on Stackoverflow