Questions tagged [ssms]

SQL Server Management Studio, a graphical front-end tool shipped with SQL Server for managing and querying databases. It also supports managing other bundled systems such as SSAS.

SQL Server Management Studio is the tool shipped by Microsoft for managing and querying SQL Server databases. It also provides management facilities for Integration Services, Analysis Services and Reporting Services.

Although the tool is based on the Visual Studio framework it does not plug into a Visual Studio development environment such as Visual Studio Pro or BIDS. Some key features provided by SSMS include:

  • Query facilities for SQL Server and SSAS.

  • A tree based system explorer for the supported components that allows various objects such as databases installed on the system to be inspected and managed. Management facilities are provided for SQL Server, SSAS, SSIS and SSRS.

  • Launchers for other management tooling such as the profiler.

  • In later versions a basic facility is available to group sets of files together into projects.

SSMS is descended from the older 'Query Analyser' product produced by Microsoft and is often preferred as a SQL query development tool by people working with SQL Server. Command line based query and management tools such as SQLCMD, ASCMD and RS are also available, mainly designed to integratee into scripting environments.

1256 questions
12
votes
2 answers

Where do you go to request new features in SSMS?

I'd like to ask Microsoft: To color code the pages in SSMS based on the server they are connected to Make it go ding when the query results are returned. Question: How do you ask for those features?
James
  • 2,612
  • 5
  • 26
  • 49
11
votes
1 answer

SQL Server Management Studio - Why is Dark Theme Disabled by Default?

Why is the Dark theme disabled by default? Are there some bugs with this theme or something along those lines? It seems odd to me that it is forcibly disabled on purpose. I found plenty of links that I made use of to turn on the 'Dark' Theme for…
Code Novice
  • 235
  • 2
  • 10
10
votes
1 answer

SSMS 2014 (and 2012) CTRL+TAB requires pressing enter

Sometime last week my CTRL+TAB behavior changed. I used to hit CTRL+TAB, release, then I would be in my previous document tab. Now I hit CTRL+TAB, release, and the nav window is still open requiring me to hit enter. I have tried restarting ssms…
Jay Otterbein
  • 201
  • 1
  • 3
8
votes
5 answers

Shortcuts/Snippets to select a block of code

I am using SQL Server Management Studio 2016 on Windows 10. I'm tired of using shift/ctrl+up/down/right/left keys to select the code I want to run. I'm wondering whether there are shortcuts/snippets to select a block of code that separated from…
Jason
  • 683
  • 1
  • 12
  • 26
8
votes
3 answers

quickly jump to an object in Object Explorer in SSMS

When expanding a tree with a large number of objects such as the Tables tree in SSMS Object Explorer, is there a method of quickly navigating to the table I am looking for, if I know the exact name or the first few letters of the name? I know that…
rguy
  • 83
  • 1
  • 6
8
votes
5 answers

How to change MSSQL Management Studio theme?

Different from: How to apply a theme to SQL Server Management Studio 2008? What I want is to change the theme not colour scheme of the editor. I want it to look as close as possible as Dark in 2015.
regisbsb
  • 221
  • 1
  • 2
  • 8
6
votes
2 answers

SSMS 2016 Dark Theme

Does anyone know how to change the color of the right click menu in SSMS 2016 with the dark theme enabled?
Tony
  • 91
  • 1
  • 4
6
votes
1 answer

Item not automatically selected in intellisense dropdown

I have intellisense enabled in SSMS. When i start typing, I do see the intellisense dropdown with list of options but the option that matches what i am typing is not automatically selected. I have to use down arrowkey to select the item and then hit…
CSC
  • 163
  • 1
  • 3
5
votes
1 answer

SSMS and Unicode fonts in grid results

I wrote this simple update query: update foo set test ='褠ఓ�ᵂ뱗텬㰗' where id = 1 [test] is an nvarchar(16) column. It's going to contain an encrypted value. In SSMS (10.50) I've set the font for grid results and text results to Lucida Sans Unicode. …
Tim
  • 545
  • 3
  • 13
5
votes
0 answers

Where is the reference to explain the SSMS Object Explorer icons?

(This is not the same as the two questions asking about a blue circle with white question mark). The Object Explorer in SQL Server Management Studio can show many different kinds of icons. Where on earth is the documentation to explain them? (Even…
youcantryreachingme
  • 1,635
  • 3
  • 20
  • 34
5
votes
2 answers

Where's my text highlighting in SSMS 2014?

In visual studio I find it very helpful to find where a variable is being used by highlighting it and all occurrences of that var will appear highlighted as well. Is there a way to enable this feature in Sql Server Management studio 2014 while…
RayLoveless
  • 151
  • 1
  • 5
4
votes
1 answer

Does Management Studio let me change the format of new script names?

I use SQL Server Mangagement Studio to examine the definition of objects in my database. For example, to examine the definition of the table dbo.MSreplication_options in the master database, I would right-click on the table in the Object Explorer…
Iain Samuel McLean Elder
  • 2,328
  • 4
  • 25
  • 39
4
votes
4 answers

SQL Server Management Studio (SSMS) is way too slow in its GUI

I know this question has been asked before here and here. But none of them could solve my problem. I have this environment: Windows 10, build 1903 (freshly installed) Microsoft SQL Server 2016 (SP2) (KB4052908) - 13.0.5026.0 (X64) Mar 18 2018…
Saeed Neamati
  • 1,427
  • 3
  • 18
  • 32
4
votes
3 answers

SSMS 2014 Gives an exception when opening the new query window

I have an installation of SQL Server 2014 on a server on the LAN and on my PC I have SQL Server Management Studio 2014 for few months already. Out of no where when I open SSMS I get The type initializer for 'system.windows.media.fonts' threw an…
3bdalla
  • 229
  • 1
  • 4
  • 7
4
votes
1 answer

Prevent SSMS changing tab to space when copying text from Result Tab

SSMS 2016 changing tabs to spaces when copying from Result Tab (does not matter ctrl+c or drag&drop). For example if execute this code SELECT 'a' + CHAR(9) + 'b' then copy text from result tab and paste in any editor it will be space instead tab…
Andrey
  • 143
  • 5
1
2 3 4 5