RENAME is now supported. To use the rename object, you must prefix the table you want to change with the schema name as follows:
RENAME OBJECT x.T_New TO T;
Note that there is no circuit qualification for the target. This is because the renamed object must continue to be inside the same schema. To transfer a table from one schema to another, you need to use the following command:
ALTER SCHEMA dbo TRANSFER OBJECT :: x.T_NEW;
source share