How to change default database owner

How can I change my database user so that every object it creates (tables, sp, etc) is created under the username "dbo"?

I don't want/like to have my tables created with ownership like "myaccount_mydatabaseuser.mytable", but just "dbo.mytable". By using "dbo" I don't care to name the object owner in my programmation.
 
Back
Top