ASP.NET CLR no habilitado

84

Recibo el siguiente error en mi nueva instalación de ASP.Net y SQL Server cuando ejecuto mi aplicación:

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

He intentado solucionarlo ejecutando esto:

 use dasolPSDev;

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

Pero luego obtengo:

 Msg 102, Level 15, State 1, Line 3
 Incorrect syntax near 'sp_config
cdub
fuente
De Microsoft: support.microsoft.com/en-us/help/2120850/…
Darren Griffith

Respuestas:

127

Prueba esto

use dasolPSDev;

EXEC sp_configure 'clr enabled', 1
 go
 RECONFIGURE
 go
EXEC sp_configure 'clr enabled'
 go
Enjambres
fuente
¿Cuánto tiempo tarda normalmente en ejecutarse este script? porque el mío, lo he hecho correr más de 1 minuto y todavía no hay resultado .. !!
mithilatw
Cómo ejecutar esto
ganesh
2

Tuve un problema similar, pero esto funciona para mí (SQL Server 2008 R2):

sp_configure 'clr enabled', 1
GO

RECONFIGURE
GO
Theodore Ametepey
fuente
0

Intenté con sp_configure @ configname = clr_enabled, @ configvalue = 1

luego reinició el servidor sql. funcionó

usuario7205049
fuente