<?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; Building Interactive Reports in Quick Moments &#8211; From CSV to Excel Pivot Table &#8211; A Conversation turned to Webinar</title>
	<atom:link href="http://blog.sqlauthority.com/2012/02/13/sql-server-building-interactive-reports-in-quick-moments-from-csv-to-excel-pivot-table-a-conversation-turned-to-webinar/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2012/02/13/sql-server-building-interactive-reports-in-quick-moments-from-csv-to-excel-pivot-table-a-conversation-turned-to-webinar/</link>
	<description>SQL, SQL Server, MySQL, Big Data and NoSQL</description>
	<lastBuildDate>Wed, 19 Jun 2013 08:01:41 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: deeray82</title>
		<link>http://blog.sqlauthority.com/2012/02/13/sql-server-building-interactive-reports-in-quick-moments-from-csv-to-excel-pivot-table-a-conversation-turned-to-webinar/#comment-416404</link>
		<dc:creator><![CDATA[deeray82]]></dc:creator>
		<pubDate>Fri, 01 Feb 2013 19:09:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=17308#comment-416404</guid>
		<description><![CDATA[Pinal, I&#039;d love to watch this embedded video, but it seems to be set to private.  Help please?]]></description>
		<content:encoded><![CDATA[<p>Pinal, I&#8217;d love to watch this embedded video, but it seems to be set to private.  Help please?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Velmurugan P</title>
		<link>http://blog.sqlauthority.com/2012/02/13/sql-server-building-interactive-reports-in-quick-moments-from-csv-to-excel-pivot-table-a-conversation-turned-to-webinar/#comment-256207</link>
		<dc:creator><![CDATA[Velmurugan P]]></dc:creator>
		<pubDate>Fri, 24 Feb 2012 10:26:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=17308#comment-256207</guid>
		<description><![CDATA[Hi Ganesh,

Try the following code... it must work.....

declare @id1 int,@grps varchar(150),@i int,@TXT VARCHAR(15)
DECLARE @TBL TABLE(ID INT,GROUPS VARCHAR(150),GROUP_NAME VARCHAR(150))

set @i=65
SET @TXT=&#039;GROUP&#039;

declare result cursor for	    
    SELECT t.id, t.g1+&#039;,&#039;+t.g2+&#039;,&#039;+t.g3 as Groups from grouptest t with(nolock)
OPEN result
fetch next from result into @id1,@grps		
WHILE(@@FETCH_STATUS=0)
BEGIN
	IF EXISTS(SELECT 1 FROM @TBL WHERE GROUPS=@grps)	
	BEGIN
		INSERT INTO @TBL(ID,GROUPS,GROUP_NAME)
		(SELECT TOP 1 @id1,@grps,GROUP_NAME FROM @TBL WHERE GROUPS=@grps)	
	END	
	ELSE
	BEGIN
		INSERT INTO @TBL(ID,GROUPS,GROUP_NAME)
		SELECT @id1,@grps,(@TXT+CONVERT(VARCHAR,CHAR(@i))) 
		SET @i=@i+1
	END	
			
fetch next from result into @id1,@grps		
END
CLOSE RESULT
DEALLOCATE RESULT

SELECT ID,GROUP_NAME FROM @TBL 
ORDER BY GROUP_NAME

Thanks,
Velmurugan P]]></description>
		<content:encoded><![CDATA[<p>Hi Ganesh,</p>
<p>Try the following code&#8230; it must work&#8230;..</p>
<p>declare @id1 int,@grps varchar(150),@i int,@TXT VARCHAR(15)<br />
DECLARE @TBL TABLE(ID INT,GROUPS VARCHAR(150),GROUP_NAME VARCHAR(150))</p>
<p>set @i=65<br />
SET @TXT=&#8217;GROUP&#8217;</p>
<p>declare result cursor for<br />
    SELECT t.id, t.g1+&#8217;,'+t.g2+&#8217;,'+t.g3 as Groups from grouptest t with(nolock)<br />
OPEN result<br />
fetch next from result into @id1,@grps<br />
WHILE(@@FETCH_STATUS=0)<br />
BEGIN<br />
	IF EXISTS(SELECT 1 FROM @TBL WHERE GROUPS=@grps)<br />
	BEGIN<br />
		INSERT INTO @TBL(ID,GROUPS,GROUP_NAME)<br />
		(SELECT TOP 1 @id1,@grps,GROUP_NAME FROM @TBL WHERE GROUPS=@grps)<br />
	END<br />
	ELSE<br />
	BEGIN<br />
		INSERT INTO @TBL(ID,GROUPS,GROUP_NAME)<br />
		SELECT @id1,@grps,(@TXT+CONVERT(VARCHAR,CHAR(@i)))<br />
		SET @i=@i+1<br />
	END	</p>
<p>fetch next from result into @id1,@grps<br />
END<br />
CLOSE RESULT<br />
DEALLOCATE RESULT</p>
<p>SELECT ID,GROUP_NAME FROM @TBL<br />
ORDER BY GROUP_NAME</p>
<p>Thanks,<br />
Velmurugan P</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bhupendra tailor</title>
		<link>http://blog.sqlauthority.com/2012/02/13/sql-server-building-interactive-reports-in-quick-moments-from-csv-to-excel-pivot-table-a-conversation-turned-to-webinar/#comment-253499</link>
		<dc:creator><![CDATA[bhupendra tailor]]></dc:creator>
		<pubDate>Fri, 17 Feb 2012 12:56:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=17308#comment-253499</guid>
		<description><![CDATA[Hi pinal,

Please can send me simple example to written a trigger.

Thanks.]]></description>
		<content:encoded><![CDATA[<p>Hi pinal,</p>
<p>Please can send me simple example to written a trigger.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ganesh narim</title>
		<link>http://blog.sqlauthority.com/2012/02/13/sql-server-building-interactive-reports-in-quick-moments-from-csv-to-excel-pivot-table-a-conversation-turned-to-webinar/#comment-252065</link>
		<dc:creator><![CDATA[Ganesh narim]]></dc:creator>
		<pubDate>Mon, 13 Feb 2012 13:53:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=17308#comment-252065</guid>
		<description><![CDATA[Hi pinal,

can you please help me in this,
i have one scenario

having table like this

(1,&#039;AAA&#039;,&#039;BBB&#039;,&#039;CCC&#039;),
(2,&#039;DDD&#039;,&#039;EEE&#039;,&#039;FFF&#039;),
(3,&#039;GGG&#039;,&#039;HHH&#039;,&#039;III&#039;),
(4,&#039;AAA&#039;,&#039;BBB&#039;,&#039;CCC&#039;),
(5,&#039;DDD&#039;,&#039;EEE&#039;,&#039;FFF&#039;),
(6,&#039;GGG&#039;,&#039;HHH&#039;,&#039;III&#039;),
(7,&#039;AAA&#039;,&#039;BBB&#039;,&#039;CCC&#039;),
(8,&#039;DDD&#039;,&#039;EEE&#039;,&#039;FFF&#039;),
(9,&#039;JJJ&#039;,&#039;KKK&#039;,&#039;LLL&#039;),
(10,&#039;JJJ&#039;,&#039;KKK&#039;,&#039;LLL&#039;)
 
desired result:-

1 GroupA
4 GroupA	
7 GroupA
2 GroupB
5 GroupB
8 GroupB
3 GroupC
6 GroupC
9 GroupD
10 GroupD]]></description>
		<content:encoded><![CDATA[<p>Hi pinal,</p>
<p>can you please help me in this,<br />
i have one scenario</p>
<p>having table like this</p>
<p>(1,&#8217;AAA&#8217;,'BBB&#8217;,'CCC&#8217;),<br />
(2,&#8217;DDD&#8217;,'EEE&#8217;,'FFF&#8217;),<br />
(3,&#8217;GGG&#8217;,'HHH&#8217;,'III&#8217;),<br />
(4,&#8217;AAA&#8217;,'BBB&#8217;,'CCC&#8217;),<br />
(5,&#8217;DDD&#8217;,'EEE&#8217;,'FFF&#8217;),<br />
(6,&#8217;GGG&#8217;,'HHH&#8217;,'III&#8217;),<br />
(7,&#8217;AAA&#8217;,'BBB&#8217;,'CCC&#8217;),<br />
(8,&#8217;DDD&#8217;,'EEE&#8217;,'FFF&#8217;),<br />
(9,&#8217;JJJ&#8217;,'KKK&#8217;,'LLL&#8217;),<br />
(10,&#8217;JJJ&#8217;,'KKK&#8217;,'LLL&#8217;)</p>
<p>desired result:-</p>
<p>1 GroupA<br />
4 GroupA<br />
7 GroupA<br />
2 GroupB<br />
5 GroupB<br />
8 GroupB<br />
3 GroupC<br />
6 GroupC<br />
9 GroupD<br />
10 GroupD</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ganesh Narim</title>
		<link>http://blog.sqlauthority.com/2012/02/13/sql-server-building-interactive-reports-in-quick-moments-from-csv-to-excel-pivot-table-a-conversation-turned-to-webinar/#comment-252009</link>
		<dc:creator><![CDATA[Ganesh Narim]]></dc:creator>
		<pubDate>Mon, 13 Feb 2012 09:54:44 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=17308#comment-252009</guid>
		<description><![CDATA[Hi Pinal,

Ok i&#039;ll wait for that,

Thanks for your reply.

Can i ask one help..???]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,</p>
<p>Ok i&#8217;ll wait for that,</p>
<p>Thanks for your reply.</p>
<p>Can i ask one help..???</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pinaldave</title>
		<link>http://blog.sqlauthority.com/2012/02/13/sql-server-building-interactive-reports-in-quick-moments-from-csv-to-excel-pivot-table-a-conversation-turned-to-webinar/#comment-252001</link>
		<dc:creator><![CDATA[pinaldave]]></dc:creator>
		<pubDate>Mon, 13 Feb 2012 09:19:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=17308#comment-252001</guid>
		<description><![CDATA[Ganesh,

That is exactly I wrote in my blog post.]]></description>
		<content:encoded><![CDATA[<p>Ganesh,</p>
<p>That is exactly I wrote in my blog post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ganesh Narim</title>
		<link>http://blog.sqlauthority.com/2012/02/13/sql-server-building-interactive-reports-in-quick-moments-from-csv-to-excel-pivot-table-a-conversation-turned-to-webinar/#comment-251884</link>
		<dc:creator><![CDATA[Ganesh Narim]]></dc:creator>
		<pubDate>Mon, 13 Feb 2012 08:10:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=17308#comment-251884</guid>
		<description><![CDATA[Pinal,

after clicking the link it shows like this

&quot;Come Back Later
This Webinar is not yet open to attendees. Please come back at the scheduled time below.

expressor 3.5.2 GA Webinar with guest speaker Pinal Dave
Thursday, February 16, 2012 2:00 PM - 3:00 PM EST&quot;]]></description>
		<content:encoded><![CDATA[<p>Pinal,</p>
<p>after clicking the link it shows like this</p>
<p>&#8220;Come Back Later<br />
This Webinar is not yet open to attendees. Please come back at the scheduled time below.</p>
<p>expressor 3.5.2 GA Webinar with guest speaker Pinal Dave<br />
Thursday, February 16, 2012 2:00 PM &#8211; 3:00 PM EST&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pinaldave</title>
		<link>http://blog.sqlauthority.com/2012/02/13/sql-server-building-interactive-reports-in-quick-moments-from-csv-to-excel-pivot-table-a-conversation-turned-to-webinar/#comment-251830</link>
		<dc:creator><![CDATA[pinaldave]]></dc:creator>
		<pubDate>Mon, 13 Feb 2012 04:23:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=17308#comment-251830</guid>
		<description><![CDATA[Hi Ganesh,

If you are registered you will get email soon with the link.]]></description>
		<content:encoded><![CDATA[<p>Hi Ganesh,</p>
<p>If you are registered you will get email soon with the link.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ganesh Narim</title>
		<link>http://blog.sqlauthority.com/2012/02/13/sql-server-building-interactive-reports-in-quick-moments-from-csv-to-excel-pivot-table-a-conversation-turned-to-webinar/#comment-251822</link>
		<dc:creator><![CDATA[Ganesh Narim]]></dc:creator>
		<pubDate>Mon, 13 Feb 2012 03:32:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=17308#comment-251822</guid>
		<description><![CDATA[Hi Pinal,

Good morning,

It is not opened. after registration also it will not show the conversation. Please check it out.]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,</p>
<p>Good morning,</p>
<p>It is not opened. after registration also it will not show the conversation. Please check it out.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
