-2
votes
In sql server 2005, how do I change the “schema” of a table without loosing any data?
You need to firstly stop all connections to the database, change the ownership of the tables that are 'db_owner' by running the command
sp_MSforeachtable @command1="sp_changeobject …
