CTRL + R does not hide query result window in SSMS

I just upgraded from SSMS from 2005 to 2012. Previously, I could press CTRL + R , and the query result windows disappeared.

After I upgraded to SSMS, I fulfilled the request and out of habit hit CTRL + R. Nothing has happened. At the bottom of SSMS, I noticed that the message "(Ctrl + R). Waiting for the second key of the chord ..."

After you found out the details of this keyboard shortcut in the MSDN documentation , I found that CTRL + R should have hidden the window that appeared, as I suspected. However, my SSMS does not behave as documented.

Is there a way to restore this key combination to hide the query result window?

+62
ssms ssms-2012
Jun 12 '13 at 14:54
source share
8 answers
  • Open the Tools menu, select Options ...
  • In a node environment, click Keyboard node
  • Click Reset
  • Click Yes in the dialog box that appears.

This should solve your problem. If not, add a comment on this topic with detailed information about your problem.

+122
Jun 13 '13 at 4:11
source share

It is also missing in SSMS 2016, assign it manually as shown below. Assign shortcut to show / hide Result Pane

+9
Mar 08 '16 at 7:21
source share

In my case, in the "Keyboard Settings" section, I searched for Window.ResultsPane . My default keyboard shortcut was Ctrl + R , and doing Ctrl + R didn't work for me. I set it to Ctrl + R , Ctrl + R , and now it works fine for me. Performing a reset is not a good idea, as it will delete all user preferences set by the user.

+2
Jul 29 '17 at 5:30
source share

Right click Toolbar → Configure → Commands → Reset All → (I recommend restarting SSMS) This worked for me in ms sql 2012

+1
Jan 08 '15 at 12:33
source share

If the previous answers do not help,

Use Ctrl + ALT + Shift + R , it is already installed in SSMS 2012.

This worked for me ..

+1
Apr 15 '16 at 4:09
source share

I tested it on my SSMS2012 and it works, but I have a clean install. The reason may be an update since 2005. You can try changing the shortcut / toolbar settings to

Right-click Toolbar → Configure → Commands → Reset All → (I recommend restarting SSMS)

If this does not help, try to assign the command "Window.ShowResultsPane" to the Ctrl + R command. I am developing an add-on for SSMS - SSMSBoost , it has many good features, and one of the smallest - resets all registered commands using their shortcuts. So, on my machine, I found that Ctrl + R is registered in the following contexts for the same command:

 SQL Query Editor::Ctrl+R Window.ShowResultsPane MDX Query Editor::Ctrl+R Window.ShowResultsPane DMX Query Editor::Ctrl+R Window.ShowResultsPane XMLA Query Editor::Ctrl+R Window.ShowResultsPane 

SSMSBoost will also allow you to reassign a shortcut to these values, or you can use the SSMS2012 native keyboard shortcut editor.

0
Jun 13 '13 at 0:44
source share

In Microsoft SQL Server Management Studio v18.2 (aka. SSMS 18) you can try resetting the keyboard mapping scheme in the Options -> Environment -> Keyboard -> Keyboard window by clicking the Reset button at the top, selecting (Default) in the list of options.

Prior to the reset, he had only one option, which handles Ctrl + R pressing only in the DMX Query Editor :

options_1

After the reset, more options were shown, including SQL Query Editor :

options_2

After that, the keyboard shortcut works (Windows 10 1809 x64).

0
Sep 04 '19 at 11:07 on
source share

Go to Tools> Options> Environment> Keyboard / General.

enter image description here

0
Sep 20 '19 at 6:51
source share



All Articles