目錄:
[TOC]
------------------------------------------------------------------------------------------------------------------------------
#### 1:禁止在?.NET?Framework?中執行用戶代碼。啟用?"clr?enabled"配置選項。

解決方案:
在sqlserver企業管理中心運行如下存儲過程:
~~~
EXEC sp_configure 'allow updates', '1'?
EXEC sp_configure 'show advanced option', '1'?
exec sp_configure 'clr enabled', '1'?
RECONFIGURE WITH OVERRIDE?
EXEC sp_configure 'max degree of parallelism' ,'1'?
RECONFIGURE WITH OVERRIDE
~~~