在sqlserver 2008中启用CLR

# re: error: Execution of user code in the .NET Framework is disabled. Enable clr enabled configuration option
Pratik Shah
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 on 2011-06-16 12:46  洞幺人生  阅读(294)  评论(0编辑  收藏  举报