Hai,
how change the name to the table
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.
Anupam SinghPosted Jun 13, 2014, 6:58 AM
exec sp_rename 'OLD_TABLE','NEW_TABLE';
not only table using this you can rename may objects like views,stored procedures..etc in sql
VulpesPosted Jun 13, 2014, 6:56 AM
sp_rename old_table_name, new_table_name