MSSQL - 2000에서 2005로 이전시 테이블 스키마소유자가 변경 될 수 있다
2000에서 2005로 이전시 테이블 스키마소유자가 변경 될 수 있다. declare @table_name varchar(500) declare table_cur Cursor for select 'FROM_SCHEME.' + name from sysObjects where uid = USER_ID('FROM_SCHEME') open table_cur Fetch next From table_cur into @table_name while @@Fetch_status = 0 Begin EXEC sp_changeobjectowner @table_name, 'TO_SCHEME' Fetch next From table_cur into @table_name End close table_cur deAllocate ta..