Editing SQLCMD Scripts with Query Editor

With Microsoft SQL Server Query Editor you can write and edit queries as SQLCMD scripts. SQLCMD scripts in the Query Editor can use the same features that all Transact-SQL scripts use. These features include the following:

  • Color Coding
  • Executing Scripts
  • Source Control
  • Parsing Scripts
  • Showplan

Enable SQLCMD Scripting in Query Editor

To use the SQL Server query editor to write or edit SQLCMD scripts, you must enable the scripting mode. By default, scripting mode is not enabled in the Query Editor. You can enable scripting mode by clicking the SQLCMD Mode icon in the toolbar or by selecting SQLCMD Mode from the Query menu. These methods will turn SQLCMD scripting on for the current window.

To switch a Query Editor window to SQLCMD mode

  1. In Object Explorer, right-click the server, and then click New Query, to open a new Query Editor window.

  2. On the Query menu, click SQLCMD Mode.

    The Query Editor executes sqlcmd statements in the context of the Query Editor.

  3. On the SQL Editor toolbar, in the Available Databases list, select AdventureWorks.

  4. In the Query Editor window, type the following two Transact-SQL statements and the !!DIR sqlcmd statement:

    SELECT DISTINCT Type FROM Sales.SpecialOffer;
    GO
    !!DIR
    GO
    SELECT ProductCategoryID, Name FROM Production.ProductCategory;
    GO
    
  5. Press F5 to execute the whole section of mixed Transact-SQL and MS-DOS statements.

    Notice the two SQL result panes from the first and third statements.

  6. In the Results pane, click the Messages tab to see the messages from all three statements:

    • (6 row(s) affected)
    • <The directory information>
    • (4 row(s) affected)

Important

When executed from the command line, the sqlcmd utility permits full interaction with the operating system. When you use the Query Editor in SQLCMD Mode, you must be careful not to execute interactive statements. The Query Editor cannot respond to operating system prompts.

For more information about how to run SQLCMD, see sqlcmd Utility, or take the SQLCMD tutorial.

Enable SQLCMD Scripting by Default

To turn SQLCMD scripting on by default, on the Tools menu select Options, expand Query Execution, and SQL Server, click the General page, and then check the By default open new queries in SQLCMD Mode box.

Writing and Editing SQLCMD Scripts

After enabling scripting mode you may write SQLCMD commands and Transact-SQL statements. The following rules apply:

  • SQLCMD commands must be the first statement on a line.
  • Only one SQLCMD command is permitted on each line.
  • SQLCMD commands can be preceded by comments or white space.
  • SQLCMD commands within comment characters are not executed.
  • Single line comment characters are two hyphens (--) and must appear at the beginning of a line.
  • Operating system commands must be preceded by two exclamation points (!!). The double-exclamation points command causes the statement that follows the exclamation points to be executed using the cmd.exe command processor. The text after !! is passed in as a parameter to cmd.exe, so the final command line will execute as: "%SystemRoot%\system32\cmd.exe /c <text after !!>".
  • To make a clear distinction between SQLCMD commands and Transact-SQL, all SQLCMD commands, need to be prefixed with a colon (:).
  • The GO command may be used without preface, or preceded by !!:
  • Query Editor supports environment variables and variables that are defined as part of a SQLCMD script, but does not support built-in SQLCMD or osql variables.

Warning

SQL Server Management Studio uses Microsoft .NET SqlClient for execution in regular and SQLCMD mode. When run from the command line, SQLCMD uses the OLE DB provider. Because different default options may apply, it is possible to get different behavior while executing the same query in SQL Server Management Studio SQLCMD Mode, and in the SQLCMD utility.

Supported SQLCMD Syntax

Query editor supports the following SQLCMD script keywords:

[!!:]GO[count]

!! <command>

:exit(statement)

:Quit

:r <filename>

:setvar <var> <value>

:connect server[\instance] [-l login_timeout] [-U user [-P password]]

:on error [ignore|exit]

:error <filename>|stderr|stdout

:out <filename>|stderr|stdout

Note

For both :error and :out, stderr and stdout send output to the messages tab.

SQLCMD commands not listed above are not supported in Query Editor. When a script containing SQLCMD keywords that are not supported is executed, the Query Editor will send an "Ignoring command <ignored command>" message to the destination for each unsupported keyword. The script will execute successfully, but the unsupported commands will be ignored.

Warning

Because you are not starting SQLCMD from the command line, there are some limitations when running Query Editor in SQLCMD Mode. You cannot pass in command-line parameters such as variables, and, because the Query Editor does not have the ability to respond to operating system prompts, you must be careful not to execute interactive statements.

Color Coding in SQLCMD Scripts

With SQLCMD scripting enabled, scripts will be color coded. The color coding for Transact-SQL keywords will remain the same. SQLCMD commands are presented with a shaded background.

Example

The following example uses a sqlcmd statement to create an output file called testoutput.txt, executes two Transact-SQL SELECT statements along with one operating system command (to print out the current directory). The resultant file contains the message output from the DIR statement, followed by the results output from the Transact-SQL statements.

:out C:\testoutput.txt
SELECT @@VERSION As 'Server Version'
!!DIR
!!:GO
SELECT @@SERVERNAME AS 'Server Name'
GO

See Also

Other Resources

sqlcmd Utility
SQL Server Management Studio Tutorial

Help and Information

Getting SQL Server 2005 Assistance

Change History

Release History

17 July 2006

New content:
  • Added the procedure for switching a Query Editor window to SQLCMD mode.

5 December 2005

Changed content:
  • Corrected the syntax regarding GO.
  • Added the example.
  • Merged content of SQLCMD mode topic