<?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; Change Order of Column In Database Tables</title>
	<atom:link href="http://blog.sqlauthority.com/2008/04/08/sql-server-change-order-of-column-in-database-tables/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2008/04/08/sql-server-change-order-of-column-in-database-tables/</link>
	<description>Notes of a SQL Server MVP and Database Administrator</description>
	<lastBuildDate>Sat, 21 Nov 2009 05:54:09 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: pinaldave</title>
		<link>http://blog.sqlauthority.com/2008/04/08/sql-server-change-order-of-column-in-database-tables/#comment-46239</link>
		<dc:creator>pinaldave</dc:creator>
		<pubDate>Mon, 02 Feb 2009 13:48:27 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=562#comment-46239</guid>
		<description>@alendra,
Please read the article, there is no such query.

Regards,
Pinal</description>
		<content:encoded><![CDATA[<p>@alendra,<br />
Please read the article, there is no such query.</p>
<p>Regards,<br />
Pinal</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: alendra</title>
		<link>http://blog.sqlauthority.com/2008/04/08/sql-server-change-order-of-column-in-database-tables/#comment-46237</link>
		<dc:creator>alendra</dc:creator>
		<pubDate>Mon, 02 Feb 2009 13:19:39 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=562#comment-46237</guid>
		<description>what is  the query for that changing the order of columns in a table</description>
		<content:encoded><![CDATA[<p>what is  the query for that changing the order of columns in a table</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jerry Hung</title>
		<link>http://blog.sqlauthority.com/2008/04/08/sql-server-change-order-of-column-in-database-tables/#comment-38122</link>
		<dc:creator>Jerry Hung</dc:creator>
		<pubDate>Thu, 15 May 2008 14:42:12 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=562#comment-38122</guid>
		<description>One shouldn&#039;t really change the order too often

I remember when we had to swap Latitude &amp; Longitude columns, it was a mess, so we just ended up renaming the column names. 
It&#039;s weird to see column1, Longitude, Latitude, column2 order though

SSMS sucks because it creates a TEMP table
copy everything from old table to TEMP
then rename TEMP table to your old table name
It ALWAYS times out if there is a lot of data

Do it in SQL Scripts</description>
		<content:encoded><![CDATA[<p>One shouldn&#8217;t really change the order too often</p>
<p>I remember when we had to swap Latitude &amp; Longitude columns, it was a mess, so we just ended up renaming the column names.<br />
It&#8217;s weird to see column1, Longitude, Latitude, column2 order though</p>
<p>SSMS sucks because it creates a TEMP table<br />
copy everything from old table to TEMP<br />
then rename TEMP table to your old table name<br />
It ALWAYS times out if there is a lot of data</p>
<p>Do it in SQL Scripts</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: suba ganesh</title>
		<link>http://blog.sqlauthority.com/2008/04/08/sql-server-change-order-of-column-in-database-tables/#comment-37174</link>
		<dc:creator>suba ganesh</dc:creator>
		<pubDate>Wed, 07 May 2008 09:46:29 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=562#comment-37174</guid>
		<description>wats the query for that &#039;changing the order of columns in a table&#039;</description>
		<content:encoded><![CDATA[<p>wats the query for that &#8216;changing the order of columns in a table&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ob</title>
		<link>http://blog.sqlauthority.com/2008/04/08/sql-server-change-order-of-column-in-database-tables/#comment-35415</link>
		<dc:creator>ob</dc:creator>
		<pubDate>Wed, 23 Apr 2008 16:53:25 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=562#comment-35415</guid>
		<description>When I add new column in Management Studio, my change times out after about one minute. How to prevent it?</description>
		<content:encoded><![CDATA[<p>When I add new column in Management Studio, my change times out after about one minute. How to prevent it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott</title>
		<link>http://blog.sqlauthority.com/2008/04/08/sql-server-change-order-of-column-in-database-tables/#comment-35068</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Mon, 14 Apr 2008 20:24:32 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=562#comment-35068</guid>
		<description>Thanks for the post. I thought it was a good question. I personally like to have a rhythm and reason to the order of columns, especially when printing out a diagram of the database. I wish there was a better way of doing it instead of locking the table or creating a new table and deleting the old. Thanks for the posts.</description>
		<content:encoded><![CDATA[<p>Thanks for the post. I thought it was a good question. I personally like to have a rhythm and reason to the order of columns, especially when printing out a diagram of the database. I wish there was a better way of doing it instead of locking the table or creating a new table and deleting the old. Thanks for the posts.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
