About Me

Barking, Essex, United Kingdom
MCITP DBA ,MCITP BI & Oracle OCP 11G

Tuesday, February 10, 2015

Enable the CLR for the .Net Framework


EXEC sp_configure 'show advanced option', '1';
go
RECONFIGURE;
go
EXEC sp_configure;

USE master;
GO
EXEC sp_configure 'clr enabled', '1';


RECONFIGURE;

go

No comments:

Post a Comment