Where is SQL Server Management Studio 2012?

前端 未结 17 1763
予麋鹿
予麋鹿 2020-12-12 11:31

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 c

相关标签:
17条回答
  • 2020-12-12 11:55

    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.

    0 讨论(0)
  • 2020-12-12 11:55

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

    0 讨论(0)
  • 2020-12-12 11:55

    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.

    0 讨论(0)
  • 2020-12-12 11:55

    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

    0 讨论(0)
  • 2020-12-12 11:56

    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.

    0 讨论(0)
  • 2020-12-12 11:57

    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
    
    0 讨论(0)
提交回复
热议问题