CLR Integration in SQL Server (Problem in "sp_configure 'clr enabled', 1")
-
Tuesday, August 21, 2007 9:26 AM
HIiiiiiii all
I have installed both sql server 2000 and sql server 2005 Developer Edition in my system as well as .net 2003 and 2005. Now i want to enable clr integration in sql server 2005. so when i write
sp_configure 'clr enabled', 1
GO
RECONFIGURE
GOIn Sql Statement then it gives me error
Msg 15123, Level 16, State 1, Procedure sp_configure, Line 78
The configuration option 'clr enabled' does not exist, or it may be an advanced option.
Valid configuration options are:I have created a database user which have all the rights and roles. and while i check the stored system procedure sp_configure it is affacting mainly two system tables in the master tables
master.dbo.spt_values
master.dbo.sysconfigures
and this table does not contains field like ''clr enabled'' so tht we can change the stateso plz plz help me to enable clr in the sql server 2005.
I need it so muchhh...Thanking you in advance
All Replies
-
Tuesday, August 21, 2007 10:58 AM
Try enabling the 'advanced options' before you enable clr
sp_configure
'show advanced options', 1OR
Use the surface area configuration manager to 'Enable CLR Integration'
Programs->Microsoft SQL Server ->Config tools->Surface Area Config Mgr.
-
Tuesday, August 21, 2007 11:09 AM
Hiiiii
I have also tried the enabling advance option using this script
EXEC
sp_configure 'show advanced options', 1 -- make them availablereconfigure
EXEC
sp_configure 'clr enabled', 1 -- turn on OLEreconfigure
EXEC
sp_configure -- to see the new valueEXEC
sp_configure 'show advanced options', 0 -- make them unavailablereconfigure
but this script also gives me error like this
DBCC execution completed. If DBCC printed error messages, contact your system administrator.
Configuration option 'show advanced options' changed from 1 to 1. Run the RECONFIGURE statement to install.
Msg 15123, Level 16, State 1, Procedure sp_configure, Line 78
The configuration option 'clr enabled' does not exist, or it may be an advanced option.
Valid configuration options are:
DBCC execution completed. If DBCC printed error messages, contact your system administrator.
Configuration option 'show advanced options' changed from 1 to 0. Run the RECONFIGURE statement to install.
and i dont know much about surface area config mgr but i think it is for remote database or whtPlz help me i need this urgently and
thnxxxxx again.......
-
Tuesday, August 21, 2007 11:26 AM
Surface Area Config Mgr. is the easiest way to do it.
Open up Programs -> Microsoft SQL Server 2005 -> Configuration Tools -> SQL Server Surface Area Configuration.
Click on the 'Surface Area Configurations for Features' link at the bottom of the dialog to bring up next dialog.
In this second dialog, in the left pane select 'View by instance' tab. It shows you a tree view, something like
- MSSQLSERVER
- Database Engine
Ad Hoc Remote Queries
CLR Integration
DAC
...
Choose MSSQLSERVER/Database Engine/CLR Integration
Check the 'Enable CLR Integration' in the right pane and say 'OK'.
Hopefully this should set you up.
-
Tuesday, August 21, 2007 11:35 AM
Hiiiiiiiii
I have set up this sucessfully
Really this is easyest way to do this
thnxxxxxxx a lot
and how do i check tht my clr confitration is enabled or not
because when i write query like this
exec
sp_configure 'show advance options'then this again executes with the previous err....
thnx a lot
-
Tuesday, August 21, 2007 11:46 AM
select
[value_in_use] from sys.configurations where name = 'clr enabled' -
Thursday, August 23, 2007 9:34 AM
Hi,
I don't see CLR Integration and all that you have listed above. I did an upgrade from SQL 2000 to 2005. Have I missed out something during the installation?
Thanks in advance,
APUK
-
Thursday, August 23, 2007 11:31 AM
Hi,
I re-installed SQL 2005 with upgrade option and got those options.
Thanks,
APUK

