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

답변:


127

이 시도

use dasolPSDev;

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

이 스크립트를 실행하는 데 일반적으로 얼마나 걸리나요? 내 왜냐하면 1 분 이상 실행했지만 여전히 결과가 없습니다 .. !!
mithilatw 2014

이것을 실행하는 방법
ganesh 19



0

sp_configure @ configname = clr_enabled, @ configvalue = 1로 시도했습니다.

그런 다음 SQL 서버를 다시 시작했습니다. 작동했다

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.