Click here to Skip to main content
15,867,594 members
Articles / Database Development / SQL Server / SQL Server 2016

Top 10 Exciting New Features in SQL Server Management Studio 2016

Rate me:
Please Sign up or sign in to vote.
4.87/5 (13 votes)
23 Aug 2016CPOL4 min read 25.4K   8   2
Introduction of new useful features in SSMS 2016
This article is an effort to list out few exciting improvements that have been made to SQL Server Management Studio 2016. I believe most of these new features can help improve the speed of our work and it is more convenient to use the SSMS.

1. Color Theme

With SSMS 2016, now you can choose your preferred color theme, a feature similar to that in Visual Studio. For now, you can choose one from 2 available color themes – Blue or Light, Blue being the default theme.

Tools - Options - Environment - General - Color theme

Image 1

2. Hide Save Query Window Prompt

In earlier versions of SSMS, you can’t ignore the save query windows prompt that comes when you want to close either an unsaved query window or the SSMS itself. While this restriction is actually meaningful to have in SSMS, with SSMS 2016, you can now customize to hide those prompts as per your preference.

Tools - Options - Query Execution - SQL Server - General - “Prompt to save unsaved T-SQL query windows on close

Image 2

3. Update from SSMS Menu

SSMS 2016 automatically checks for any updates available when it is online and a toast notification comes when there is an update available something as following screenshot-

Image 3

However, you can also check manually for updates availability.

Tools - “Check for Updates…

Image 4

You can disable automatic checking for updates by unchecking the checkbox in the popup window that appears when you click "Check for Updates..." as described above.

Image 5

4. Search Options

Confused with so many new features and steps to open the window to configure them? Don’t worry, SSMS now has the Search Options which is one of much requested feature. You can search with the feature name or a keyword.

Tools - Options

Image 6

Image 7

5. Highlight Current Line

How many times do you feel lost while modifying an existing huge query or stored procedure in SSMS? The problem occurs when your SQL statements are very long and you haven’t configured text editor to wrap words automatically and then when you use the horizontal scrollbar to scroll the content, it becomes difficult to identify which line you wanted to modify or check. Now, with SSMS 2016, an outline will follow your cursor wherever you placed it. That makes it easy to identify the line you are currently working with. The best part is, it can be configured.

Tools - Options - Text Editor - General - “Highlight current line

Image 8

6. Scroll & Zoom Execution Plan Window

There are also few improvements done on the Execution Plan window. Now you can zoom the content of this window using shortcut CTRL + Scroll. You can also scroll the content of the window by dragging the content with mouse.

Image 9

7. Retain Carriage Return and Line Feeds on Copy or Save

It may seem to you as a weird default behavior. In SSMS 2016, if you copy any result from the Result Grid and paste it in a notepad or any text editor, you will notice that the carriage return and line feeds are not in place. However, this can also be configured.

Tools - Options - Query Results - SQL Server - Results to Grid - "Retain CR/LF on copy or save"

Image 10

Example:

Executed following query by unchecking the checkbox.

SQL
SELECT 'This is a demo text
for test purpose only' AS demotext

The output while copying to Notepad was as follows:

demotext
-------------------
This is a demo text  for test purpose only

Now, I executed the same query after checking the mentioned checkbox and got result as:

demotext
------------------
This is a demo text
for test purpose only

8. Advanced Scroll Bar

If you have used Visual Studio, then probably you are already aware of such feature. With SSMS 2016, you can use "bar mode" or "map mode" for the vertical scroll bar in the query window.

  • Bar Mode: This is the default and normal vertical scroll bar which is the same as you can see in the previous versions.
  • Map Mode: This is new and source overview can be viewed on the scroll bar which can again be configured as:
    • Off: Source Overview will not be visible
    • Narrow: Overview with minimum width
    • Medium: Wider than previous
    • Wide: Widest scrollbar with overview

You can also configure to show Tooltip on hover or scroll using checkbox "Show Preview Tooltip"

Tools - Options - Text Editor - All languages - Scroll Bars - Behavior

You can also open the configuration window by right clicking on the vertical scroll bar and then clicking "Scroll Bar Options..."

Image 11

Image 12

9. Mapped Zooming in Query & Message Window

With SSMS 2016, the zooming of the Query Window content and Message Window content are now mapped while zooming. For example, if we zoom the content of the query window to 200%, then the content of the message window will automatically zoom to 200%. With previous versions of the SSMS, it was possible to zoom them individually. It seems to be not yet available for configuration. Not sure if everybody is going to accept this change.

Image 13

10. Quick Launch

Again this is something that is already available in Visual Studio. You can quickly launch your tasks through a panel at the top right of the SSMS window. It looks like a search tool but it is far more than that. You can open any tasks from available in Menu as well as Options. The task can be anything like creating new project, opening new query window, opening configuration window for any setting, etc.

Image 14

Image 15

Image 16

Conclusion

Hope these tips will help you to develop your applications faster. Please leave your comments below. I will love to hear from you. :)

History

  • 24th August, 2016: First version

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Praise5 Pin
Tadit Dash (ତଡିତ୍ କୁମାର ଦାଶ)29-Aug-16 21:30
protectorTadit Dash (ତଡିତ୍ କୁମାର ଦାଶ)29-Aug-16 21:30 
GeneralRe: 5 Pin
Suvendu Shekhar Giri30-Aug-16 8:18
professionalSuvendu Shekhar Giri30-Aug-16 8:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.