, .
DBCC UPDATEUSAGE(database_name)
regarding the database, and it fixed the problem, but I see where others had to reset the owner of the database in order to fix this problem. You can see the database owners by running
sp_helpdb
You can change the owner by running
sp_changedbowner [ @loginame = ] ‘login’
[ , [ @map= ] remap_alias_flag ]}
source
share