Hi all,
I have a situation where the Login 'DBO' links to an domain user who no longer exists.
I would like to change this to the 'sa' login and from there make dbo the owner of the database using
EXEC sp_changedbowner 'dbo'
Apparently this works in to 2005:
ALTER AUTHORIZATION ON DATABASE:: dbName TO sa
Is there an equivelant in SQL 2000?
Any help is appreciated!