TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Configuring & Checking CLR integration in SQL Server
Lajapathy Arun
May 11, 2012
4
k
0
0
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
In this blog we see, How to Configure CLR integration in SQL Server.
Configuring CLR integration
Now we are going to configure the CLR, by enabling it.
Enable Set 1
Disable Set 0
sp_configure
'show advanced options'
,
1
;
GO
RECONFIGURE
;
GO
sp_configure
'clr enabled'
,
1
;
GO
RECONFIGURE
;
GO
Disabling
sp_configure
'show advanced options'
,
1
;
GO
RECONFIGURE
;
GO
sp_configure
'clr enabled'
,
0
;
GO
RECONFIGURE
;
GO
Check whether the CLR is enabled or not using the below query:
SELECT
*
FROM
sys
.
configurations
WHERE
name
=
'clr enabled'
Thanks for reading:)
Configuring CLR integration in SQL Server
Next Recommended Reading
Difference between SQL Server 2008 and SQL Server 2012