Perguntas Frequentes / Anveo Web Portal / Strict Security está bloqueando o Delta Server
Esta é uma tradução automática. O post original está disponível em Inglês .

Strict Security está bloqueando o Delta Server

Se você executar o erro “…falhou porque ‘clr strict security’…” após a instalação do SQL Server você precisa desativar a segurança estrita.

Para isso, execute o seguinte script SQL no seu SQL Server:

-- 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