ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
#### 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 ~~~