• re: why GO has to be on its own line.

    From the BOL help screen....

    GO is not a Transact-SQL statement; it is a command recognized by the sqlcmd and osql utilities and SQL Server Management Studio Code editor.

    SQL Server utilities interpret GO as a signal that they should send the current batch of Transact-SQL statements to an instance of SQL Server. The current batch of statements is composed of all statements entered since the last GO, or since the start of the ad hoc session or script if this is the first GO.

    A Transact-SQL statement cannot occupy the same line as a GO command. However, the line can contain comments.

    Users must follow the rules for batches. For example, any execution of a stored procedure after the first statement in a batch must include the EXECUTE keyword. The scope of local (user-defined) variables is limited to a batch, and cannot be referenced after a GO command.

    I note that neither the given syntax example nor the example code includes the iteration count parameter. Is this a stealth feature?