Posts

Showing posts with the label CLR

Enable "clr enabled" configuration

  -- check if CLR is enabled SELECT * FROM sys . configurations WHERE name = 'clr enabled'   -- Value field i.e 0 - disable, 1- enable -- For enable clr sp_configure 'show advanced options' , 1 ; GO RECONFIGURE ; GO sp_configure 'clr enabled' , 1 ; GO RECONFIGURE ; GO