Which version of SQL server are you running and how did you associate the wrong user with DBO?
In SQL 7 and SQL 2000, you can use the system stored procedure "sp_changedbowner" to change the database owner. The following example comes from SQL BOL.
This example makes the user Albert the owner of the current database and maps existing aliases to the old database owner to Albert.
EXEC sp_changedbowner 'Albert' Terry L. Broadbent Programming and Computing Resources
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.