I got a table named tblHello and I wanna rename it to Hello
|
Right click on the table and select rename in management studio You can also use sp_rename:
|
|||||||||||||||
|
|
I want to point out that table renaming is not as simple as just changing the name when you have queries written. You also need to change all references to the old name in every stored proc, view, function and dynamic sql code. This is not something to be taken on lighty in something that is already on production. But @jonH has the answer for how to do it (you run that in the query window making sure you switch to the correct database first). Of course you have to have the right security permissions to rename objects. |
|||||
|
|
If its a small project, you can directly change it from User Interface. In Server Explorer, right-click the table you want to rename and Open Right-click the table in the Table Definition window and choose In the field for the Save the table. And its done. |
|||
|
|