<?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 The Column With Specific Data Types</title>
	<atom:link href="http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Sun, 12 Feb 2012 09:22:39 +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/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-218482</link>
		<dc:creator><![CDATA[madhivanan]]></dc:creator>
		<pubDate>Thu, 15 Dec 2011 13:43:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-218482</guid>
		<description><![CDATA[See if this helps
http://beyondrelational.com/blogs/madhivanan/archive/2009/12/14/search-a-value-in-character-column-of-all-tables.aspx]]></description>
		<content:encoded><![CDATA[<p>See if this helps<br />
<a href="http://beyondrelational.com/blogs/madhivanan/archive/2009/12/14/search-a-value-in-character-column-of-all-tables.aspx" rel="nofollow">http://beyondrelational.com/blogs/madhivanan/archive/2009/12/14/search-a-value-in-character-column-of-all-tables.aspx</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pramod Patil</title>
		<link>http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-217356</link>
		<dc:creator><![CDATA[Pramod Patil]]></dc:creator>
		<pubDate>Wed, 14 Dec 2011 06:45:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-217356</guid>
		<description><![CDATA[i want Search text in any Column of Specify Table ,

I want that text which Column ::

How do I]]></description>
		<content:encoded><![CDATA[<p>i want Search text in any Column of Specify Table ,</p>
<p>I want that text which Column ::</p>
<p>How do I</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anand</title>
		<link>http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-136387</link>
		<dc:creator><![CDATA[Anand]]></dc:creator>
		<pubDate>Tue, 24 May 2011 11:58:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-136387</guid>
		<description><![CDATA[Hi Guys,
Have any idea to alter the system data type.

Exp:
UPDATE INFORMATION_SCHEMA.COLUMNS SET NUMERIC_PRECISION=18,NUMERIC_SCALE=2
WHERE DATA_TYPE = &#039;decimal&#039;]]></description>
		<content:encoded><![CDATA[<p>Hi Guys,<br />
Have any idea to alter the system data type.</p>
<p>Exp:<br />
UPDATE INFORMATION_SCHEMA.COLUMNS SET NUMERIC_PRECISION=18,NUMERIC_SCALE=2<br />
WHERE DATA_TYPE = &#8216;decimal&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhivanan</title>
		<link>http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-121658</link>
		<dc:creator><![CDATA[madhivanan]]></dc:creator>
		<pubDate>Thu, 03 Mar 2011 08:39:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-121658</guid>
		<description><![CDATA[That format matters only if you want to show them in a front end application. Why do you want to have data in such format?]]></description>
		<content:encoded><![CDATA[<p>That format matters only if you want to show them in a front end application. Why do you want to have data in such format?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raja</title>
		<link>http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-121173</link>
		<dc:creator><![CDATA[Raja]]></dc:creator>
		<pubDate>Mon, 28 Feb 2011 10:30:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-121173</guid>
		<description><![CDATA[Hi Guys,

nice post, I want a result in the following format

TableName
----------

columnName  datatype  Length
test1                     int        4

TableName
---------------
columnName  datatype  Length
test2                    int        4]]></description>
		<content:encoded><![CDATA[<p>Hi Guys,</p>
<p>nice post, I want a result in the following format</p>
<p>TableName<br />
&#8212;&#8212;&#8212;-</p>
<p>columnName  datatype  Length<br />
test1                     int        4</p>
<p>TableName<br />
&#8212;&#8212;&#8212;&#8212;&#8212;<br />
columnName  datatype  Length<br />
test2                    int        4</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ludovic T-C</title>
		<link>http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-95701</link>
		<dc:creator><![CDATA[Ludovic T-C]]></dc:creator>
		<pubDate>Mon, 25 Oct 2010 11:34:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-95701</guid>
		<description><![CDATA[I wanted to find out what the column data types were for the view sys.databases.  

To return the column data types for this view, use Pinal&#039;s Script 2 above, but query &quot;sys.all_columns&quot; instead of &quot;sys.columns&quot;.  

To return only the columns for sys.databases, add:

WHERE object_name(c.OBJECT_ID) = &#039;sysdatabases&#039;

before the ORDER BY.]]></description>
		<content:encoded><![CDATA[<p>I wanted to find out what the column data types were for the view sys.databases.  </p>
<p>To return the column data types for this view, use Pinal&#8217;s Script 2 above, but query &#8220;sys.all_columns&#8221; instead of &#8220;sys.columns&#8221;.  </p>
<p>To return only the columns for sys.databases, add:</p>
<p>WHERE object_name(c.OBJECT_ID) = &#8216;sysdatabases&#8217;</p>
<p>before the ORDER BY.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sabby</title>
		<link>http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-85697</link>
		<dc:creator><![CDATA[Sabby]]></dc:creator>
		<pubDate>Mon, 30 Aug 2010 23:07:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-85697</guid>
		<description><![CDATA[Hi, 
In addition to this script can i add another column that states what exactly is the data length (not declared length), that means concatenating MAX( DataLength(ColumnName)) function]]></description>
		<content:encoded><![CDATA[<p>Hi,<br />
In addition to this script can i add another column that states what exactly is the data length (not declared length), that means concatenating MAX( DataLength(ColumnName)) function</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Staffan Hedström</title>
		<link>http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-85207</link>
		<dc:creator><![CDATA[Staffan Hedström]]></dc:creator>
		<pubDate>Wed, 25 Aug 2010 09:04:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-85207</guid>
		<description><![CDATA[Thanks for the script, you saved me an hour!]]></description>
		<content:encoded><![CDATA[<p>Thanks for the script, you saved me an hour!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: swathi</title>
		<link>http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-81867</link>
		<dc:creator><![CDATA[swathi]]></dc:creator>
		<pubDate>Tue, 27 Jul 2010 15:14:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-81867</guid>
		<description><![CDATA[Remisha - Thank you for the query, it&#039;s really handy.]]></description>
		<content:encoded><![CDATA[<p>Remisha &#8211; Thank you for the query, it&#8217;s really handy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: giri</title>
		<link>http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-80169</link>
		<dc:creator><![CDATA[giri]]></dc:creator>
		<pubDate>Wed, 14 Jul 2010 05:15:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-80169</guid>
		<description><![CDATA[what is the datatype for email in sql 2005???]]></description>
		<content:encoded><![CDATA[<p>what is the datatype for email in sql 2005???</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tushar</title>
		<link>http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-75353</link>
		<dc:creator><![CDATA[Tushar]]></dc:creator>
		<pubDate>Wed, 09 Jun 2010 18:24:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-75353</guid>
		<description><![CDATA[I have a question,
 
In oracle, I can define variable&#039;s datatype using another table’s column datatype in procedure or function.. (see the example) can you help me find it out similar things in sql server 2005? Thanks in an advance. 

Example:

eno in emp.empno%type,
name out emp.ename%type,
job out emp.job%type, 
salary out emp.sal%type, 
location out dept.loc%type



create or replace procedure display (
eno in emp.empno%type,
name out emp.ename%type,
job out emp.job%type, 
salary out emp.sal%type, 
location out dept.loc%type
)
is
begin
select ename,job,sal,loc into name,job,salary,location from emp e,dept d
where e.deptno=d.deptno AND empno=eno;
end;]]></description>
		<content:encoded><![CDATA[<p>I have a question,</p>
<p>In oracle, I can define variable&#8217;s datatype using another table’s column datatype in procedure or function.. (see the example) can you help me find it out similar things in sql server 2005? Thanks in an advance. </p>
<p>Example:</p>
<p>eno in emp.empno%type,<br />
name out emp.ename%type,<br />
job out emp.job%type,<br />
salary out emp.sal%type,<br />
location out dept.loc%type</p>
<p>create or replace procedure display (<br />
eno in emp.empno%type,<br />
name out emp.ename%type,<br />
job out emp.job%type,<br />
salary out emp.sal%type,<br />
location out dept.loc%type<br />
)<br />
is<br />
begin<br />
select ename,job,sal,loc into name,job,salary,location from emp e,dept d<br />
where e.deptno=d.deptno AND empno=eno;<br />
end;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adi</title>
		<link>http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-63030</link>
		<dc:creator><![CDATA[Adi]]></dc:creator>
		<pubDate>Wed, 17 Mar 2010 01:58:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-63030</guid>
		<description><![CDATA[How to get the x and y value as the length value entered in nVarChar(x) and numeric(x,y). Thanks]]></description>
		<content:encoded><![CDATA[<p>How to get the x and y value as the length value entered in nVarChar(x) and numeric(x,y). Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joaquim Félix</title>
		<link>http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-61884</link>
		<dc:creator><![CDATA[Joaquim Félix]]></dc:creator>
		<pubDate>Sat, 27 Feb 2010 12:47:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-61884</guid>
		<description><![CDATA[@Madhivanan

Madhivanan sorry for the late reply.
My first idea was, similarly to this post, to determine the User Stored Procedures (USP) and User Defined Functions (UDF) that had a specific data type in it&#039;s parameters.
However, after reading your post, the same idea applied to the variables used inside the code would also be nice, since the main purpose is to replace old or deprecated data types with new or enhanced ones.
Regards.]]></description>
		<content:encoded><![CDATA[<p>@Madhivanan</p>
<p>Madhivanan sorry for the late reply.<br />
My first idea was, similarly to this post, to determine the User Stored Procedures (USP) and User Defined Functions (UDF) that had a specific data type in it&#8217;s parameters.<br />
However, after reading your post, the same idea applied to the variables used inside the code would also be nice, since the main purpose is to replace old or deprecated data types with new or enhanced ones.<br />
Regards.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sekhar</title>
		<link>http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-61638</link>
		<dc:creator><![CDATA[sekhar]]></dc:creator>
		<pubDate>Tue, 23 Feb 2010 13:12:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-61638</guid>
		<description><![CDATA[how can i get the exact size of the column along with column name and datatype]]></description>
		<content:encoded><![CDATA[<p>how can i get the exact size of the column along with column name and datatype</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Madhivanan</title>
		<link>http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-61361</link>
		<dc:creator><![CDATA[Madhivanan]]></dc:creator>
		<pubDate>Wed, 17 Feb 2010 13:49:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-61361</guid>
		<description><![CDATA[Joaquim Félix,

Do you want to know the parameters or the scripts?]]></description>
		<content:encoded><![CDATA[<p>Joaquim Félix,</p>
<p>Do you want to know the parameters or the scripts?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joaquim Félix</title>
		<link>http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-61192</link>
		<dc:creator><![CDATA[Joaquim Félix]]></dc:creator>
		<pubDate>Mon, 15 Feb 2010 14:58:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-61192</guid>
		<description><![CDATA[Very handy script. This one goes strait to my favourites list.
Is it possible to apply the same concept to User Stored Procedures and User Defined Functions?
That would also be very nice.]]></description>
		<content:encoded><![CDATA[<p>Very handy script. This one goes strait to my favourites list.<br />
Is it possible to apply the same concept to User Stored Procedures and User Defined Functions?<br />
That would also be very nice.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Remisha</title>
		<link>http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-59884</link>
		<dc:creator><![CDATA[Remisha]]></dc:creator>
		<pubDate>Mon, 18 Jan 2010 10:46:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-59884</guid>
		<description><![CDATA[SELECT   SysObjects.[Name] as TableName,   
	SysColumns.[Name] as ColumnName,   
	SysTypes.[Name] As DataType,   
	SysColumns.[Length] As Length   
FROM   
	SysObjects INNER JOIN SysColumns   
ON SysObjects.[Id] = SysColumns.[Id]   
	INNER JOIN SysTypes  
ON SysTypes.[xtype] = SysColumns.[xtype]  
WHERE  SysObjects.[type] = &#039;U&#039;  
ORDER BY  SysObjects.[Name]]]></description>
		<content:encoded><![CDATA[<p>SELECT   SysObjects.[Name] as TableName,<br />
	SysColumns.[Name] as ColumnName,<br />
	SysTypes.[Name] As DataType,<br />
	SysColumns.[Length] As Length<br />
FROM<br />
	SysObjects INNER JOIN SysColumns<br />
ON SysObjects.[Id] = SysColumns.[Id]<br />
	INNER JOIN SysTypes<br />
ON SysTypes.[xtype] = SysColumns.[xtype]<br />
WHERE  SysObjects.[type] = &#8216;U&#8217;<br />
ORDER BY  SysObjects.[Name]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sreedhar</title>
		<link>http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-45639</link>
		<dc:creator><![CDATA[Sreedhar]]></dc:creator>
		<pubDate>Thu, 15 Jan 2009 13:13:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-45639</guid>
		<description><![CDATA[need some help in Sqlserver.
I need a script file to change table column datatype from int to bigint when the two tables are associated with foreign key , I try to disable the foreign key in the child table  and they try to alter but it did not work]]></description>
		<content:encoded><![CDATA[<p>need some help in Sqlserver.<br />
I need a script file to change table column datatype from int to bigint when the two tables are associated with foreign key , I try to disable the foreign key in the child table  and they try to alter but it did not work</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SWAPNA</title>
		<link>http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-45572</link>
		<dc:creator><![CDATA[SWAPNA]]></dc:creator>
		<pubDate>Tue, 13 Jan 2009 11:49:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-45572</guid>
		<description><![CDATA[HELLO

Is there any procedure that can alter all my columns in the database from int to nvarchar and float to nvarchar
Thanks in advance]]></description>
		<content:encoded><![CDATA[<p>HELLO</p>
<p>Is there any procedure that can alter all my columns in the database from int to nvarchar and float to nvarchar<br />
Thanks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vineet</title>
		<link>http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-45309</link>
		<dc:creator><![CDATA[vineet]]></dc:creator>
		<pubDate>Sat, 03 Jan 2009 09:19:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-45309</guid>
		<description><![CDATA[Hi All 

i have a column which is a computed column (when click on Table+ look in column DataType) It showes me Computed. I have no of such columns in my database.
With a SQL statement how do i get list of such columns.

Thanks]]></description>
		<content:encoded><![CDATA[<p>Hi All </p>
<p>i have a column which is a computed column (when click on Table+ look in column DataType) It showes me Computed. I have no of such columns in my database.<br />
With a SQL statement how do i get list of such columns.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Naren Sangu</title>
		<link>http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-44697</link>
		<dc:creator><![CDATA[Naren Sangu]]></dc:creator>
		<pubDate>Wed, 10 Dec 2008 16:32:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-44697</guid>
		<description><![CDATA[Hello Sir,
I need some help.
Is there any procedure that can alter my columns in the database from chanr to nchar,varchar to nvarchar and text to ntext
Thanks in advance]]></description>
		<content:encoded><![CDATA[<p>Hello Sir,<br />
I need some help.<br />
Is there any procedure that can alter my columns in the database from chanr to nchar,varchar to nvarchar and text to ntext<br />
Thanks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe</title>
		<link>http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-43460</link>
		<dc:creator><![CDATA[Joe]]></dc:creator>
		<pubDate>Thu, 02 Oct 2008 19:49:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-43460</guid>
		<description><![CDATA[Hmmm, information_schema.columns displays the view columns.]]></description>
		<content:encoded><![CDATA[<p>Hmmm, information_schema.columns displays the view columns.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Puneet</title>
		<link>http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-39042</link>
		<dc:creator><![CDATA[Puneet]]></dc:creator>
		<pubDate>Fri, 06 Jun 2008 05:12:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-39042</guid>
		<description><![CDATA[Need to know the best practices for testing Database schema.]]></description>
		<content:encoded><![CDATA[<p>Need to know the best practices for testing Database schema.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Puneet</title>
		<link>http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-39041</link>
		<dc:creator><![CDATA[Puneet]]></dc:creator>
		<pubDate>Fri, 06 Jun 2008 05:10:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-39041</guid>
		<description><![CDATA[hi, could u please let me know that how can we find the duplicate columns in aprox 30 tables of same schema. based on name.]]></description>
		<content:encoded><![CDATA[<p>hi, could u please let me know that how can we find the duplicate columns in aprox 30 tables of same schema. based on name.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rem</title>
		<link>http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-38834</link>
		<dc:creator><![CDATA[rem]]></dc:creator>
		<pubDate>Tue, 27 May 2008 19:26:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/09/sql-server-2005-list-all-the-column-with-specific-data-types/#comment-38834</guid>
		<description><![CDATA[The problem I am having with this wonderful script is it does not go down to View level ie it does not list views - is there a fix to that ?

Thanks]]></description>
		<content:encoded><![CDATA[<p>The problem I am having with this wonderful script is it does not go down to View level ie it does not list views &#8211; is there a fix to that ?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>

