在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
原文地址:https://www.cnblogs.com/fhuafeng/p/2082579.html