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

# re: error: Execution of user code in the .NET Framework is disabled. Enable clr enabled configuration option
You can run the following to enable CLR in SQL server 2008.

sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'clr enabled', 1;
GO
RECONFIGURE;
GO
Posted @ 3/17/2009 7:08 AM  
posted @ 2010-11-09 16:54  peterlee  阅读(1417)  评论(0)    收藏  举报