SqlServer-QA.net

Knowledge Sharing Network
Welcome to SqlServer-QA.net Sign in | Join | Help
in Search

Browse by Tags

All Tags » GO   (RSS)
  • Fun with GO

    In this blog post, I explained different uses of GO command Here is a Fun when you use GO as object name CREATE PROCEDURE GO(    @I INT)AS    SELECT @I AS number Well. The procedure is created and let us try to execute GO 2What we see is Command(s) completed successfullyBecuase it becomes a syntax to execute a ...
    Posted to SQL Server Transact-SQL (SSQA.net) (Weblog) by Madhivanan on September 5, 2008
  • Another use of GO command in SQL Server 2005

    As you all know, GO command signals the end of the batch of T-SQL statements However in SQL Server 2005, it is also used to execute set of commands for a specified number of times Consider that you want to create a table that should have hundred random integer values. You can the methods like the ones specified in ...
    Posted to SQL Server Transact-SQL (SSQA.net) (Weblog) by Madhivanan on August 6, 2008
Powered by Community Server (Commercial Edition), by Telligent Systems