禁止在 .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 @ 2009-03-17 09:53  楚广明  阅读(10104)  评论(0编辑  收藏  举报