Thank you.
Change Name of any Table in SQL Server
I want to know how to change name of any table in SQL server.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Santhosh Kumar JayaramanPosted Aug 9, 2012, 1:03 AM
Exec sp_rename 'tbl_Temp ', 'tbl_Test'
Jignesh TrivediPosted Aug 8, 2012, 11:41 PM
Please refer...
http://www.techonthenet.com/sql/tables/alter_table.php/
http://blog.sqlauthority.com/2008/08/26/sql-server-how-to-rename-a-column-name-or-table-name/
it is good article on same,
Akkiraju IvaturiPosted Aug 8, 2012, 9:51 PM
Renaming a table
Shen HengbinPosted Aug 8, 2012, 9:42 AM