12
Reply

How to reaname table name without using sp_Rename in sql server..?

Amol Sarkate

Amol Sarkate

Jun 23, 2015
3.9k
0

    Right Click on table object and select Rename option, change the table name.

    Nidhin vs sar i think ALTER TABLE table_name RENAME TO new_table_name;this command used for oracle not in sql server

    Amol Sarkate
    July 13, 2015
    1

    using query it not possible....!!!

    Amol Sarkate
    July 03, 2015
    1

    1. Using Right Click on Table or using F2 key

    You can do it in Sql Server Exec sp_rename 'dbo.old_tablename' ,'new_tablename';

    Vaibhav Agarwal
    October 26, 2015
    0

    By right click on table then rename option or by pressing F2 key

    Rahul Prajapat
    July 30, 2015
    0

    open your UI and edit it from server explorer

    Abhik Singh
    July 27, 2015
    0

    Hi, you can right click on the table and use rename part to change the name of that,easily.

    Joe Wilson
    July 21, 2015
    0

    Try this:ALTER TABLE table_nameRENAME TO new_table_name;

    Nidhin Vs
    July 08, 2015
    0

    right click on table and select rename option.....

    srinu vasarao
    July 05, 2015
    0

    http://sqlandme.com/2013/03/04/sql-server-how-to-rename-tablecolumn-in-sql-server/

    Munesh Sharma
    June 28, 2015
    0

    Select table name from database treeview & right click on table name then rename it.

    Sujeet Suman
    June 26, 2015
    0