禁止在 .NET Framework 中执行用户代码。启用 "clr enabled" 配置选项

禁止在 .NET Framework 中执行用户代码。启用 "clr enabled" 配置选项

解决方法:

查询分析器中运行如下代码即可:

exec sp_configure 'show advanced options', '1';
go
reconfigure;
go
exec sp_configure 'clr enabled', '1'
go
reconfigure;
exec sp_configure 'show advanced options', '1';
go

posted @ 2016-03-16 15:01  鬼才  阅读(309)  评论(0编辑  收藏  举报