I Used the following syntax but I couldn't find the rename keyword in SQL server 2005.
Alter table Stu_Table rename to Stu_Table_10
Please help me in renaming the table name using a query statement.
I Used the following syntax but I couldn't find the rename keyword in SQL server 2005.
Alter table Stu_Table rename to Stu_Table_10
Please help me in renaming the table name using a query statement.
hi
Please use this on sql server2005
sp_rename old_table_name , new_table_name
it will give you "Caution: Changing any part of an object name could break scripts and stored procedures." but your table name willbe changed