R / J / F / Mikro programlarında, yeni veri tabanı oluştururken, fonksiyon prosedür güncellerken vb. “Mikro CLR” hatası alıyorsanız aşağıdaki sorguyu master’da çalıştırmanız yeterli olacaktır.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | sp_configure 'show advanced options', 1; GO RECONFIGURE; GO sp_configure 'clr enabled', 1; GO RECONFIGURE; GO EXEC sp_configure 'show advanced options',1; GO RECONFIGURE; GO EXEC sp_configure 'clr strict security',0; GO RECONFIGURE; GO |
Ya da bu
| EXEC sys.sp_configure N'clr strict security', N'0';OVERRIDE; EXEC sys.sp_configure N'show advanced options', N'1';RECONFIGURE WITH OVERRIDE; GO |
Ya da bu
| EXEC sp_configure 'clr enabled', 1; RECONFIGURE WITH OVERRIDE; GO |
| 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 |
Okumaya devam et Mikro Run / Junp / FLY MikroCLR hatası