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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
试试这个
Try this
对我有用的 jams 解决方案的简化版本(SQL Server 2012):
来源:http://msdn.microsoft.com/en-us/library/ms254506%28v=vs.80%29.aspx
Simplified version of jams' solution which worked for me (SQL Server 2012):
Source: http://msdn.microsoft.com/en-us/library/ms254506%28v=vs.80%29.aspx
我遇到了类似的问题,但这对我有用(SQL Server 2008 R2):
I had a similar issue, but this works for me (SQL Server 2008 R2):
以下步骤解决了我的问题。
The following steps fixed my problem.
我尝试过
sp_configure @configname=clr_enabled, @configvalue=1
然后重新启动 sql server。它起作用了
I tried with
sp_configure @configname=clr_enabled, @configvalue=1
then restarted the sql server. it worked