up vote 7 down vote favorite
1
share [g+] share [fb]

As a long time Toad for Oracle user, I have gotten used to hitting Ctrl+Enter and having just the statement under the cursor be executed.

In SQL Server Management Studio, hitting F5 runs the entire script. To run just the current statement, I have to manually highlight the statement I want, and then hit F5.

That is really annoying to me. Does anyone know of a tool with a keyboard shortcut to run just the current statement on a SQL Server? I would change tools just for this one feature.

Note: Oddly enough, even the free Toad for SQL Server does not let you run just the statement under the cursor.

link|improve this question

feedback

10 Answers

up vote 3 down vote accepted

Ok, so what I'm getting from all these answers is "No, that is not possible."

Edit:

Here is how I was able to do this:

1 - Download SQL Developer

2 - Download the jTDS driver

3 - Follow these instructions to add that driver to SQL Developer

4 - Connect to SQL Server using SQL Developer (cool!)

5 - Run it and life is good

link|improve this answer
feedback

I don't think this is possible to do using just the management studio. BUT you can use keyboard shortcut software (e.g. http://www.autohotkey.com/) to have a special sequence recorded and assigned to a hotkey. In your case you need:

<home><shift-end><F5>

This will select the current line and execute it.

link|improve this answer
This won't select the entire current (multiline) block however. – tbone May 16 '11 at 17:48
feedback

Note: Oddly enough, even the free Toad for SQL Server does not let you run just the statement under the cursor.

It is really annoying that TOAD does not hold to what it promises:

From TOAD help: [F9 to execute] a portion of a statement, which can contain one or more statements. You can select the portion of the statement by placing the cursor within or adjacent to the statement, or by selecting the statement. Note: Toad considers "adjacent" all statements (including comments) separated from the cursor or from each other by fewer than two blank lines. If an error occurs during statement execution, an error message displays, allowing you to either ignore the error and continue or to abort execution.

I tried it million times but it simply executes the whole script. I wanted to search for it in the user support group (toadss(at)yahoogroups.com) but yahoo has the stupidest search facility ever! It can't even find the keyword "toad" in the toad mail group, DOH!

I think TOAD is the best querying tool ever, but the lack of this feature really annoys me too.

UPDATE: SOLUTION FOUND! I asked this issue in toadss mail group and got the answer. Unlike Oracle, you have to separate statements in SQL Server with the keyword GO after each statement. Only if you do that the F9 button works as expected, executing the current statement.

link|improve this answer
+1 for the update bit – Matt Felzani Dec 30 '11 at 18:49
feedback

Somebody suggested this features on Devart dbForge SQL Complete (addon for Management Studio) , and it's still in the development stage. Let's hope that it's finished and doesn't get abandoned halfway through development.

link|improve this answer
feedback

I use a workaround: I comment queries I'm not using. You can use CTRL-K, CTRL-C to comment the SQL you've highlighted. Use CTRL-K, CTRL-U to uncomment. That way, you can comment all other queries, and execute the one you're interested in with F5.

link|improve this answer
This is a total pain in the butt. Why should a SQL Editor make me comment out everything I don't want? Can I not just positively state "run this one command" without grabbing the mouse or pushing "Shift+Up" 35 times? – JosephStyons Aug 13 '09 at 14:38
1  
Just to clarify, thanks for the answer; I appreciate it. I'm really just griping at the SQL Server Mgmt Studio interface. – JosephStyons Aug 13 '09 at 14:39
1  
If you find a better way, be sure to post it here :) – Andomar Aug 13 '09 at 14:54
feedback

Hit Ctrl-E while text is highlighted.

link|improve this answer
3  
Ok, but I still have to manually highlight what I want. My real goal is to be able to type a statement and then hit some key that will execute just what is under the cursor. – JosephStyons Aug 13 '09 at 14:35
3  
for me, F5 is easier to hit while the text is highlighted then "CTRL-E". – KM. Aug 13 '09 at 14:55
feedback

SQL Complete Express edition has this built in. But you don't get it without the custom intellisense.

(I got this from Salamander2007's post)

link|improve this answer
feedback

If it's the having to move your hand to the mouse part that bothers you, you can hold the Ctrl down while hitting an up or down arrow key to select a line at once.

link|improve this answer
1  
You mean Shift, yes? And that is tedious for larger statements. Thanks for the idea though. – JosephStyons Aug 13 '09 at 14:37
feedback

you could always use the command line tools sqlcmd and osql. I did a lot of sybase all at the unix command line using a wrapper function that passed my command string into the equivalent (which i think was isql?). I used vi to, so maybe I was just crazy then ;-)

link|improve this answer
Actually that won't help. SQLCMD will not send the command to SQL Server until the batch is ended. (Normally indicated with GO.) – Shannon Severance Aug 13 '09 at 16:51
feedback

In Toad for SQL Server the following default hot-keys can be used for execution:

  • F5: Execute all SQL statements in editor
  • F9: Execute SQL statement at current cursor position
  • Shift-F9: Execute all SQL statements from cursor, including the current at cursor position

However, like 'ercan' wrote, you need to seperate/follow each statement with 'GO'.

SELECT TOP 5 * FROM accounts
GO

SELECT TOP 5 * FROM users
GO

SELECT TOP 5 * FROM contracts
GO
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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