<?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: HowTo: Rename SQL Tables in Visual Studio</title>
	<atom:link href="http://code-inside.de/blog-in/2009/03/26/howto-rename-sql-tables-in-visual-studio/feed/" rel="self" type="application/rss+xml" />
	<link>http://code-inside.de/blog-in/2009/03/26/howto-rename-sql-tables-in-visual-studio/</link>
	<description>Blogging about ASP.NET, .NET &#38; C#</description>
	<lastBuildDate>Wed, 11 Apr 2012 23:21:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
	<item>
		<title>By: hidden input</title>
		<link>http://code-inside.de/blog-in/2009/03/26/howto-rename-sql-tables-in-visual-studio/comment-page-1/#comment-25140</link>
		<dc:creator>hidden input</dc:creator>
		<pubDate>Tue, 19 Jul 2011 10:57:21 +0000</pubDate>
		<guid isPermaLink="false">http://code-inside.de/blog-in/2009/03/26/howto-rename-sql-tables-in-visual-studio/#comment-25140</guid>
		<description>1.   In Server Explorer, right-click the table you want to rename and choose Open Table Definition from the shortcut menu.

      The table opens in the Table Definition window of Table Designer.
   2.   Right-click the table in the Table Definition window and choose Properties from the shortcut menu.
   3.     In the field for the Name value in the Properties window, type a new name for the table.
  
 4.   To cancel this action, press the ESC key before leaving this field.
 
5.     From the File menu choose Save table name.

Here is the direct link 
http://msdn.microsoft.com/en-us/library/bw5xhetd.aspx</description>
		<content:encoded><![CDATA[<p>1.   In Server Explorer, right-click the table you want to rename and choose Open Table Definition from the shortcut menu.</p>
<p>      The table opens in the Table Definition window of Table Designer.<br />
   2.   Right-click the table in the Table Definition window and choose Properties from the shortcut menu.<br />
   3.     In the field for the Name value in the Properties window, type a new name for the table.</p>
<p> 4.   To cancel this action, press the ESC key before leaving this field.</p>
<p>5.     From the File menu choose Save table name.</p>
<p>Here is the direct link<br />
<a href="http://msdn.microsoft.com/en-us/library/bw5xhetd.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bw5xhetd.aspx</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shabi</title>
		<link>http://code-inside.de/blog-in/2009/03/26/howto-rename-sql-tables-in-visual-studio/comment-page-1/#comment-21732</link>
		<dc:creator>Shabi</dc:creator>
		<pubDate>Thu, 17 Mar 2011 21:57:10 +0000</pubDate>
		<guid isPermaLink="false">http://code-inside.de/blog-in/2009/03/26/howto-rename-sql-tables-in-visual-studio/#comment-21732</guid>
		<description>Thanksssssssssssssss!!

Was going nuts on this small but so important thingy :)</description>
		<content:encoded><![CDATA[<p>Thanksssssssssssssss!!</p>
<p>Was going nuts on this small but so important thingy <img src='http://code-inside.de/blog-in/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: HninKyawtWai</title>
		<link>http://code-inside.de/blog-in/2009/03/26/howto-rename-sql-tables-in-visual-studio/comment-page-1/#comment-12133</link>
		<dc:creator>HninKyawtWai</dc:creator>
		<pubDate>Tue, 18 May 2010 14:54:33 +0000</pubDate>
		<guid isPermaLink="false">http://code-inside.de/blog-in/2009/03/26/howto-rename-sql-tables-in-visual-studio/#comment-12133</guid>
		<description>Please copy this table to new table name and then delete old table. 

Query 
=====


insert into New_TableName
select *
from Old_TableName</description>
		<content:encoded><![CDATA[<p>Please copy this table to new table name and then delete old table. </p>
<p>Query<br />
=====</p>
<p>insert into New_TableName<br />
select *<br />
from Old_TableName</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cguillemette</title>
		<link>http://code-inside.de/blog-in/2009/03/26/howto-rename-sql-tables-in-visual-studio/comment-page-1/#comment-9270</link>
		<dc:creator>cguillemette</dc:creator>
		<pubDate>Mon, 15 Feb 2010 02:50:57 +0000</pubDate>
		<guid isPermaLink="false">http://code-inside.de/blog-in/2009/03/26/howto-rename-sql-tables-in-visual-studio/#comment-9270</guid>
		<description>This is great thanks!

I tried using ALTER TABLE clause with RENAME TO and it didn&#039;t work. I think the way you propose is the only way.</description>
		<content:encoded><![CDATA[<p>This is great thanks!</p>
<p>I tried using ALTER TABLE clause with RENAME TO and it didn&#8217;t work. I think the way you propose is the only way.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Abdalla</title>
		<link>http://code-inside.de/blog-in/2009/03/26/howto-rename-sql-tables-in-visual-studio/comment-page-1/#comment-4111</link>
		<dc:creator>Abdalla</dc:creator>
		<pubDate>Sat, 28 Mar 2009 20:09:11 +0000</pubDate>
		<guid isPermaLink="false">http://code-inside.de/blog-in/2009/03/26/howto-rename-sql-tables-in-visual-studio/#comment-4111</guid>
		<description>Can&#039;t you rename it by using &quot;F2&quot; key while selecting the tablename node from the tree ? Never tried myself though so I could be wrong!</description>
		<content:encoded><![CDATA[<p>Can&#8217;t you rename it by using &#8220;F2&#8243; key while selecting the tablename node from the tree ? Never tried myself though so I could be wrong!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dew Drop - March 26, 2009 &#124; Alvin Ashcraft's Morning Dew</title>
		<link>http://code-inside.de/blog-in/2009/03/26/howto-rename-sql-tables-in-visual-studio/comment-page-1/#comment-4092</link>
		<dc:creator>Dew Drop - March 26, 2009 &#124; Alvin Ashcraft's Morning Dew</dc:creator>
		<pubDate>Thu, 26 Mar 2009 13:25:09 +0000</pubDate>
		<guid isPermaLink="false">http://code-inside.de/blog-in/2009/03/26/howto-rename-sql-tables-in-visual-studio/#comment-4092</guid>
		<description>[...] HowTo: Rename SQL Tables in Visual Studio (Robert Muehsig) [...]</description>
		<content:encoded><![CDATA[<p>[...] HowTo: Rename SQL Tables in Visual Studio (Robert Muehsig) [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

