在sqlserver 2008中启用CLR
# 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
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'clr enabled', 1;
GO
RECONFIGURE;
GO