Solution : SQL SERVER error: Execution of user code in the .NET Framework is disabled. Enable clr enabled configuration option

直接运行以下script:

sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'clr enabled', 1;
GO
RECONFIGURE;

posted @ 2012-12-18 11:44  terryxym  阅读(305)  评论(0编辑  收藏  举报