The database owner SID recorded in the master database differs from the database owner SID

前端 未结 5 1777
时光说笑
时光说笑 2020-12-12 14:23

When I try to install tSQLt onto an existing database i get the following error:

The database owner SID recorded in the master database differs from

5条回答
  •  北荒
    北荒 (楼主)
    2020-12-12 14:37

    Apply the below script on database you get the error:

    EXEC sp_changedbowner 'sa'
    
    ALTER DATABASE [database_name] SET TRUSTWORTHY ON 
    

提交回复
热议问题