vote up 0 vote down star

Background: I'm using SQL Server Management Studio 2008 and I have a query window open that contains multiple queries.

Is there a keyboard shortcut that will allow me to execute a single query without highlighting the query I would like to run first? Some other SQL tools have shorcuts that run the query that is under the cursor, which keeps the hands on the keyboard, and away from the mouse.

Thanks everyone.

flag

5 Answers

vote up 2 vote down check

I did some searching and was unable to find any keyboard shortcuts for executing individual lines in SSMS. There is a reference online though.

http://msdn.microsoft.com/en-us/library/ms174205.aspx

Personally I just highlight the row in question (shift-end or shift-down, etc.) and hit F5.

link|flag
Ah well, it will have to do. Thanks for take the time mmayo and everyone else! – Rydell Aug 27 at 22:01
vote up 0 vote down

I don't think Management Studio allows this, because then you would not be able to run multiple queries at once if the cursor was on any one of them, which could get annoying.

link|flag
What some other editors do is to have two shorcut keys. One to Run everything in the window, and another to run the "current" query as defined by the cursor location. – Rydell Aug 27 at 22:00
vote up 1 vote down

The usual Shift+Arrow or Shift+PgUp/PgDown that apply to most or all Windows apps...

Then I use CTRL-E to execute

link|flag
1  
To clarify this a bit, you can use shift+uparrow, shift+downarrow to highlight the query you want, then Ctrl+E to execute it. No mouse involved at all. – Crappy Coding Guy Aug 27 at 21:18
vote up 1 vote down

Highlight the query you want to run, then F5.

link|flag
vote up 1 vote down

I just mark the line I'm on (shift-down or shift-end), and then click ALT-X.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.