I am transfering a database from 2000 to 2005. The application has a login and user "hyperion".
Normally, I would drop the user from the database. Then create the login on the server, and create the user the database again.
Unfortunatly, all of the obects belong to the schema "hyperion", so I can not delete the user.
I thought about transfering each object in the schema to .dbo. Then delete the user. Then create the login and user. Then transfer the schema back.
Something like this repeated for every object
ALTER SCHEMA dbo
TRANSFER hyperion.HBRCacheEvents
.....
ALTER SCHEMA hyperion
TRANSFER dbo.HBRCacheEvents
.....
There has to be a faster/cleaner way than this.
Any suggestions?