vote up 3 vote down star
1

I have a table that got into the "db_owner" schema, and I need it in the "dbo" schema.

Is there a script or command to run to switch it over?

flag

Pedantry: *losing Please proofread. – Rich B Sep 18 '08 at 3:31

6 Answers

vote up 3 vote down check

(1) Right click the table and select modify
(2) On the properties panel choose the correct owning schema.

link|flag
thanks, funny, if you just right click -> properties the schema is unchangeable, so I assumed it was one of those command only ninja tasks. Glad to know that its not as painful as it felt. – DevelopingChris Sep 18 '08 at 3:12
vote up 5 vote down

ALTER SCHEMA NewSchama TRANSFER dbo.Table1

link|flag
vote up -2 vote down

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_changeobjectowner ""?"",'dbo'"

where ? is the table name.

link|flag
vote up 3 vote down

simple answer

sp_changeobjectowner [ @objname = ] 'object' , [ @newowner = ] 'owner'

you don't need to stop all connections to the database, this can be done on the fly.

link|flag
vote up 1 vote down

When I use SQL Management Studio I do not get the 'Modify' option, only 'Design' or 'Edit'. If you have Visual Studio (I have checked VS.NET 2003, 2005 & 2008) you can use the Server Explorer to change the schema. Right click on the table and select 'Design Table' (2008) or 'Open Table Definition' (2003, 2005). Highlight the complete "Column Name" column. You can then right click and select 'Property Pages' or Properties (2008). From the property sheet you should see the 'Owner' (2003 & 2005) or 'Schema' (2008) with a drop down list for possible schemas.

link|flag
vote up -1 vote down

Jeremy is right for me.

link|flag
-1 Sorry for the down vote, but this answer is useless. – John MacIntyre Nov 25 at 13:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.