La sicurezza rigorosa sta bloccando il server Delta
Se si esegue l’errore “…fallito perché ‘clr strict security’…” dopo aver installato il Server SQL è necessario disattivare la rigorosa sicurezza.
Per farlo, eseguire il seguente script SQL sul server SQL:
1 2 3 4 5 6 7 8 |
-- 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 |