Andras

Software Architect - Red Gate Software

The GO command can have a parameter?

Published Monday, September 24, 2007 1:57 PM

I have mixed feelings about the GO command. It is not a T-SQL statement, it is just something that Management Studio and the other SQL Server tools understand as a batch separator command. Indeed, you can change it to whatever you wish in Management Studio under Tools->Options->Query Execution->SQL Server->General->Batch separator.
So you can write queries like

SELECT * FROM sys.objects
foo
SELECT * FROM sysobjects
foo

Of course I'm still struggling to find a reason why someone would change the GO command.

One thing I've found out recently is its parameter. SQL Server Management Studio seems to accept an integer after the GO command, and this will start an execution loop. For example if you write

PRINT 'Hello word'
GO 5

The result will be:

Beginning execution loop
Hello word
Hello word
Hello word
Hello word
Hello word
Batch execution completed 5 times.


This is perfect for lazy moments when I want to populate a test table with some default values like:

CREATE TABLE foo
    ( a INT PRIMARY KEY IDENTITY
    , b INT DEFAULT 1
    )
GO

I usually write something like:
INSERT TOP (10) INTO foo (b) SELECT 1 FROM sys.objects

but with the parameter to the GO command the above can be achieved with even less typing:

INSERT INTO foo DEFAULT VALUES
GO 10

The above will also insert 10 rows :)
Do let me know if you find a more interesting use for this parameter.

    Andras
by András

Comments

 

Tech Talk with Brett Maytom said:

An old dog is never to old to learn new tricks, well that what I was thinking is after I read Andras
September 26, 2007 2:02 PM
 

GSquared said:

Wow.  Never knew that.  Never would have thought to try it.  I can think of several uses.
October 1, 2007 1:03 PM
You need to sign in to comment on this blog

About András

András Belokosztolszki is the architect of SQL Compare versions 4, 5, 6 and 7, SQL Log Rescue and SQL Refactor. He is focused on database internals, database synchronization and database schema evolution.

















<September 2007>
SuMoTuWeThFrSa
2627282930311
2345678
9101112131415
16171819202122
23242526272829
30123456
A SysAdmin's Guide to Change Management
 In the first in a series of monthly articles, ‘Confessions of a Sys Admin’, Matt describes the issues... Read more...

Exchange: Recovery Storage Groups
 It can happen at any time: You get a request, as Admin, from your company, to provide the contents of... Read more...

Build Your Own Virtualized Test Lab
 Desmond Lee explains the fundamentals of building a fully functional test lab for Windows Servers and... Read more...

Rendering Hierarchical Data with the Treeview
 It sometimes happens that Web Server controls that visualize data don't quite fit with the way that... Read more...

SQL Server 2008: Performance Data Collector
 With Performance Data Collector in SQL Server 2008, you can now store performance data from a number of... Read more...