未启用ASP.NET CLR


84

运行我的应用程序时,在新安装的ASP.Net和SQL Server上出现以下错误:

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

我试图通过运行此命令来修复它:

 use dasolPSDev;

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

但是然后我得到:

 Msg 102, Level 15, State 1, Line 3
 Incorrect syntax near 'sp_config

Answers:


127

试试这个

use dasolPSDev;

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

该脚本通常需要执行多长时间?因为我的,我已经运行了超过1分钟,仍然没有结果..!
mithilatw

如何运行
ganesh


2

我有一个类似的问题,但这对我有用(SQL Server 2008 R2):

sp_configure 'clr enabled', 1
GO

RECONFIGURE
GO

0

我尝试使用sp_configure @ configname = clr_enabled,@ configvalue = 1

然后重新启动sql server。有效

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.