SQL Server: How to check if CLR is enabled?

magnattic picture magnattic · Jan 26, 2011 · Viewed 108.5k times · Source

SQL Server 2008 - What is an easy way to check if clr is enabled?

Answer

Jason picture Jason · Jan 26, 2011
SELECT * FROM sys.configurations
WHERE name = 'clr enabled'