Sqlserver
 sql >> Datenbank >  >> RDS >> Sqlserver

Wie erteile ich dem Datenbankeigentümer (DBO) die EXTERNAL ACCESS ASSEMBLY-Berechtigung?

Das hat bei mir funktioniert:

EXEC sp_changedbowner 'sa'
ALTER DATABASE [dbase] SET trustworthy ON

und das habe ich auch gemacht:

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