the net habilitar framework enabled enable disabled disable code check sql sql-server clr

net - SQL Server: ¿Cómo verificar si CLR está habilitado?



habilitar clr enabled sql server (5)

SQL Server 2008: ¿Cuál es una forma fácil de verificar si clr está habilitado?



La respuesta aceptada necesita un poco de aclaración. La fila estará allí si CLR está habilitado o deshabilitado. El valor será 1 si está habilitado, o 0 si está deshabilitado.

Uso esta secuencia de comandos para habilitar en un servidor, si la opción está deshabilitada:

if not exists( SELECT value FROM sys.configurations WHERE name = ''clr enabled'' and value = 1 ) begin exec sp_configure @configname=clr_enabled, @configvalue=1 reconfigure end



SELECT * FROM sys.configurations WHERE name = ''clr enabled''


select * from sys.configurations where name = ''clr enabled''