declare @name sysname
declare csr1 cursor
for select TABLE_NAME from INFORMATION_SCHEMA.TABLES
open csr1
FETCH NEXT FROM csr1 INTO @name
while (@@FETCH_STATUS=0)
BEGIN
SET @name='transphone_f.'+@name--旧架构
EXEC SP_ChangeObjectOwner @name, 'dbo' --新架构
fetch next from csr1 into @name
END
CLOSE csr1
DEALLOCATE csr1
批量修改数据库表的构架名