<?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; Introduction to LEAD and LAG &#8211; Analytic Functions Introduced in SQL Server 2012</title>
	<atom:link href="http://blog.sqlauthority.com/2011/11/15/sql-server-introduction-to-lead-and-lag-analytic-functions-introduced-in-sql-server-2012/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2011/11/15/sql-server-introduction-to-lead-and-lag-analytic-functions-introduced-in-sql-server-2012/</link>
	<description>SQL, SQL Server, MySQL, Big Data and NoSQL</description>
	<lastBuildDate>Wed, 19 Jun 2013 15:04:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: kirti sardana</title>
		<link>http://blog.sqlauthority.com/2011/11/15/sql-server-introduction-to-lead-and-lag-analytic-functions-introduced-in-sql-server-2012/#comment-479604</link>
		<dc:creator><![CDATA[kirti sardana]]></dc:creator>
		<pubDate>Tue, 21 May 2013 05:57:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15772#comment-479604</guid>
		<description><![CDATA[Very easy and straight forward explanation Pinal :) 
Cheers !
Kirti Sardana]]></description>
		<content:encoded><![CDATA[<p>Very easy and straight forward explanation Pinal :)<br />
Cheers !<br />
Kirti Sardana</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adama</title>
		<link>http://blog.sqlauthority.com/2011/11/15/sql-server-introduction-to-lead-and-lag-analytic-functions-introduced-in-sql-server-2012/#comment-473337</link>
		<dc:creator><![CDATA[Adama]]></dc:creator>
		<pubDate>Sat, 11 May 2013 16:16:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15772#comment-473337</guid>
		<description><![CDATA[very good article]]></description>
		<content:encoded><![CDATA[<p>very good article</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott</title>
		<link>http://blog.sqlauthority.com/2011/11/15/sql-server-introduction-to-lead-and-lag-analytic-functions-introduced-in-sql-server-2012/#comment-466609</link>
		<dc:creator><![CDATA[Scott]]></dc:creator>
		<pubDate>Tue, 30 Apr 2013 08:53:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15772#comment-466609</guid>
		<description><![CDATA[Anil
Seeing &quot;USE AdventureWorks2008R2&quot; makes me think you&#039;re using SQL 2008R2. LEAD/LAG is only available in SQL 2012

Scott]]></description>
		<content:encoded><![CDATA[<p>Anil<br />
Seeing &#8220;USE AdventureWorks2008R2&#8243; makes me think you&#8217;re using SQL 2008R2. LEAD/LAG is only available in SQL 2012</p>
<p>Scott</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adama</title>
		<link>http://blog.sqlauthority.com/2011/11/15/sql-server-introduction-to-lead-and-lag-analytic-functions-introduced-in-sql-server-2012/#comment-464216</link>
		<dc:creator><![CDATA[Adama]]></dc:creator>
		<pubDate>Fri, 26 Apr 2013 06:23:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15772#comment-464216</guid>
		<description><![CDATA[Very good article]]></description>
		<content:encoded><![CDATA[<p>Very good article</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adama</title>
		<link>http://blog.sqlauthority.com/2011/11/15/sql-server-introduction-to-lead-and-lag-analytic-functions-introduced-in-sql-server-2012/#comment-464215</link>
		<dc:creator><![CDATA[Adama]]></dc:creator>
		<pubDate>Fri, 26 Apr 2013 06:22:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15772#comment-464215</guid>
		<description><![CDATA[Vary good 
thinks]]></description>
		<content:encoded><![CDATA[<p>Vary good<br />
thinks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anil</title>
		<link>http://blog.sqlauthority.com/2011/11/15/sql-server-introduction-to-lead-and-lag-analytic-functions-introduced-in-sql-server-2012/#comment-439413</link>
		<dc:creator><![CDATA[Anil]]></dc:creator>
		<pubDate>Mon, 18 Mar 2013 13:44:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15772#comment-439413</guid>
		<description><![CDATA[Error Message:

Msg 195, Level 15, State 10, Line 2
&#039;LEAD&#039; is not a recognized built-in function name.

Sorry this is the error I am getting when I am trying to execute the below query.

USE AdventureWorks2008R2
GO
SELECT s.SalesOrderID,s.SalesOrderDetailID,s.OrderQty,
LEAD(SalesOrderDetailID) OVER (ORDER BY SalesOrderDetailID
) LeadValue,
LAG(SalesOrderDetailID) OVER (ORDER BY SalesOrderDetailID
) LagValue
FROM Sales.SalesOrderDetail s
WHERE SalesOrderID IN (43670, 43669, 43667, 43663)
ORDER BY s.SalesOrderID,s.SalesOrderDetailID,s.OrderQty
GO

Thanks
Anil]]></description>
		<content:encoded><![CDATA[<p>Error Message:</p>
<p>Msg 195, Level 15, State 10, Line 2<br />
&#8216;LEAD&#8217; is not a recognized built-in function name.</p>
<p>Sorry this is the error I am getting when I am trying to execute the below query.</p>
<p>USE AdventureWorks2008R2<br />
GO<br />
SELECT s.SalesOrderID,s.SalesOrderDetailID,s.OrderQty,<br />
LEAD(SalesOrderDetailID) OVER (ORDER BY SalesOrderDetailID<br />
) LeadValue,<br />
LAG(SalesOrderDetailID) OVER (ORDER BY SalesOrderDetailID<br />
) LagValue<br />
FROM Sales.SalesOrderDetail s<br />
WHERE SalesOrderID IN (43670, 43669, 43667, 43663)<br />
ORDER BY s.SalesOrderID,s.SalesOrderDetailID,s.OrderQty<br />
GO</p>
<p>Thanks<br />
Anil</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anil</title>
		<link>http://blog.sqlauthority.com/2011/11/15/sql-server-introduction-to-lead-and-lag-analytic-functions-introduced-in-sql-server-2012/#comment-439409</link>
		<dc:creator><![CDATA[Anil]]></dc:creator>
		<pubDate>Mon, 18 Mar 2013 13:42:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15772#comment-439409</guid>
		<description><![CDATA[Hi Pinal, 

I am getting the below error, can you please suggest whats the solution for this.

Thanks
Anil.]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal, </p>
<p>I am getting the below error, can you please suggest whats the solution for this.</p>
<p>Thanks<br />
Anil.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #007 &#171; SQL Server Journey with SQL Authority</title>
		<link>http://blog.sqlauthority.com/2011/11/15/sql-server-introduction-to-lead-and-lag-analytic-functions-introduced-in-sql-server-2012/#comment-393533</link>
		<dc:creator><![CDATA[SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #007 &#171; SQL Server Journey with SQL Authority]]></dc:creator>
		<pubDate>Sat, 15 Dec 2012 01:32:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15772#comment-393533</guid>
		<description><![CDATA[[...] Introduction to LEAD and LAG – Analytic Functions Introduced in SQL Server 2012 SQL Server 2012 introduces new analytical function LEAD() and LAG(). This functions accesses data from a subsequent row (for lead) and previous row (for lag) in the same result set without the use of a self-join . It will be very difficult to explain this in words so I will attempt small example to explain you this function. Instead of creating new table, I will be using AdventureWorks sample database as most of the developer uses that for experiment. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Introduction to LEAD and LAG – Analytic Functions Introduced in SQL Server 2012 SQL Server 2012 introduces new analytical function LEAD() and LAG(). This functions accesses data from a subsequent row (for lead) and previous row (for lag) in the same result set without the use of a self-join . It will be very difficult to explain this in words so I will attempt small example to explain you this function. Instead of creating new table, I will be using AdventureWorks sample database as most of the developer uses that for experiment. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alistair</title>
		<link>http://blog.sqlauthority.com/2011/11/15/sql-server-introduction-to-lead-and-lag-analytic-functions-introduced-in-sql-server-2012/#comment-386314</link>
		<dc:creator><![CDATA[Alistair]]></dc:creator>
		<pubDate>Mon, 03 Dec 2012 17:22:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15772#comment-386314</guid>
		<description><![CDATA[you would need to do a self join, or create two data sets with row numbers for each record ordered by date for example. then join on row number minus 1, which is equivalent for lag of 1.]]></description>
		<content:encoded><![CDATA[<p>you would need to do a self join, or create two data sets with row numbers for each record ordered by date for example. then join on row number minus 1, which is equivalent for lag of 1.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #004 &#171; SQL Server Journey with SQL Authority</title>
		<link>http://blog.sqlauthority.com/2011/11/15/sql-server-introduction-to-lead-and-lag-analytic-functions-introduced-in-sql-server-2012/#comment-379693</link>
		<dc:creator><![CDATA[SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #004 &#171; SQL Server Journey with SQL Authority]]></dc:creator>
		<pubDate>Sat, 24 Nov 2012 01:31:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15772#comment-379693</guid>
		<description><![CDATA[[...] LEAD [...]]]></description>
		<content:encoded><![CDATA[<p>[...] LEAD [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tanvir</title>
		<link>http://blog.sqlauthority.com/2011/11/15/sql-server-introduction-to-lead-and-lag-analytic-functions-introduced-in-sql-server-2012/#comment-379019</link>
		<dc:creator><![CDATA[Tanvir]]></dc:creator>
		<pubDate>Fri, 23 Nov 2012 00:10:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15772#comment-379019</guid>
		<description><![CDATA[Do you know anything equivalent of LAG and LEAD in SQL Server 2008 R2?]]></description>
		<content:encoded><![CDATA[<p>Do you know anything equivalent of LAG and LEAD in SQL Server 2008 R2?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #003 &#171; SQL Server Journey with SQL Authority</title>
		<link>http://blog.sqlauthority.com/2011/11/15/sql-server-introduction-to-lead-and-lag-analytic-functions-introduced-in-sql-server-2012/#comment-375262</link>
		<dc:creator><![CDATA[SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #003 &#171; SQL Server Journey with SQL Authority]]></dc:creator>
		<pubDate>Sat, 17 Nov 2012 01:32:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15772#comment-375262</guid>
		<description><![CDATA[[...] Introduction to LEAD and LAG – Analytic Functions Introduced in SQL Server 2012 SQL Server 2012 introduces new analytical function LEAD() and LAG(). This function accesses data from a subsequent row (for lead) and previous row (for lag) in the same result set without the use of a self-join . It will be very difficult to explain this in words so I will attempt small example to explain you this function. I had a fantastic time writing this blog post and I am very confident when you read it, you will like the same. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Introduction to LEAD and LAG – Analytic Functions Introduced in SQL Server 2012 SQL Server 2012 introduces new analytical function LEAD() and LAG(). This function accesses data from a subsequent row (for lead) and previous row (for lag) in the same result set without the use of a self-join . It will be very difficult to explain this in words so I will attempt small example to explain you this function. I had a fantastic time writing this blog post and I am very confident when you read it, you will like the same. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dd</title>
		<link>http://blog.sqlauthority.com/2011/11/15/sql-server-introduction-to-lead-and-lag-analytic-functions-introduced-in-sql-server-2012/#comment-374958</link>
		<dc:creator><![CDATA[dd]]></dc:creator>
		<pubDate>Fri, 16 Nov 2012 13:26:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15772#comment-374958</guid>
		<description><![CDATA[Has been available in Oracle for around a decade.]]></description>
		<content:encoded><![CDATA[<p>Has been available in Oracle for around a decade.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mallis</title>
		<link>http://blog.sqlauthority.com/2011/11/15/sql-server-introduction-to-lead-and-lag-analytic-functions-introduced-in-sql-server-2012/#comment-350814</link>
		<dc:creator><![CDATA[mallis]]></dc:creator>
		<pubDate>Wed, 19 Sep 2012 07:44:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15772#comment-350814</guid>
		<description><![CDATA[its  good article,,,,,,,,,,,,]]></description>
		<content:encoded><![CDATA[<p>its  good article,,,,,,,,,,,,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rahul</title>
		<link>http://blog.sqlauthority.com/2011/11/15/sql-server-introduction-to-lead-and-lag-analytic-functions-introduced-in-sql-server-2012/#comment-287565</link>
		<dc:creator><![CDATA[rahul]]></dc:creator>
		<pubDate>Wed, 23 May 2012 11:10:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15772#comment-287565</guid>
		<description><![CDATA[nice ....................]]></description>
		<content:encoded><![CDATA[<p>nice &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: datelligence</title>
		<link>http://blog.sqlauthority.com/2011/11/15/sql-server-introduction-to-lead-and-lag-analytic-functions-introduced-in-sql-server-2012/#comment-271524</link>
		<dc:creator><![CDATA[datelligence]]></dc:creator>
		<pubDate>Tue, 03 Apr 2012 18:58:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15772#comment-271524</guid>
		<description><![CDATA[Pinal as good as always but,  how about SQL SERVER 2008.  I still use it and need to do the same as LAG and LEAD.  Thanks]]></description>
		<content:encoded><![CDATA[<p>Pinal as good as always but,  how about SQL SERVER 2008.  I still use it and need to do the same as LAG and LEAD.  Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: anbuvel</title>
		<link>http://blog.sqlauthority.com/2011/11/15/sql-server-introduction-to-lead-and-lag-analytic-functions-introduced-in-sql-server-2012/#comment-262419</link>
		<dc:creator><![CDATA[anbuvel]]></dc:creator>
		<pubDate>Tue, 13 Mar 2012 05:36:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15772#comment-262419</guid>
		<description><![CDATA[nice article.., good examples and explanation.]]></description>
		<content:encoded><![CDATA[<p>nice article.., good examples and explanation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shathya</title>
		<link>http://blog.sqlauthority.com/2011/11/15/sql-server-introduction-to-lead-and-lag-analytic-functions-introduced-in-sql-server-2012/#comment-245739</link>
		<dc:creator><![CDATA[shathya]]></dc:creator>
		<pubDate>Mon, 30 Jan 2012 16:54:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15772#comment-245739</guid>
		<description><![CDATA[nice one....Good explanation.]]></description>
		<content:encoded><![CDATA[<p>nice one&#8230;.Good explanation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mangesh Tambare</title>
		<link>http://blog.sqlauthority.com/2011/11/15/sql-server-introduction-to-lead-and-lag-analytic-functions-introduced-in-sql-server-2012/#comment-235376</link>
		<dc:creator><![CDATA[Mangesh Tambare]]></dc:creator>
		<pubDate>Wed, 11 Jan 2012 16:53:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15772#comment-235376</guid>
		<description><![CDATA[Really nice one sir]]></description>
		<content:encoded><![CDATA[<p>Really nice one sir</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: harsha</title>
		<link>http://blog.sqlauthority.com/2011/11/15/sql-server-introduction-to-lead-and-lag-analytic-functions-introduced-in-sql-server-2012/#comment-211089</link>
		<dc:creator><![CDATA[harsha]]></dc:creator>
		<pubDate>Mon, 05 Dec 2011 05:56:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15772#comment-211089</guid>
		<description><![CDATA[Hi can you help me in this requirement below, how do I write a query. 
I have a table that has 1-24 hours of sales information, Table has date, store name, store location, Intrvl_1, sales $$. Like this I have 24 rows for one day for one store, I need those store where there was a consistent sales $$ (or 5% deviation is OK) between Intrvl_9 to Intrvl_15. 
Any help?]]></description>
		<content:encoded><![CDATA[<p>Hi can you help me in this requirement below, how do I write a query.<br />
I have a table that has 1-24 hours of sales information, Table has date, store name, store location, Intrvl_1, sales $$. Like this I have 24 rows for one day for one store, I need those store where there was a consistent sales $$ (or 5% deviation is OK) between Intrvl_9 to Intrvl_15.<br />
Any help?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER &#8211; 2012 &#8211; Summary of All the Analytic Functions &#8211; MSDN and SQLAuthority &#171; Journey to SQLAuthority</title>
		<link>http://blog.sqlauthority.com/2011/11/15/sql-server-introduction-to-lead-and-lag-analytic-functions-introduced-in-sql-server-2012/#comment-202547</link>
		<dc:creator><![CDATA[SQL SERVER &#8211; 2012 &#8211; Summary of All the Analytic Functions &#8211; MSDN and SQLAuthority &#171; Journey to SQLAuthority]]></dc:creator>
		<pubDate>Wed, 23 Nov 2011 01:31:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15772#comment-202547</guid>
		<description><![CDATA[[...] LEAD [...]]]></description>
		<content:encoded><![CDATA[<p>[...] LEAD [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Suman Balguri</title>
		<link>http://blog.sqlauthority.com/2011/11/15/sql-server-introduction-to-lead-and-lag-analytic-functions-introduced-in-sql-server-2012/#comment-200410</link>
		<dc:creator><![CDATA[Suman Balguri]]></dc:creator>
		<pubDate>Sun, 20 Nov 2011 19:04:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15772#comment-200410</guid>
		<description><![CDATA[Thanks Pinal for clear introduction on LEAD and LAG Functions...]]></description>
		<content:encoded><![CDATA[<p>Thanks Pinal for clear introduction on LEAD and LAG Functions&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kalyan</title>
		<link>http://blog.sqlauthority.com/2011/11/15/sql-server-introduction-to-lead-and-lag-analytic-functions-introduced-in-sql-server-2012/#comment-198360</link>
		<dc:creator><![CDATA[kalyan]]></dc:creator>
		<pubDate>Fri, 18 Nov 2011 06:33:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15772#comment-198360</guid>
		<description><![CDATA[Hi Pinal,
           I have got some doubt in conversion of varbinary to varchar. The problem is, I am actually replicating a pdf file(saved as varbinary) from one db to another db through dynamic query but I am getting an error varbinary datatype is incompatible with add operator.Also explicitly mentioning convert varchar() gives me a unidentified file type!! Any possible solution for this problem?]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,<br />
           I have got some doubt in conversion of varbinary to varchar. The problem is, I am actually replicating a pdf file(saved as varbinary) from one db to another db through dynamic query but I am getting an error varbinary datatype is incompatible with add operator.Also explicitly mentioning convert varchar() gives me a unidentified file type!! Any possible solution for this problem?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott Swank</title>
		<link>http://blog.sqlauthority.com/2011/11/15/sql-server-introduction-to-lead-and-lag-analytic-functions-introduced-in-sql-server-2012/#comment-197826</link>
		<dc:creator><![CDATA[Scott Swank]]></dc:creator>
		<pubDate>Thu, 17 Nov 2011 16:32:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15772#comment-197826</guid>
		<description><![CDATA[Really? This is tech from the early 2000s (Oraclee, DB2) that was finally added to ansi sql in 2003, and it merits an article in 2012? This is literally ten year old tech.]]></description>
		<content:encoded><![CDATA[<p>Really? This is tech from the early 2000s (Oraclee, DB2) that was finally added to ansi sql in 2003, and it merits an article in 2012? This is literally ten year old tech.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rudrashis Karan</title>
		<link>http://blog.sqlauthority.com/2011/11/15/sql-server-introduction-to-lead-and-lag-analytic-functions-introduced-in-sql-server-2012/#comment-197521</link>
		<dc:creator><![CDATA[Rudrashis Karan]]></dc:creator>
		<pubDate>Thu, 17 Nov 2011 06:45:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15772#comment-197521</guid>
		<description><![CDATA[Dear Sir,
    its really exciting.........

Regards
Rudrashis Karan]]></description>
		<content:encoded><![CDATA[<p>Dear Sir,<br />
    its really exciting&#8230;&#8230;&#8230;</p>
<p>Regards<br />
Rudrashis Karan</p>
]]></content:encoded>
	</item>
</channel>
</rss>
