Home
Analysis Services
Azure
CLR Integration
High Availability
Open Source
Security
SQL Server 2008
SQL Server 2012
SQL Server 2014
SQL Server 2016
SQL Server 2017
SQL Server 2019
Tips
Troubleshooting
Tuning
/*
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