| |
/*
Enabling CLR Integration
By: Alberto Morillo - www.sqlcoffee.com
In order to be able to catalog assemblies on SQL Server 2005, CLR Integration
must be enabled in the server. Execute the following code to enable the feature
If you call a CLR procedure without having the CLR Integration enabled, you will
get the following
error message:
Msg 6263, Level 16, State 1, Line 2
Execution of user code in the .NET Framework is disabled.
After enabling CLR, you don't need to restart the server
*/
SP_CONFIGURE 'clr_enabled', 1
GO
RECONFIGURE
GO
|