I have a table schema1.table1 and I need to change it to schema2.table1 .
sp_rename does not seem to work, it actually leaves table in same schema. Insert into / Select into is the last resort because this table is very large and copying will take signifficant amount of time. Are there any other options ?
Thanks