3
votes
In sql server 2005, how do I change the “schema” of a table without loosing any data?
simple answer
sp_changeobjectowner [ @objname = ] 'object' , [ @newowner = ] 'owner'
you don't need to stop all connections to the database, this can be done on th …
