目录:
[TOC]
------------------------------------------------------------------------------------------------------------------------------
#### 1:禁止在 .NET Framework 中执行用户代码。启用 "clr enabled"配置选项。
![禁止在 .NET Framework 中执行用户代码。启用 "clr enabled"](https://box.kancloud.cn/5b1bd4e7138631d677c67f992b4372af_634x160.png)
解决方案:
在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
~~~