ALTER AUTHORIZATION
(For my own reference)
To resolve this issue in Microsoft SQL Server (often observed when you restore a database that came from another server):
Run this:
alter authorization on database::[MyDbName] to sa;
Categories: SQL
(For my own reference)
To resolve this issue in Microsoft SQL Server (often observed when you restore a database that came from another server):
Run this:
alter authorization on database::[MyDbName] to sa;
Categories: SQL