ASP.NET CLR未启用
当我运行我的应用程序时,我的新安装的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
尝试这个
use dasolPSDev; EXEC sp_configure 'clr enabled', 1 go RECONFIGURE go EXEC sp_configure 'clr enabled' go
为我工作的简化版本的解决scheme(SQL Server 2012):
sp_configure 'clr enabled', 1 GO RECONFIGURE GO
资料来源: http : //msdn.microsoft.com/en-us/library/ms254506%28v=vs.80%29.aspx
我试着用sp_configure @ configname = clr_enabled,@ configvalue = 1
然后重新启动sql服务器。 有效