ASP.NET CLR 未启用

发布于 2024-11-09 16:39:48 字数 446 浏览 1 评论 0 原文

当我运行我的应用程序时,我在新安装的 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

I am getting the following error on my new installation of ASP.Net and SQL Server when I run my app:

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

I have tried to fix it by running this:

 use dasolPSDev;

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

But then I get:

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

梦回旧景 2024-11-16 16:39:48

试试这个

use dasolPSDev;

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

Try this

use dasolPSDev;

EXEC sp_configure 'clr enabled', 1
 go
 RECONFIGURE
 go
EXEC sp_configure 'clr enabled'
 go
夏末 2024-11-16 16:39:48

对我有用的 jams 解决方案的简化版本(SQL Server 2012):

sp_configure 'clr enabled', 1
GO
RECONFIGURE
GO

来源: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):

sp_configure 'clr enabled', 1
GO
RECONFIGURE
GO

Source: http://msdn.microsoft.com/en-us/library/ms254506%28v=vs.80%29.aspx

把回忆走一遍 2024-11-16 16:39:48

我遇到了类似的问题,但这对我有用(SQL Server 2008 R2):

sp_configure 'clr enabled', 1
GO

RECONFIGURE
GO

I had a similar issue, but this works for me (SQL Server 2008 R2):

sp_configure 'clr enabled', 1
GO

RECONFIGURE
GO
狠疯拽 2024-11-16 16:39:48

以下步骤解决了我的问题。

  1. 打开 SQL Server Management Studio。
  2. 连接到您的数据库实例。
  3. 文件>新的>使用当前连接进行查询。
  4. 将以下内容粘贴到编辑器中(参考:https://learn.microsoft.com/en-us/sql/database-engine/configure-windows/clr-enabled-server-configuration-option?view=sql -服务器版本16)。
EXEC sp_configure 'clr enabled';  
EXEC sp_configure 'clr enabled' , '1';  
RECONFIGURE;
  1. 单击执行。

The following steps fixed my problem.

  1. Open SQL Server Management Studio.
  2. Connect to your database instance.
  3. File > New > Query with Current Connection.
  4. Paste the following into the editor (reference: https://learn.microsoft.com/en-us/sql/database-engine/configure-windows/clr-enabled-server-configuration-option?view=sql-server-ver16).
EXEC sp_configure 'clr enabled';  
EXEC sp_configure 'clr enabled' , '1';  
RECONFIGURE;
  1. Click Execute.
筱果果 2024-11-16 16:39:48

我尝试过
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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文