web-dev-qa-db-ja.com

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
74
cdub

これを試して

use dasolPSDev;

EXEC sp_configure 'clr enabled', 1
 go
 RECONFIGURE
 go
EXEC sp_configure 'clr enabled'
 go
117
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

25
Jon Schneider

Sp_configure @ configname = clr_enabled、@ configvalue = 1で試しました

その後、SQLサーバーを再起動しました。動いた

0
user7205049

私は同様の問題を抱えていましたが、これは私のために機能します(SQL Server 2008 R2):

sp_configure 'clr enabled', 1
GO

RECONFIGURE
GO
0