Cela a fonctionné pour moi :
EXEC sp_changedbowner 'sa'
ALTER DATABASE [dbase] SET trustworthy ON
et j'ai aussi fait ceci :
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'clr enabled', 1;
GO
RECONFIGURE;
GO
sp_configure 'show advanced options', 0;
GO
RECONFIGURE;
GO