Strict Security blokuje serwer Delta
Jeśli napotkasz błąd ” nie…powiodło się, ponieważ „clr strict security”…” po zainstalowaniu SQL Server musisz dezaktywować strict Security.
W tym celu należy wykonać następujący skrypt SQL na serwerze 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 |