Preguntas Frecuentes / Anveo Web Portal / Seguridad estricta está bloqueando el Servidor Delta
Esta es una traducción automática. El mensaje original está disponible en Inglés.

Seguridad estricta está bloqueando el Servidor Delta

Si se encuentra con el Error «…failed because ‘clr strict security’…» después de instalar el SQL Server necesita desactivar la estricta Seguridad.

Para ello, ejecute el siguiente script SQL en su servidor SQL:

-- to disable
EXEC sys.sp_configure N'show advanced options', N'1';
RECONFIGURE WITH OVERRIDE;
EXEC sys.sp_configure N'clr strict security', N'0';
RECONFIGURE WITH OVERRIDE;
EXEC sys.sp_configure N'show advanced options', N'0';
RECONFIGURE WITH OVERRIDE;
GO