<?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:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Mehroz's Experiments</title>
	<atom:link href="http://smehrozalam.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://smehrozalam.wordpress.com</link>
	<description>My computational experiments, mostly related to .Net and SQL server, to be posted here</description>
	<lastBuildDate>Wed, 11 Nov 2009 07:05:24 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Running MS Virtual PC 2007 on Windows 7 RC by M.S.</title>
		<link>http://smehrozalam.wordpress.com/2009/07/27/running-ms-virtual-pc-2007-on-windows-7-rc/#comment-417</link>
		<dc:creator>M.S.</dc:creator>
		<pubDate>Wed, 11 Nov 2009 07:05:24 +0000</pubDate>
		<guid isPermaLink="false">http://smehrozalam.wordpress.com/?p=513#comment-417</guid>
		<description>Thank you so much! I couldn&#039;t install Microsoft Virtual PC 2007 with the same error for a long time. This helped me!</description>
		<content:encoded><![CDATA[<p>Thank you so much! I couldn&#8217;t install Microsoft Virtual PC 2007 with the same error for a long time. This helped me!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SSRS: Another way to use DataSet fields in page header/footer by Mudassar</title>
		<link>http://smehrozalam.wordpress.com/2008/12/07/ssrs-another-way-to-use-dataset-fields-in-page-headerfooter/#comment-415</link>
		<dc:creator>Mudassar</dc:creator>
		<pubDate>Thu, 05 Nov 2009 08:42:31 +0000</pubDate>
		<guid isPermaLink="false">http://smehrozalam.wordpress.com/?p=55#comment-415</guid>
		<description>It isn&#039;t better to use hidden/internal parameter with default values set to read from dataset.</description>
		<content:encoded><![CDATA[<p>It isn&#8217;t better to use hidden/internal parameter with default values set to read from dataset.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Saving data-objects to Isolated Storage in Silverlight by Steve</title>
		<link>http://smehrozalam.wordpress.com/2009/02/10/saving-data-objects-to-isolated-storage-in-silverlight/#comment-414</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Wed, 04 Nov 2009 10:14:43 +0000</pubDate>
		<guid isPermaLink="false">http://smehrozalam.wordpress.com/?p=202#comment-414</guid>
		<description>Nice, thx.</description>
		<content:encoded><![CDATA[<p>Nice, thx.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on T-SQL: Using result of a dynamic SQL query in a variable or table by Syed Mehroz Alam</title>
		<link>http://smehrozalam.wordpress.com/2009/10/14/t-sql-using-result-of-a-dynamic-sql-query-in-a-variable-or-table/#comment-409</link>
		<dc:creator>Syed Mehroz Alam</dc:creator>
		<pubDate>Sun, 01 Nov 2009 16:30:31 +0000</pubDate>
		<guid isPermaLink="false">http://smehrozalam.wordpress.com/?p=688#comment-409</guid>
		<description>Hi Ads, 

You can use &lt;a href=&quot;http://technet.microsoft.com/en-us/library/ms190750.aspx&quot; rel=&quot;nofollow&quot;&gt;select into&lt;/a&gt; to insert the result to a temporary table, but you will not be able to consume that temporary table in the main query. Here&#039;s an example demonstrating this: 

[sourcecode language=&quot;sql&quot;]
declare @dynamicSQL varchar(max)


set @dynamicSQL = &#039;
--select query returning any no. of columns
select getdate() as [Date], newid() as GUID, &#039;&#039;test&#039;&#039; as Text, 123 as Number
into #temporaryTable 

--select from temp table can be done inside the dynamic query 
select * from #temporaryTable
&#039;

--execute sql
exec( @dynamicSQL )

--can&#039;t use that temporary table outside
select * from #temporaryTable --error: Invalid object name &#039;#temporaryTable&#039;
[/sourcecode]</description>
		<content:encoded><![CDATA[<p>Hi Ads, </p>
<p>You can use <a href="http://technet.microsoft.com/en-us/library/ms190750.aspx" rel="nofollow">select into</a> to insert the result to a temporary table, but you will not be able to consume that temporary table in the main query. Here&#8217;s an example demonstrating this: </p>
<pre class="brush: sql;">
declare @dynamicSQL varchar(max)

set @dynamicSQL = '
--select query returning any no. of columns
select getdate() as [Date], newid() as GUID, ''test'' as Text, 123 as Number
into #temporaryTable 

--select from temp table can be done inside the dynamic query
select * from #temporaryTable
'

--execute sql
exec( @dynamicSQL )

--can't use that temporary table outside
select * from #temporaryTable --error: Invalid object name '#temporaryTable'
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on T-SQL: Using result of a dynamic SQL query in a variable or table by Ads</title>
		<link>http://smehrozalam.wordpress.com/2009/10/14/t-sql-using-result-of-a-dynamic-sql-query-in-a-variable-or-table/#comment-393</link>
		<dc:creator>Ads</dc:creator>
		<pubDate>Fri, 30 Oct 2009 09:42:23 +0000</pubDate>
		<guid isPermaLink="false">http://smehrozalam.wordpress.com/?p=688#comment-393</guid>
		<description>hmm... do you know of a way to insert the resultset from a dynamic piece of sql into a temporary table, not knowing how many columns are in that resultset?</description>
		<content:encoded><![CDATA[<p>hmm&#8230; do you know of a way to insert the resultset from a dynamic piece of sql into a temporary table, not knowing how many columns are in that resultset?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Running MS Virtual PC 2007 on Windows 7 RC by Syed Mehroz Alam</title>
		<link>http://smehrozalam.wordpress.com/2009/07/27/running-ms-virtual-pc-2007-on-windows-7-rc/#comment-391</link>
		<dc:creator>Syed Mehroz Alam</dc:creator>
		<pubDate>Fri, 30 Oct 2009 05:17:14 +0000</pubDate>
		<guid isPermaLink="false">http://smehrozalam.wordpress.com/?p=513#comment-391</guid>
		<description>Hi Steve, 

XP mode is supported via Windows Virtual PC while this post describes how to run Microsoft Virtual PC 2007 on Windows 7. These are two separate products.</description>
		<content:encoded><![CDATA[<p>Hi Steve, </p>
<p>XP mode is supported via Windows Virtual PC while this post describes how to run Microsoft Virtual PC 2007 on Windows 7. These are two separate products.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Running MS Virtual PC 2007 on Windows 7 RC by Steve</title>
		<link>http://smehrozalam.wordpress.com/2009/07/27/running-ms-virtual-pc-2007-on-windows-7-rc/#comment-390</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Fri, 30 Oct 2009 00:23:31 +0000</pubDate>
		<guid isPermaLink="false">http://smehrozalam.wordpress.com/?p=513#comment-390</guid>
		<description>Will this solution work with xp mode</description>
		<content:encoded><![CDATA[<p>Will this solution work with xp mode</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Silverlight: Update service reference for a WCF service generating empty class by DotNetBurner - Silverlight</title>
		<link>http://smehrozalam.wordpress.com/2009/10/29/silverlight-update-service-reference-for-a-wcf-service-generting-empty-class/#comment-389</link>
		<dc:creator>DotNetBurner - Silverlight</dc:creator>
		<pubDate>Thu, 29 Oct 2009 17:57:39 +0000</pubDate>
		<guid isPermaLink="false">http://smehrozalam.wordpress.com/?p=717#comment-389</guid>
		<description>&lt;strong&gt;Silverlight: Update service reference for a WCF service generting empty class « Mehroz’s Experiments...&lt;/strong&gt;

DotNetBurner - burning hot .NET content...</description>
		<content:encoded><![CDATA[<p><strong>Silverlight: Update service reference for a WCF service generting empty class « Mehroz’s Experiments&#8230;</strong></p>
<p>DotNetBurner &#8211; burning hot .NET content&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Silverlight: Update service reference for a WCF service generating empty class by DotNetShoutout</title>
		<link>http://smehrozalam.wordpress.com/2009/10/29/silverlight-update-service-reference-for-a-wcf-service-generting-empty-class/#comment-388</link>
		<dc:creator>DotNetShoutout</dc:creator>
		<pubDate>Thu, 29 Oct 2009 17:55:56 +0000</pubDate>
		<guid isPermaLink="false">http://smehrozalam.wordpress.com/?p=717#comment-388</guid>
		<description>&lt;strong&gt;Silverlight: Update service reference for a WCF service generting empty class « Mehroz’s Experiments...&lt;/strong&gt;

Thank you for submitting this cool story - Trackback from DotNetShoutout...</description>
		<content:encoded><![CDATA[<p><strong>Silverlight: Update service reference for a WCF service generting empty class « Mehroz’s Experiments&#8230;</strong></p>
<p>Thank you for submitting this cool story &#8211; Trackback from DotNetShoutout&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Beginning MVVM: The Basics by Arxisos</title>
		<link>http://smehrozalam.wordpress.com/2009/03/11/beginning-mvvm-the-basics/#comment-387</link>
		<dc:creator>Arxisos</dc:creator>
		<pubDate>Wed, 28 Oct 2009 20:54:21 +0000</pubDate>
		<guid isPermaLink="false">http://smehrozalam.wordpress.com/?p=232#comment-387</guid>
		<description>Thank you for this great article. Now i understand MVVM much better!</description>
		<content:encoded><![CDATA[<p>Thank you for this great article. Now i understand MVVM much better!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
