<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: SQL SERVER &#8211; Explanation SQL Command GO</title>
	<atom:link href="http://blog.sqlauthority.com/2007/05/11/sql-server-explanation-sql-command-go/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2007/05/11/sql-server-explanation-sql-command-go/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Thu, 23 May 2013 14:22:59 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Nikash</title>
		<link>http://blog.sqlauthority.com/2007/05/11/sql-server-explanation-sql-command-go/#comment-481170</link>
		<dc:creator><![CDATA[Nikash]]></dc:creator>
		<pubDate>Thu, 23 May 2013 13:10:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/11/sql-server-explanation-sql-commando-go/#comment-481170</guid>
		<description><![CDATA[--(Procedure &#039;abc&#039; is actually exist ) ,I want to alter the proc if it exist
--so i write the below code ,But it fails
--How to correct this and what is the problem with this .

PRINT &#039;&#039;
PRINT &#039;Start of script (SP)!&#039;

IF EXISTS(SELECT 1 FROM sys.sysobjects WHERE name = &#039;abc&#039; AND type = &#039;P&#039;)
BEGIN
SET ANSI_NULLS ON

SET QUOTED_IDENTIFIER ON

Alter procedure [dbo].[abc]
as
	begin
		 select * from tblParty
	end    
 

PRINT &#039;&#039;
PRINT &#039;End of script (SP)!&#039;
END]]></description>
		<content:encoded><![CDATA[<p>&#8211;(Procedure &#8216;abc&#8217; is actually exist ) ,I want to alter the proc if it exist<br />
&#8211;so i write the below code ,But it fails<br />
&#8211;How to correct this and what is the problem with this .</p>
<p>PRINT &#8221;<br />
PRINT &#8216;Start of script (SP)!&#8217;</p>
<p>IF EXISTS(SELECT 1 FROM sys.sysobjects WHERE name = &#8216;abc&#8217; AND type = &#8216;P&#8217;)<br />
BEGIN<br />
SET ANSI_NULLS ON</p>
<p>SET QUOTED_IDENTIFIER ON</p>
<p>Alter procedure [dbo].[abc]<br />
as<br />
	begin<br />
		 select * from tblParty<br />
	end    </p>
<p>PRINT &#8221;<br />
PRINT &#8216;End of script (SP)!&#8217;<br />
END</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #028 &#124; SQL Server Journey with SQL Authority</title>
		<link>http://blog.sqlauthority.com/2007/05/11/sql-server-explanation-sql-command-go/#comment-472976</link>
		<dc:creator><![CDATA[SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #028 &#124; SQL Server Journey with SQL Authority]]></dc:creator>
		<pubDate>Sat, 11 May 2013 01:31:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/11/sql-server-explanation-sql-commando-go/#comment-472976</guid>
		<description><![CDATA[[&#8230;] Explanation SQL Command GO GO is not a Transact-SQL statement; it is often used in T-SQL code. Go causes all statements from the beginning of the script or the last GO statement (whichever is closer) to be compiled into one execution plan and sent to the server independent of any other batches. 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. [&#8230;]]]></description>
		<content:encoded><![CDATA[<p>[&#8230;] Explanation SQL Command GO GO is not a Transact-SQL statement; it is often used in T-SQL code. Go causes all statements from the beginning of the script or the last GO statement (whichever is closer) to be compiled into one execution plan and sent to the server independent of any other batches. 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. [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeremias Nuñez</title>
		<link>http://blog.sqlauthority.com/2007/05/11/sql-server-explanation-sql-command-go/#comment-433937</link>
		<dc:creator><![CDATA[Jeremias Nuñez]]></dc:creator>
		<pubDate>Fri, 08 Mar 2013 14:24:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/11/sql-server-explanation-sql-commando-go/#comment-433937</guid>
		<description><![CDATA[you can also use GO with an int parameter:

INSERT INTO mytable DEFAULT VALUES
GO 10

that will insert 10 rows into &#039;mytable&#039;]]></description>
		<content:encoded><![CDATA[<p>you can also use GO with an int parameter:</p>
<p>INSERT INTO mytable DEFAULT VALUES<br />
GO 10</p>
<p>that will insert 10 rows into &#8216;mytable&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: moheeb</title>
		<link>http://blog.sqlauthority.com/2007/05/11/sql-server-explanation-sql-command-go/#comment-412174</link>
		<dc:creator><![CDATA[moheeb]]></dc:creator>
		<pubDate>Thu, 24 Jan 2013 06:21:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/11/sql-server-explanation-sql-commando-go/#comment-412174</guid>
		<description><![CDATA[how many other statements we are using that are not actually TSQL statement?]]></description>
		<content:encoded><![CDATA[<p>how many other statements we are using that are not actually TSQL statement?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andreas Wawa</title>
		<link>http://blog.sqlauthority.com/2007/05/11/sql-server-explanation-sql-command-go/#comment-358306</link>
		<dc:creator><![CDATA[Andreas Wawa]]></dc:creator>
		<pubDate>Wed, 10 Oct 2012 13:32:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/11/sql-server-explanation-sql-commando-go/#comment-358306</guid>
		<description><![CDATA[Hi Pinal,
&quot;go&quot; is also very tricky!
Check this: 
Domain\User doesn&#039;t eixists on the Server, so I will catch the error and go on with the rest of the scirpt...
If I let &quot;go&quot; in the TRY-Block I still get an error:

Msg 102, Level 15, State 1, Line 6
Incorrect syntax near &#039;sysadmin&#039;.
Msg 102, Level 15, State 1, Line 2
Incorrect syntax near &#039;BEGIN&#039;.

But when I comment &quot;go&quot; out it works just fine!

USE [master]
go
BEGIN TRY
	if not exists(select loginname from master.dbo.syslogins where name = &#039;Domain\User&#039;)
	begin
		CREATE LOGIN [Domain\User] FROM WINDOWS WITH DEFAULT_DATABASE=[master]
	end
	EXEC master..sp_addsrvrolemember @loginame = N&#039;Domain\User&#039;, @rolename = N&#039;sysadmin&#039;
	go
END TRY
BEGIN CATCH
--	select &#039;CATCH&#039;
END CATCH
--do next stuff

Keep up your good work!
Andreas]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,<br />
&#8220;go&#8221; is also very tricky!<br />
Check this:<br />
Domain\User doesn&#8217;t eixists on the Server, so I will catch the error and go on with the rest of the scirpt&#8230;<br />
If I let &#8220;go&#8221; in the TRY-Block I still get an error:</p>
<p>Msg 102, Level 15, State 1, Line 6<br />
Incorrect syntax near &#8216;sysadmin&#8217;.<br />
Msg 102, Level 15, State 1, Line 2<br />
Incorrect syntax near &#8216;BEGIN&#8217;.</p>
<p>But when I comment &#8220;go&#8221; out it works just fine!</p>
<p>USE [master]<br />
go<br />
BEGIN TRY<br />
	if not exists(select loginname from master.dbo.syslogins where name = &#8216;Domain\User&#8217;)<br />
	begin<br />
		CREATE LOGIN [Domain\User] FROM WINDOWS WITH DEFAULT_DATABASE=[master]<br />
	end<br />
	EXEC master..sp_addsrvrolemember @loginame = N&#8217;Domain\User&#8217;, @rolename = N&#8217;sysadmin&#8217;<br />
	go<br />
END TRY<br />
BEGIN CATCH<br />
&#8211;	select &#8216;CATCH&#8217;<br />
END CATCH<br />
&#8211;do next stuff</p>
<p>Keep up your good work!<br />
Andreas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: guitaristed</title>
		<link>http://blog.sqlauthority.com/2007/05/11/sql-server-explanation-sql-command-go/#comment-303236</link>
		<dc:creator><![CDATA[guitaristed]]></dc:creator>
		<pubDate>Tue, 19 Jun 2012 14:37:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/11/sql-server-explanation-sql-commando-go/#comment-303236</guid>
		<description><![CDATA[Keep up the good work...Great site]]></description>
		<content:encoded><![CDATA[<p>Keep up the good work&#8230;Great site</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vishal Tile</title>
		<link>http://blog.sqlauthority.com/2007/05/11/sql-server-explanation-sql-command-go/#comment-244420</link>
		<dc:creator><![CDATA[Vishal Tile]]></dc:creator>
		<pubDate>Fri, 27 Jan 2012 07:20:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/11/sql-server-explanation-sql-commando-go/#comment-244420</guid>
		<description><![CDATA[Excellent Site!!!!!!!!!!!!!!!!!!!]]></description>
		<content:encoded><![CDATA[<p>Excellent Site!!!!!!!!!!!!!!!!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dinesh Kumar</title>
		<link>http://blog.sqlauthority.com/2007/05/11/sql-server-explanation-sql-command-go/#comment-155412</link>
		<dc:creator><![CDATA[Dinesh Kumar]]></dc:creator>
		<pubDate>Tue, 09 Aug 2011 13:40:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/11/sql-server-explanation-sql-commando-go/#comment-155412</guid>
		<description><![CDATA[the above sp is not working properly... anyone help me...]]></description>
		<content:encoded><![CDATA[<p>the above sp is not working properly&#8230; anyone help me&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dinesh Kumar</title>
		<link>http://blog.sqlauthority.com/2007/05/11/sql-server-explanation-sql-command-go/#comment-155411</link>
		<dc:creator><![CDATA[Dinesh Kumar]]></dc:creator>
		<pubDate>Tue, 09 Aug 2011 13:40:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/11/sql-server-explanation-sql-commando-go/#comment-155411</guid>
		<description><![CDATA[alter PROCEDURE Base_Sp_InsertFieldDisplayOrder
(    
@Template_No varchar(50),    
@Field_ID int,    
@DisplayOrder int,
@OrgName varchar(50)      
)    
as    
declare @sql1 nvarchar(4000)  
set @sql1=&#039;&#039;
set @sql1=&#039;   
aaa:  
if exists(select Field_Id from &#039;+ @OrgName +&#039;wdt_template_fields where  template_no=&#039; +convert(varchar(50),@Template_No) + &#039; and DisplayOrder=&#039; + convert(varchar(50),@DisplayOrder) +&#039;)    
begin 
	declare @DisplayOrder int
	set @DisplayOrder=0;
	set   @DisplayOrder  =  &#039; + convert(varchar(50),(@DisplayOrder + 1)) + &#039;
    goto aaa 
end    
else    
begin    
 update &#039;+ @OrgName +&#039;wdt_template_fields set DisplayOrder=&#039; +convert(varchar(50),@DisplayOrder)+&#039; where template_no=&#039; + convert(varchar(50),@Template_No) +&#039; and Field_id= &#039; +convert(varchar(50),@Field_ID) +&#039;;    
 update &#039;+ @OrgName +&#039;wdt_template_properties set DisplayOrder=&#039; +convert(varchar(50),@DisplayOrder)+&#039; where template_no=&#039; + convert(varchar(50),@Template_No) +&#039; and Field_id= &#039; +convert(varchar(50),@Field_ID) +&#039;;    
 update &#039;+ @OrgName +&#039;wdt_template_field_access_rights set DisplayOrder=&#039; +convert(varchar(50),@DisplayOrder)+&#039; where template_no=&#039; + convert(varchar(50),@Template_No) +&#039; and Field_id= &#039; +convert(varchar(50),@Field_ID) +&#039;;    
    
end&#039;

print  @sql1
--EXEC sp_executesql @sql1]]></description>
		<content:encoded><![CDATA[<p>alter PROCEDURE Base_Sp_InsertFieldDisplayOrder<br />
(<br />
@Template_No varchar(50),<br />
@Field_ID int,<br />
@DisplayOrder int,<br />
@OrgName varchar(50)<br />
)<br />
as<br />
declare @sql1 nvarchar(4000)<br />
set @sql1=&#8221;<br />
set @sql1=&#8217;<br />
aaa:<br />
if exists(select Field_Id from &#8216;+ @OrgName +&#8217;wdt_template_fields where  template_no=&#8217; +convert(varchar(50),@Template_No) + &#8216; and DisplayOrder=&#8217; + convert(varchar(50),@DisplayOrder) +&#8217;)<br />
begin<br />
	declare @DisplayOrder int<br />
	set @DisplayOrder=0;<br />
	set   @DisplayOrder  =  &#8216; + convert(varchar(50),(@DisplayOrder + 1)) + &#8216;<br />
    goto aaa<br />
end<br />
else<br />
begin<br />
 update &#8216;+ @OrgName +&#8217;wdt_template_fields set DisplayOrder=&#8217; +convert(varchar(50),@DisplayOrder)+&#8217; where template_no=&#8217; + convert(varchar(50),@Template_No) +&#8217; and Field_id= &#8216; +convert(varchar(50),@Field_ID) +&#8217;;<br />
 update &#8216;+ @OrgName +&#8217;wdt_template_properties set DisplayOrder=&#8217; +convert(varchar(50),@DisplayOrder)+&#8217; where template_no=&#8217; + convert(varchar(50),@Template_No) +&#8217; and Field_id= &#8216; +convert(varchar(50),@Field_ID) +&#8217;;<br />
 update &#8216;+ @OrgName +&#8217;wdt_template_field_access_rights set DisplayOrder=&#8217; +convert(varchar(50),@DisplayOrder)+&#8217; where template_no=&#8217; + convert(varchar(50),@Template_No) +&#8217; and Field_id= &#8216; +convert(varchar(50),@Field_ID) +&#8217;;    </p>
<p>end&#8217;</p>
<p>print  @sql1<br />
&#8211;EXEC sp_executesql @sql1</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kalidoss</title>
		<link>http://blog.sqlauthority.com/2007/05/11/sql-server-explanation-sql-command-go/#comment-87066</link>
		<dc:creator><![CDATA[kalidoss]]></dc:creator>
		<pubDate>Wed, 08 Sep 2010 10:46:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/11/sql-server-explanation-sql-commando-go/#comment-87066</guid>
		<description><![CDATA[hi sir,
           its very usefull for me for your articles.....]]></description>
		<content:encoded><![CDATA[<p>hi sir,<br />
           its very usefull for me for your articles&#8230;..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ElMatador</title>
		<link>http://blog.sqlauthority.com/2007/05/11/sql-server-explanation-sql-command-go/#comment-84680</link>
		<dc:creator><![CDATA[ElMatador]]></dc:creator>
		<pubDate>Thu, 19 Aug 2010 22:26:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/11/sql-server-explanation-sql-commando-go/#comment-84680</guid>
		<description><![CDATA[Today I had a problem where we executed a sql script that included the following:

1. Use PaceFSdB
Go

2. If the procedure exists already Drop it.
Go

3. Create The Procedure

4. Grant Execute Permissions on the newly created Procedure.
Go

The problem:

Number 4 above would never execute. The Proc did not have execute permissions granted to dbml.

Notice on Number 3 above how we mistakenly omitted a GO statement after creating the procedure, which somehow was not executing Number 4 above correctly.

Why is this?

Thank you for all you informative posts.

ElMatador]]></description>
		<content:encoded><![CDATA[<p>Today I had a problem where we executed a sql script that included the following:</p>
<p>1. Use PaceFSdB<br />
Go</p>
<p>2. If the procedure exists already Drop it.<br />
Go</p>
<p>3. Create The Procedure</p>
<p>4. Grant Execute Permissions on the newly created Procedure.<br />
Go</p>
<p>The problem:</p>
<p>Number 4 above would never execute. The Proc did not have execute permissions granted to dbml.</p>
<p>Notice on Number 3 above how we mistakenly omitted a GO statement after creating the procedure, which somehow was not executing Number 4 above correctly.</p>
<p>Why is this?</p>
<p>Thank you for all you informative posts.</p>
<p>ElMatador</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: masterpiecebeta2</title>
		<link>http://blog.sqlauthority.com/2007/05/11/sql-server-explanation-sql-command-go/#comment-62137</link>
		<dc:creator><![CDATA[masterpiecebeta2]]></dc:creator>
		<pubDate>Thu, 04 Mar 2010 07:28:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/11/sql-server-explanation-sql-commando-go/#comment-62137</guid>
		<description><![CDATA[simply understanable]]></description>
		<content:encoded><![CDATA[<p>simply understanable</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Valerie</title>
		<link>http://blog.sqlauthority.com/2007/05/11/sql-server-explanation-sql-command-go/#comment-57561</link>
		<dc:creator><![CDATA[Valerie]]></dc:creator>
		<pubDate>Thu, 12 Nov 2009 21:37:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/11/sql-server-explanation-sql-commando-go/#comment-57561</guid>
		<description><![CDATA[Are GOs implicit Commits? If I put a transaction around my script and hit an error, I thought it would rollback. But it doesn&#039;t. If I remove all my GOs then any schema changes I make in my script aren&#039;t accessible (meaning, say, if I created a table then I can&#039;t insert into it) so I can&#039;t run the sql I want to. I feel like I&#039;m between a rock and hard place.]]></description>
		<content:encoded><![CDATA[<p>Are GOs implicit Commits? If I put a transaction around my script and hit an error, I thought it would rollback. But it doesn&#8217;t. If I remove all my GOs then any schema changes I make in my script aren&#8217;t accessible (meaning, say, if I created a table then I can&#8217;t insert into it) so I can&#8217;t run the sql I want to. I feel like I&#8217;m between a rock and hard place.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQLAuthority News - Best Articles on SQLAuthority.com Journey to SQL Authority with Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2007/05/11/sql-server-explanation-sql-command-go/#comment-47207</link>
		<dc:creator><![CDATA[SQLAuthority News - Best Articles on SQLAuthority.com Journey to SQL Authority with Pinal Dave]]></dc:creator>
		<pubDate>Tue, 24 Feb 2009 12:08:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/11/sql-server-explanation-sql-commando-go/#comment-47207</guid>
		<description><![CDATA[[...] SQL SERVER - Explanation SQL Commando GO [...]]]></description>
		<content:encoded><![CDATA[<p>[...] SQL SERVER &#8211; Explanation SQL Commando GO [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: krr</title>
		<link>http://blog.sqlauthority.com/2007/05/11/sql-server-explanation-sql-command-go/#comment-44528</link>
		<dc:creator><![CDATA[krr]]></dc:creator>
		<pubDate>Thu, 04 Dec 2008 10:02:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/11/sql-server-explanation-sql-commando-go/#comment-44528</guid>
		<description><![CDATA[create table atable

DECLARE @i int
SET @i=1
while @i&lt;=100
begin
	insert atable default values
	go
	set @i=@i+1
end
select * from atable]]></description>
		<content:encoded><![CDATA[<p>create table atable</p>
<p>DECLARE @i int<br />
SET @i=1<br />
while @i&lt;=100<br />
begin<br />
	insert atable default values<br />
	go<br />
	set @i=@i+1<br />
end<br />
select * from atable</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phil</title>
		<link>http://blog.sqlauthority.com/2007/05/11/sql-server-explanation-sql-command-go/#comment-34826</link>
		<dc:creator><![CDATA[Phil]]></dc:creator>
		<pubDate>Thu, 03 Apr 2008 14:24:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/11/sql-server-explanation-sql-commando-go/#comment-34826</guid>
		<description><![CDATA[Is there a way to determine which iteration of the batch is running when using GO [Count] to execute a batch multiple times?  I would like to loop through a batch and pass the batch number to a stored procedure called within the batch.  Is this possible?]]></description>
		<content:encoded><![CDATA[<p>Is there a way to determine which iteration of the batch is running when using GO [Count] to execute a batch multiple times?  I would like to loop through a batch and pass the batch number to a stored procedure called within the batch.  Is this possible?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER - Execute Same Query and Statement Multiple Times Using Command GO Journey to SQL Authority with Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2007/05/11/sql-server-explanation-sql-command-go/#comment-32319</link>
		<dc:creator><![CDATA[SQL SERVER - Execute Same Query and Statement Multiple Times Using Command GO Journey to SQL Authority with Pinal Dave]]></dc:creator>
		<pubDate>Fri, 11 Jan 2008 18:30:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/11/sql-server-explanation-sql-commando-go/#comment-32319</guid>
		<description><![CDATA[[...] by pinaldave    Following question was asking by one of long time reader who really liked trick of SQL SERVER - Explanation SQL Command GO and SQL SERVER - Insert Multiple Records Using One Insert Statement - Use of UNION ALL. She asked [...]]]></description>
		<content:encoded><![CDATA[<p>[...] by pinaldave    Following question was asking by one of long time reader who really liked trick of SQL SERVER &#8211; Explanation SQL Command GO and SQL SERVER &#8211; Insert Multiple Records Using One Insert Statement &#8211; Use of UNION ALL. She asked [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
