<?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 on: MsSql lacks describe statement</title>
	<atom:link href="http://www.crydust.be/blog/2006/12/26/mssql-lacks-describe-statement/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.crydust.be/blog/2006/12/26/mssql-lacks-describe-statement/</link>
	<description>yet another webdev blog</description>
	<lastBuildDate>Tue, 02 Jun 2009 09:37:04 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
	<item>
		<title>By: Kristof Neirynck</title>
		<link>http://www.crydust.be/blog/2006/12/26/mssql-lacks-describe-statement/comment-page-1/#comment-27610</link>
		<dc:creator>Kristof Neirynck</dc:creator>
		<pubDate>Tue, 05 Aug 2008 10:49:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.crydust.be/blog/2006/12/26/mssql-lacks-describe-statement/#comment-27610</guid>
		<description>&lt;p&gt;@acn: You probably mean&lt;/p&gt;
&lt;pre&gt;
exec sp_columns tablename
&lt;/pre&gt;
&lt;p&gt;or even better&lt;/p&gt;
&lt;pre&gt;
exec sp_columns tablename, @column_name = &#039;foo&#039;
&lt;/pre&gt;
&lt;p&gt;This indeed works.&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>@acn: You probably mean</p>
<pre>
exec sp_columns tablename
</pre>
<p>or even better</p>
<pre>
exec sp_columns tablename, @column_name = 'foo'
</pre>
<p>This indeed works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: acn</title>
		<link>http://www.crydust.be/blog/2006/12/26/mssql-lacks-describe-statement/comment-page-1/#comment-27608</link>
		<dc:creator>acn</dc:creator>
		<pubDate>Mon, 04 Aug 2008 20:13:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.crydust.be/blog/2006/12/26/mssql-lacks-describe-statement/#comment-27608</guid>
		<description>sp_columns tablename

is equivalent command for DESC from Oracle.

MS-sql doesnot lack desc</description>
		<content:encoded><![CDATA[<p>sp_columns tablename</p>
<p>is equivalent command for DESC from Oracle.</p>
<p>MS-sql doesnot lack desc</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Renith Ravindran</title>
		<link>http://www.crydust.be/blog/2006/12/26/mssql-lacks-describe-statement/comment-page-1/#comment-27605</link>
		<dc:creator>Renith Ravindran</dc:creator>
		<pubDate>Sat, 02 Aug 2008 06:17:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.crydust.be/blog/2006/12/26/mssql-lacks-describe-statement/#comment-27605</guid>
		<description>Nice one... Still we can modify this to short as follows...

select column_name,data_type from information_schema.columns where table_name = &#039;your table name&#039;;</description>
		<content:encoded><![CDATA[<p>Nice one&#8230; Still we can modify this to short as follows&#8230;</p>
<p>select column_name,data_type from information_schema.columns where table_name = &#8216;your table name&#8217;;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ramesh Marikhu</title>
		<link>http://www.crydust.be/blog/2006/12/26/mssql-lacks-describe-statement/comment-page-1/#comment-27577</link>
		<dc:creator>Ramesh Marikhu</dc:creator>
		<pubDate>Fri, 01 Aug 2008 07:14:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.crydust.be/blog/2006/12/26/mssql-lacks-describe-statement/#comment-27577</guid>
		<description>Nice one. Did not know MSSQL lacked DESCRIBE capability. Thanks.</description>
		<content:encoded><![CDATA[<p>Nice one. Did not know MSSQL lacked DESCRIBE capability. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Boštjan</title>
		<link>http://www.crydust.be/blog/2006/12/26/mssql-lacks-describe-statement/comment-page-1/#comment-26441</link>
		<dc:creator>Boštjan</dc:creator>
		<pubDate>Tue, 24 Jun 2008 11:27:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.crydust.be/blog/2006/12/26/mssql-lacks-describe-statement/#comment-26441</guid>
		<description>Nice solution! Thanks</description>
		<content:encoded><![CDATA[<p>Nice solution! Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: HumanisticJones</title>
		<link>http://www.crydust.be/blog/2006/12/26/mssql-lacks-describe-statement/comment-page-1/#comment-18270</link>
		<dc:creator>HumanisticJones</dc:creator>
		<pubDate>Wed, 12 Mar 2008 19:36:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.crydust.be/blog/2006/12/26/mssql-lacks-describe-statement/#comment-18270</guid>
		<description>Thanks for posting this.  You just saved me hours of banging my head against a pesky MSSQL db.</description>
		<content:encoded><![CDATA[<p>Thanks for posting this.  You just saved me hours of banging my head against a pesky MSSQL db.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: S Halayka</title>
		<link>http://www.crydust.be/blog/2006/12/26/mssql-lacks-describe-statement/comment-page-1/#comment-10569</link>
		<dc:creator>S Halayka</dc:creator>
		<pubDate>Wed, 28 Nov 2007 19:19:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.crydust.be/blog/2006/12/26/mssql-lacks-describe-statement/#comment-10569</guid>
		<description>Thank you, this is great.</description>
		<content:encoded><![CDATA[<p>Thank you, this is great.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Duane Zamrok</title>
		<link>http://www.crydust.be/blog/2006/12/26/mssql-lacks-describe-statement/comment-page-1/#comment-5576</link>
		<dc:creator>Duane Zamrok</dc:creator>
		<pubDate>Mon, 30 Jul 2007 17:52:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.crydust.be/blog/2006/12/26/mssql-lacks-describe-statement/#comment-5576</guid>
		<description>Thank you very much. It&#039;s is very refreshing to find a result that is upfront and straight to the point for once.

-Duane</description>
		<content:encoded><![CDATA[<p>Thank you very much. It&#8217;s is very refreshing to find a result that is upfront and straight to the point for once.</p>
<p>-Duane</p>
]]></content:encoded>
	</item>
</channel>
</rss>

