An error occurred in the Microsoft .NET Framework while trying to load assembly id 65675

前端 未结 5 921
小鲜肉
小鲜肉 2021-02-05 06:33

I have to work on an existing application, comprises of many projects including a database project. In the statup project, which is a windows app., when making a call to a

5条回答
  •  故里飘歌
    2021-02-05 07:08

    This did the trick for me:

    USE ;
    EXEC sp_configure 'clr enabled' ,1
    GO
    
    RECONFIGURE
    GO
    EXEC sp_configure 'clr enabled'   -- make sure it took
    GO
    
    USE 
    GO
    
    EXEC sp_changedbowner 'sa'
    USE 
    GO
    
    ALTER DATABASE  SET TRUSTWORTHY ON;  
    

提交回复
热议问题