ASP.NET CLR nie jest włączone

84

Podczas mojej nowej instalacji ASP.Net i SQL Server pojawia się następujący błąd:

 Execution of user code in the .NET Framework is disabled. Enable "clr enabled" configuration option

Próbowałem to naprawić, uruchamiając to:

 use dasolPSDev;

 sp_configure 'clr enabled', 1
 go
 RECONFIGURE
 go
 sp_configure 'clr enabled'
 go

Ale wtedy otrzymuję:

 Msg 102, Level 15, State 1, Line 3
 Incorrect syntax near 'sp_config
cdub
źródło

Odpowiedzi:

127

Spróbuj tego

use dasolPSDev;

EXEC sp_configure 'clr enabled', 1
 go
 RECONFIGURE
 go
EXEC sp_configure 'clr enabled'
 go
zacina się
źródło
Jak długo zwykle trwa wykonanie tego skryptu? ponieważ mój, kazałem go uruchomić dłużej niż 1 minutę i nadal bez wyniku .. !!
mithilatw
Jak to uruchomić
ganesh,
2

Miałem podobny problem, ale to działa dla mnie (SQL Server 2008 R2):

sp_configure 'clr enabled', 1
GO

RECONFIGURE
GO
Theodore Ametepey
źródło
0

Próbowałem z sp_configure @ configname = clr_enabled, @ configvalue = 1

następnie zrestartowałem serwer sql. zadziałało

user7205049
źródło