<?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/"
		>
<channel>
	<title>Comments for D-Blog</title>
	<atom:link href="http://cubicthoughts.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://cubicthoughts.com</link>
	<description>just about anything...</description>
	<lastBuildDate>Sat, 18 Jun 2011 07:14:15 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on Query to get the column names/types for all tables in SQL 2005 by Orville Starbird</title>
		<link>http://cubicthoughts.com/2009/02/11/query-to-get-the-column-namestypes-for-all-tables-in-sql-2005/comment-page-1/#comment-771</link>
		<dc:creator>Orville Starbird</dc:creator>
		<pubDate>Sat, 18 Jun 2011 07:14:15 +0000</pubDate>
		<guid isPermaLink="false">http://cubicthoughts.com/?p=106#comment-771</guid>
		<description>That  is genuinely a very advantageous read for me, Have to confess you may possibly be 1 in the most efficient bloggers I at any time saw.Thank you for posting this useful report.</description>
		<content:encoded><![CDATA[<p>That  is genuinely a very advantageous read for me, Have to confess you may possibly be 1 in the most efficient bloggers I at any time saw.Thank you for posting this useful report.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using the field name alias in SQL Where clause by Greg Dietrich</title>
		<link>http://cubicthoughts.com/2009/03/17/using-the-field-name-alias-in-sql-where-clause/comment-page-1/#comment-698</link>
		<dc:creator>Greg Dietrich</dc:creator>
		<pubDate>Fri, 22 Jan 2010 17:37:48 +0000</pubDate>
		<guid isPermaLink="false">http://cubicthoughts.com/?p=119#comment-698</guid>
		<description>WOW. Wish I had found this months ago.</description>
		<content:encoded><![CDATA[<p>WOW. Wish I had found this months ago.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Short Course in C# by sonam</title>
		<link>http://cubicthoughts.com/2009/10/20/short-course-in-csharp/comment-page-1/#comment-697</link>
		<dc:creator>sonam</dc:creator>
		<pubDate>Tue, 05 Jan 2010 16:28:20 +0000</pubDate>
		<guid isPermaLink="false">http://cubicthoughts.com/?p=141#comment-697</guid>
		<description>Hi,

Thank you for nice post. Please keep posting such a nice stuff. I would like to introduce another good C# blog, Have a look.

http://CSharpTalk.com
Sonam</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Thank you for nice post. Please keep posting such a nice stuff. I would like to introduce another good C# blog, Have a look.</p>
<p><a href="http://CSharpTalk.com" rel="nofollow">http://CSharpTalk.com</a><br />
Sonam</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using the field name alias in SQL Where clause by Kevin Kelly</title>
		<link>http://cubicthoughts.com/2009/03/17/using-the-field-name-alias-in-sql-where-clause/comment-page-1/#comment-633</link>
		<dc:creator>Kevin Kelly</dc:creator>
		<pubDate>Tue, 11 Aug 2009 19:09:04 +0000</pubDate>
		<guid isPermaLink="false">http://cubicthoughts.com/?p=119#comment-633</guid>
		<description>This is a very cool way to alias a table definition so that the derived columns can be used in the where clause.  This helped me greatly in solving an issue today.  Thanks for posting this tip.</description>
		<content:encoded><![CDATA[<p>This is a very cool way to alias a table definition so that the derived columns can be used in the where clause.  This helped me greatly in solving an issue today.  Thanks for posting this tip.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Query to get the column names/types for all tables in SQL 2005 by Deepak Vasa</title>
		<link>http://cubicthoughts.com/2009/02/11/query-to-get-the-column-namestypes-for-all-tables-in-sql-2005/comment-page-1/#comment-218</link>
		<dc:creator>Deepak Vasa</dc:creator>
		<pubDate>Wed, 18 Mar 2009 05:15:54 +0000</pubDate>
		<guid isPermaLink="false">http://cubicthoughts.com/?p=106#comment-218</guid>
		<description>Thanks Peter, I think the query missed out an = in the where clause (sys.systypes.name = &#039;sysname&#039;). For all the readers out there, please change the sysname above to limit to any data type you want to.</description>
		<content:encoded><![CDATA[<p>Thanks Peter, I think the query missed out an = in the where clause (sys.systypes.name = &#8216;sysname&#8217;). For all the readers out there, please change the sysname above to limit to any data type you want to.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Query to get the column names/types for all tables in SQL 2005 by Peter Vanek</title>
		<link>http://cubicthoughts.com/2009/02/11/query-to-get-the-column-namestypes-for-all-tables-in-sql-2005/comment-page-1/#comment-217</link>
		<dc:creator>Peter Vanek</dc:creator>
		<pubDate>Tue, 17 Mar 2009 11:30:59 +0000</pubDate>
		<guid isPermaLink="false">http://cubicthoughts.com/?p=106#comment-217</guid>
		<description>With this querry, you don&#039;t need the case/when for each possilbe datatype:

SELECT     TOP (100) PERCENT sys.sysobjects.name AS [TABLE], sys.syscolumns.name AS  [COLUMN], sys.systypes.name AS DATATYPE, 
                      sys.syscolumns.length AS SIZE, sys.syscolumns.colorder AS RANK, sys.syscolumns.isnullable AS NULLABLE, 
                      sys.syscolumns.xprec AS PREC, ISNULL(sys.syscolumns.scale, 0) AS SCALE
FROM         sys.sysobjects INNER JOIN
                      sys.syscolumns ON sys.sysobjects.id = sys.syscolumns.id INNER JOIN
                      sys.systypes ON sys.syscolumns.xtype = sys.systypes.xtype
WHERE     (sys.sysobjects.xtype = &#039;U&#039;) AND (sys.systypes.name  &#039;sysname&#039;)
ORDER BY [TABLE], sys.syscolumns.colid</description>
		<content:encoded><![CDATA[<p>With this querry, you don&#8217;t need the case/when for each possilbe datatype:</p>
<p>SELECT     TOP (100) PERCENT sys.sysobjects.name AS [TABLE], sys.syscolumns.name AS  [COLUMN], sys.systypes.name AS DATATYPE,<br />
                      sys.syscolumns.length AS SIZE, sys.syscolumns.colorder AS RANK, sys.syscolumns.isnullable AS NULLABLE,<br />
                      sys.syscolumns.xprec AS PREC, ISNULL(sys.syscolumns.scale, 0) AS SCALE<br />
FROM         sys.sysobjects INNER JOIN<br />
                      sys.syscolumns ON sys.sysobjects.id = sys.syscolumns.id INNER JOIN<br />
                      sys.systypes ON sys.syscolumns.xtype = sys.systypes.xtype<br />
WHERE     (sys.sysobjects.xtype = &#8216;U&#8217;) AND (sys.systypes.name  &#8216;sysname&#8217;)<br />
ORDER BY [TABLE], sys.syscolumns.colid</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Query to get the column names/types for all tables in SQL 2005 by Deepak Vasa</title>
		<link>http://cubicthoughts.com/2009/02/11/query-to-get-the-column-namestypes-for-all-tables-in-sql-2005/comment-page-1/#comment-215</link>
		<dc:creator>Deepak Vasa</dc:creator>
		<pubDate>Mon, 16 Mar 2009 23:00:04 +0000</pubDate>
		<guid isPermaLink="false">http://cubicthoughts.com/?p=106#comment-215</guid>
		<description>Hi Dan,

Thanks for pointing it out. I have updated the post as suggested.

cheers</description>
		<content:encoded><![CDATA[<p>Hi Dan,</p>
<p>Thanks for pointing it out. I have updated the post as suggested.</p>
<p>cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Query to get the column names/types for all tables in SQL 2005 by Dan Howard</title>
		<link>http://cubicthoughts.com/2009/02/11/query-to-get-the-column-namestypes-for-all-tables-in-sql-2005/comment-page-1/#comment-214</link>
		<dc:creator>Dan Howard</dc:creator>
		<pubDate>Mon, 16 Mar 2009 19:29:40 +0000</pubDate>
		<guid isPermaLink="false">http://cubicthoughts.com/?p=106#comment-214</guid>
		<description>This is not copy/pastable. The quotes are smart quotes. Can you put it in plain text?</description>
		<content:encoded><![CDATA[<p>This is not copy/pastable. The quotes are smart quotes. Can you put it in plain text?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Windows 7 Beta on Mac by Windows 7 spreads like a disease &#124; The unblogger</title>
		<link>http://cubicthoughts.com/2009/01/12/windows-7-beta-on-mac/comment-page-1/#comment-138</link>
		<dc:creator>Windows 7 spreads like a disease &#124; The unblogger</dc:creator>
		<pubDate>Mon, 12 Jan 2009 23:35:07 +0000</pubDate>
		<guid isPermaLink="false">http://cubicthoughts.com/?p=98#comment-138</guid>
		<description>[...] for free and you have two weeks to do so. I think I will download it just in case. After, I stumbled upon an Mac user who tried Windows 7. Today I read about how Windows 7 messes with the Antivirus World, [...]</description>
		<content:encoded><![CDATA[<p>[...] for free and you have two weeks to do so. I think I will download it just in case. After, I stumbled upon an Mac user who tried Windows 7. Today I read about how Windows 7 messes with the Antivirus World, [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Row number in GridView &#8212; the best way !!! by Deepak Vasa</title>
		<link>http://cubicthoughts.com/2008/05/30/row-number-in-gridview-the-best-way/comment-page-1/#comment-131</link>
		<dc:creator>Deepak Vasa</dc:creator>
		<pubDate>Mon, 27 Oct 2008 22:13:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.cubicthoughts.com/?p=47#comment-131</guid>
		<description>To add the row number for a GridView with custom paging esp. when using SQL Server 2000:

&lt;asp :TemplateField HeaderText=&quot;No&quot;&gt;
                    &lt;itemtemplate&gt;
                    &lt; %# (((GridView)((GridViewRow)Container).Parent.Parent).PageIndex) * ((GridView)((GridViewRow)Container).Parent.Parent).PageSize + 
                        Container.DataItemIndex + 1 %&gt;
                    &lt;/itemtemplate&gt;
                &lt;/asp&gt;</description>
		<content:encoded><![CDATA[<p>To add the row number for a GridView with custom paging esp. when using SQL Server 2000:</p>
<p><asp :TemplateField HeaderText="No"><br />
                    <itemtemplate><br />
                    < %# (((GridView)((GridViewRow)Container).Parent.Parent).PageIndex) * ((GridView)((GridViewRow)Container).Parent.Parent).PageSize +<br />
                        Container.DataItemIndex + 1 %><br />
                    </itemtemplate><br />
                </asp></p>
]]></content:encoded>
	</item>
</channel>
</rss>

