Change Owner of an Object in SQL Server 2000
This is mostly just a post for me so I never forget this, but to change the owner of an object in sql server, use sp_changeobjectowner, just pass it the name of the object (as a string) and the name of the new owner (as a string)
UPDATE: Thanks to Matthew Gibson for correcting my typo on the stored procedure to call.