You can use the sp_changeobjectowner system stored procedure to change the
object owner.
Read about the sp_changeobjectowner stored procedure in SQL Server Books Online.
This is the example to change the owner of the authors table in the pubs
database to John:
USE pubs
GO
EXEC sp_changeobjectowner 'authors', 'John'
GO