<?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; How to Rename a Column Name or Table Name</title>
	<atom:link href="http://blog.sqlauthority.com/2008/08/26/sql-server-how-to-rename-a-column-name-or-table-name/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2008/08/26/sql-server-how-to-rename-a-column-name-or-table-name/</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: Humayun</title>
		<link>http://blog.sqlauthority.com/2008/08/26/sql-server-how-to-rename-a-column-name-or-table-name/#comment-242955</link>
		<dc:creator><![CDATA[Humayun]]></dc:creator>
		<pubDate>Tue, 24 Jan 2012 09:46:39 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=888#comment-242955</guid>
		<description><![CDATA[Great , worked well....thanks a lot]]></description>
		<content:encoded><![CDATA[<p>Great , worked well&#8230;.thanks a lot</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhivanan</title>
		<link>http://blog.sqlauthority.com/2008/08/26/sql-server-how-to-rename-a-column-name-or-table-name/#comment-231065</link>
		<dc:creator><![CDATA[madhivanan]]></dc:creator>
		<pubDate>Wed, 04 Jan 2012 07:13:24 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=888#comment-231065</guid>
		<description><![CDATA[It means Stored Procedure]]></description>
		<content:encoded><![CDATA[<p>It means Stored Procedure</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: raki</title>
		<link>http://blog.sqlauthority.com/2008/08/26/sql-server-how-to-rename-a-column-name-or-table-name/#comment-230666</link>
		<dc:creator><![CDATA[raki]]></dc:creator>
		<pubDate>Tue, 03 Jan 2012 14:22:49 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=888#comment-230666</guid>
		<description><![CDATA[what does it mean by sp in  sp_RENAME]]></description>
		<content:encoded><![CDATA[<p>what does it mean by sp in  sp_RENAME</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: liliek</title>
		<link>http://blog.sqlauthority.com/2008/08/26/sql-server-how-to-rename-a-column-name-or-table-name/#comment-227810</link>
		<dc:creator><![CDATA[liliek]]></dc:creator>
		<pubDate>Thu, 29 Dec 2011 06:15:32 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=888#comment-227810</guid>
		<description><![CDATA[hi,
I had backup using select * into table tablename_bak from tablename

after that i rename table using your script

sp_RENAME &#039;tablename&#039;, &#039;Ttablename_old&#039;
GO

sp_RENAME &#039;tablename_bak&#039;, &#039;Ttablename&#039;
GO

when I open from web application the page is white blank, 
I i rename back to original

sp_RENAME &#039;tablename&#039;, &#039;Ttablename_bak&#039;
GO

sp_RENAME &#039;tablename_old&#039;, &#039;Ttablename&#039;
GO

The page displayed data correctly,

please advice how this can happen.

thanks before.
Liliek]]></description>
		<content:encoded><![CDATA[<p>hi,<br />
I had backup using select * into table tablename_bak from tablename</p>
<p>after that i rename table using your script</p>
<p>sp_RENAME &#8216;tablename&#8217;, &#8216;Ttablename_old&#8217;<br />
GO</p>
<p>sp_RENAME &#8216;tablename_bak&#8217;, &#8216;Ttablename&#8217;<br />
GO</p>
<p>when I open from web application the page is white blank,<br />
I i rename back to original</p>
<p>sp_RENAME &#8216;tablename&#8217;, &#8216;Ttablename_bak&#8217;<br />
GO</p>
<p>sp_RENAME &#8216;tablename_old&#8217;, &#8216;Ttablename&#8217;<br />
GO</p>
<p>The page displayed data correctly,</p>
<p>please advice how this can happen.</p>
<p>thanks before.<br />
Liliek</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Saeed Neamati</title>
		<link>http://blog.sqlauthority.com/2008/08/26/sql-server-how-to-rename-a-column-name-or-table-name/#comment-225528</link>
		<dc:creator><![CDATA[Saeed Neamati]]></dc:creator>
		<pubDate>Sun, 25 Dec 2011 10:49:23 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=888#comment-225528</guid>
		<description><![CDATA[You just saved me hours of vague search and trial and error. I used sp_rename like a charm, and it works great. Thanks.]]></description>
		<content:encoded><![CDATA[<p>You just saved me hours of vague search and trial and error. I used sp_rename like a charm, and it works great. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Samyuktha</title>
		<link>http://blog.sqlauthority.com/2008/08/26/sql-server-how-to-rename-a-column-name-or-table-name/#comment-221480</link>
		<dc:creator><![CDATA[Samyuktha]]></dc:creator>
		<pubDate>Mon, 19 Dec 2011 17:12:54 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=888#comment-221480</guid>
		<description><![CDATA[Hi,

What all can we include in SSAS Cube Design documentation

I have included the data model,facts,dimensions,surrogate keys,Hierarchies and levels within hierarchies.
Reports that we can pull from the cube,Proactive caching.

What else can we include.
I&#039;m confused.Please help me out.

Thanks in Advance,
Samyuktha]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>What all can we include in SSAS Cube Design documentation</p>
<p>I have included the data model,facts,dimensions,surrogate keys,Hierarchies and levels within hierarchies.<br />
Reports that we can pull from the cube,Proactive caching.</p>
<p>What else can we include.<br />
I&#8217;m confused.Please help me out.</p>
<p>Thanks in Advance,<br />
Samyuktha</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhivanan</title>
		<link>http://blog.sqlauthority.com/2008/08/26/sql-server-how-to-rename-a-column-name-or-table-name/#comment-218494</link>
		<dc:creator><![CDATA[madhivanan]]></dc:creator>
		<pubDate>Thu, 15 Dec 2011 14:08:23 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=888#comment-218494</guid>
		<description><![CDATA[You need to ask this in forums like www.asp.net]]></description>
		<content:encoded><![CDATA[<p>You need to ask this in forums like <a href="http://www.asp.net" rel="nofollow">http://www.asp.net</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pinaldave</title>
		<link>http://blog.sqlauthority.com/2008/08/26/sql-server-how-to-rename-a-column-name-or-table-name/#comment-216493</link>
		<dc:creator><![CDATA[pinaldave]]></dc:creator>
		<pubDate>Tue, 13 Dec 2011 03:31:38 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=888#comment-216493</guid>
		<description><![CDATA[No. I am from Nirma.]]></description>
		<content:encoded><![CDATA[<p>No. I am from Nirma.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rohol2011d.Rohol Amin</title>
		<link>http://blog.sqlauthority.com/2008/08/26/sql-server-how-to-rename-a-column-name-or-table-name/#comment-215156</link>
		<dc:creator><![CDATA[rohol2011d.Rohol Amin]]></dc:creator>
		<pubDate>Sun, 11 Dec 2011 05:13:43 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=888#comment-215156</guid>
		<description><![CDATA[how to apply uper code in C#]]></description>
		<content:encoded><![CDATA[<p>how to apply uper code in C#</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rohol2011d.Rohol Amin</title>
		<link>http://blog.sqlauthority.com/2008/08/26/sql-server-how-to-rename-a-column-name-or-table-name/#comment-215155</link>
		<dc:creator><![CDATA[rohol2011d.Rohol Amin]]></dc:creator>
		<pubDate>Sun, 11 Dec 2011 05:07:42 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=888#comment-215155</guid>
		<description><![CDATA[here the code ,What is the SP_RENAME ?]]></description>
		<content:encoded><![CDATA[<p>here the code ,What is the SP_RENAME ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ashish</title>
		<link>http://blog.sqlauthority.com/2008/08/26/sql-server-how-to-rename-a-column-name-or-table-name/#comment-198283</link>
		<dc:creator><![CDATA[ashish]]></dc:creator>
		<pubDate>Fri, 18 Nov 2011 05:22:08 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=888#comment-198283</guid>
		<description><![CDATA[Dear Sir,
              Firstly Thanks a lot for your guidance. I am able to write query in sql just because of your notes. Your  tutorials are very helpfull for me. I want to go for DBA, but i am not aware how i can achieve it. Please guide me for it and for the oracle certification.  So please guide me for it.]]></description>
		<content:encoded><![CDATA[<p>Dear Sir,<br />
              Firstly Thanks a lot for your guidance. I am able to write query in sql just because of your notes. Your  tutorials are very helpfull for me. I want to go for DBA, but i am not aware how i can achieve it. Please guide me for it and for the oracle certification.  So please guide me for it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ashish</title>
		<link>http://blog.sqlauthority.com/2008/08/26/sql-server-how-to-rename-a-column-name-or-table-name/#comment-197680</link>
		<dc:creator><![CDATA[ashish]]></dc:creator>
		<pubDate>Thu, 17 Nov 2011 12:22:35 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=888#comment-197680</guid>
		<description><![CDATA[Thanks a lot...]]></description>
		<content:encoded><![CDATA[<p>Thanks a lot&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wde</title>
		<link>http://blog.sqlauthority.com/2008/08/26/sql-server-how-to-rename-a-column-name-or-table-name/#comment-192962</link>
		<dc:creator><![CDATA[wde]]></dc:creator>
		<pubDate>Fri, 11 Nov 2011 07:00:07 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=888#comment-192962</guid>
		<description><![CDATA[thnks sir...........]]></description>
		<content:encoded><![CDATA[<p>thnks sir&#8230;&#8230;&#8230;..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhivanan</title>
		<link>http://blog.sqlauthority.com/2008/08/26/sql-server-how-to-rename-a-column-name-or-table-name/#comment-182913</link>
		<dc:creator><![CDATA[madhivanan]]></dc:creator>
		<pubDate>Mon, 24 Oct 2011 14:03:01 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=888#comment-182913</guid>
		<description><![CDATA[Switch partition will work effectively. Read about this
http://beyondrelational.com/justlearned/posts/556/using-partition-switching-you-can-move-millions-of-rows-from-one-table-to-another-in-less-than-a-second.aspx]]></description>
		<content:encoded><![CDATA[<p>Switch partition will work effectively. Read about this<br />
<a href="http://beyondrelational.com/justlearned/posts/556/using-partition-switching-you-can-move-millions-of-rows-from-one-table-to-another-in-less-than-a-second.aspx" rel="nofollow">http://beyondrelational.com/justlearned/posts/556/using-partition-switching-you-can-move-millions-of-rows-from-one-table-to-another-in-less-than-a-second.aspx</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jake</title>
		<link>http://blog.sqlauthority.com/2008/08/26/sql-server-how-to-rename-a-column-name-or-table-name/#comment-182882</link>
		<dc:creator><![CDATA[Jake]]></dc:creator>
		<pubDate>Mon, 24 Oct 2011 12:43:12 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=888#comment-182882</guid>
		<description><![CDATA[Hi Sir,

Which one is faster? Truncating a table and doing a fresh insert of nearly 2million rows OR inserting the 2million into a new table, delete the original table and rename the new table to the original table.
Oh den do an incremental population of the fulltext index afterwards.]]></description>
		<content:encoded><![CDATA[<p>Hi Sir,</p>
<p>Which one is faster? Truncating a table and doing a fresh insert of nearly 2million rows OR inserting the 2million into a new table, delete the original table and rename the new table to the original table.<br />
Oh den do an incremental population of the fulltext index afterwards.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dharmendra</title>
		<link>http://blog.sqlauthority.com/2008/08/26/sql-server-how-to-rename-a-column-name-or-table-name/#comment-180849</link>
		<dc:creator><![CDATA[Dharmendra]]></dc:creator>
		<pubDate>Wed, 19 Oct 2011 15:59:48 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=888#comment-180849</guid>
		<description><![CDATA[Hi Sir,

How can we fetch 1000 rows from table?

I used this but how can I used in store procedure. 

Select  from 
ORDER BY  DESC
FETCH FIRST 1000 ROWS ONLY

Regards
Dharmendra]]></description>
		<content:encoded><![CDATA[<p>Hi Sir,</p>
<p>How can we fetch 1000 rows from table?</p>
<p>I used this but how can I used in store procedure. </p>
<p>Select  from<br />
ORDER BY  DESC<br />
FETCH FIRST 1000 ROWS ONLY</p>
<p>Regards<br />
Dharmendra</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pablo Alejandro Perez Acosta</title>
		<link>http://blog.sqlauthority.com/2008/08/26/sql-server-how-to-rename-a-column-name-or-table-name/#comment-178908</link>
		<dc:creator><![CDATA[Pablo Alejandro Perez Acosta]]></dc:creator>
		<pubDate>Fri, 14 Oct 2011 17:09:03 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=888#comment-178908</guid>
		<description><![CDATA[Muchas Gracias, Thank you, Merci,!]]></description>
		<content:encoded><![CDATA[<p>Muchas Gracias, Thank you, Merci,!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhivanan</title>
		<link>http://blog.sqlauthority.com/2008/08/26/sql-server-how-to-rename-a-column-name-or-table-name/#comment-172790</link>
		<dc:creator><![CDATA[madhivanan]]></dc:creator>
		<pubDate>Wed, 28 Sep 2011 11:37:02 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=888#comment-172790</guid>
		<description><![CDATA[Use sp_renmae procedure. Also beware that your application may break if you dont modify it.]]></description>
		<content:encoded><![CDATA[<p>Use sp_renmae procedure. Also beware that your application may break if you dont modify it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vijay</title>
		<link>http://blog.sqlauthority.com/2008/08/26/sql-server-how-to-rename-a-column-name-or-table-name/#comment-172728</link>
		<dc:creator><![CDATA[vijay]]></dc:creator>
		<pubDate>Wed, 28 Sep 2011 06:58:00 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=888#comment-172728</guid>
		<description><![CDATA[how to rename one column in sql server 2008?]]></description>
		<content:encoded><![CDATA[<p>how to rename one column in sql server 2008?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hassan</title>
		<link>http://blog.sqlauthority.com/2008/08/26/sql-server-how-to-rename-a-column-name-or-table-name/#comment-170459</link>
		<dc:creator><![CDATA[Hassan]]></dc:creator>
		<pubDate>Wed, 21 Sep 2011 21:06:05 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=888#comment-170459</guid>
		<description><![CDATA[Only...Thanks.
Useful &amp; Helpful]]></description>
		<content:encoded><![CDATA[<p>Only&#8230;Thanks.<br />
Useful &amp; Helpful</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shaul b</title>
		<link>http://blog.sqlauthority.com/2008/08/26/sql-server-how-to-rename-a-column-name-or-table-name/#comment-169290</link>
		<dc:creator><![CDATA[shaul b]]></dc:creator>
		<pubDate>Sun, 18 Sep 2011 15:03:02 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=888#comment-169290</guid>
		<description><![CDATA[Thanks, this was very useful!]]></description>
		<content:encoded><![CDATA[<p>Thanks, this was very useful!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mandeep Kaur Thind</title>
		<link>http://blog.sqlauthority.com/2008/08/26/sql-server-how-to-rename-a-column-name-or-table-name/#comment-167764</link>
		<dc:creator><![CDATA[Mandeep Kaur Thind]]></dc:creator>
		<pubDate>Tue, 13 Sep 2011 13:29:22 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=888#comment-167764</guid>
		<description><![CDATA[Hai thnz dear, itz relly nice knowledge]]></description>
		<content:encoded><![CDATA[<p>Hai thnz dear, itz relly nice knowledge</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Oleg</title>
		<link>http://blog.sqlauthority.com/2008/08/26/sql-server-how-to-rename-a-column-name-or-table-name/#comment-166175</link>
		<dc:creator><![CDATA[Oleg]]></dc:creator>
		<pubDate>Wed, 07 Sep 2011 08:15:50 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=888#comment-166175</guid>
		<description><![CDATA[Thanks for exploration ohow torename tables in sql!]]></description>
		<content:encoded><![CDATA[<p>Thanks for exploration ohow torename tables in sql!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chandrasekar</title>
		<link>http://blog.sqlauthority.com/2008/08/26/sql-server-how-to-rename-a-column-name-or-table-name/#comment-161564</link>
		<dc:creator><![CDATA[Chandrasekar]]></dc:creator>
		<pubDate>Thu, 25 Aug 2011 01:19:41 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=888#comment-161564</guid>
		<description><![CDATA[Mate ur simply superb !!!! Terrific Blog Pinal ....]]></description>
		<content:encoded><![CDATA[<p>Mate ur simply superb !!!! Terrific Blog Pinal &#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manish</title>
		<link>http://blog.sqlauthority.com/2008/08/26/sql-server-how-to-rename-a-column-name-or-table-name/#comment-160670</link>
		<dc:creator><![CDATA[Manish]]></dc:creator>
		<pubDate>Mon, 22 Aug 2011 17:34:32 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=888#comment-160670</guid>
		<description><![CDATA[Hi Pinal,
Could you please help me with the following?
I&#039;m trying to rename all the column names of my date dimension, from lower case to Title case. There&#039;re around 110 columns, and I don&#039;t want to manually rename them.
Could you please offer the code to do this?

Thanks in advance!]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,<br />
Could you please help me with the following?<br />
I&#8217;m trying to rename all the column names of my date dimension, from lower case to Title case. There&#8217;re around 110 columns, and I don&#8217;t want to manually rename them.<br />
Could you please offer the code to do this?</p>
<p>Thanks in advance!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

