If you're getting started with SQL Server 2005 Express and you're trying to use some of the new CLR functionality, you might be surprised to run into several errors when you’re trying to get your new CLR objects deployed. That's because the CLR is disabled by default in both SQL Server 2005 and SQL Server 2005 Express. To get your CLR objects deployed, you first need to enable the CLR support in SQL Server 2005 Express. To do so, you can use either the SQL Server Management Studio Query Editor or the sqlcmd command-line utility to enter the following set of T-SQL commands:

EXEC sp_configure 'clr enabled' , '1'
GO
reconfigure;
GO

End of Article




You must log on before posting a comment.

If you don't have a username & password, please register now.

Reader Comments

Disabled by default : so is there any problems if we enable this WRT Injection or memory like etc....

Regards chandra pathivada

sekharchandra

Article Rating 2 out of 5

 
 

ADS BY GOOGLE