<?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; 2005 &#8211; List All Column With Indentity Key In Specific Database</title>
	<atom:link href="http://blog.sqlauthority.com/2008/03/29/sql-server-2005-list-all-column-with-indentity-key-in-specific-database/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2008/03/29/sql-server-2005-list-all-column-with-indentity-key-in-specific-database/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Fri, 10 Feb 2012 04:45:32 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Madhivanan</title>
		<link>http://blog.sqlauthority.com/2008/03/29/sql-server-2005-list-all-column-with-indentity-key-in-specific-database/#comment-63159</link>
		<dc:creator><![CDATA[Madhivanan]]></dc:creator>
		<pubDate>Thu, 18 Mar 2010 09:23:16 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=552#comment-63159</guid>
		<description><![CDATA[Another method that works in all versions is

select table_schema, table_name,column_name from information_schema.columns
where columnproperty(object_id(table_name),column_name,&#039;IsIdentity&#039;)=1
order by table_schema, table_name]]></description>
		<content:encoded><![CDATA[<p>Another method that works in all versions is</p>
<p>select table_schema, table_name,column_name from information_schema.columns<br />
where columnproperty(object_id(table_name),column_name,&#8217;IsIdentity&#8217;)=1<br />
order by table_schema, table_name</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim</title>
		<link>http://blog.sqlauthority.com/2008/03/29/sql-server-2005-list-all-column-with-indentity-key-in-specific-database/#comment-39971</link>
		<dc:creator><![CDATA[Tim]]></dc:creator>
		<pubDate>Wed, 09 Jul 2008 13:41:36 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=552#comment-39971</guid>
		<description><![CDATA[This will provide you with the columns that have Identity insert on, but not the Key columns]]></description>
		<content:encoded><![CDATA[<p>This will provide you with the columns that have Identity insert on, but not the Key columns</p>
]]></content:encoded>
	</item>
</channel>
</rss>

