how to execute .Net programms in SQL Server?
CLR integration in SQL Server
(4 posts) (2 voices)-
Posted 11 months ago #
-
to know more about CLR integration in SQL Server visit http://www.codedefiner.com/vbnet/CLRinSQL.aspx
Posted 11 months ago # -
Can you provide sample code for SQLCLR?
Posted 11 months ago # -
hi,
EXEC sp_configure 'show advanced options' , '1';
go
reconfigure;
go
EXEC sp_configure 'clr enabled' , '1'
go
reconfigure;you can enable service broker in SQL Server 2005 & SQL Server 2008.
For more http://www.codedefiner.com/vbnet/CLRinSQL.aspxPosted 11 months ago #
Reply
You must log in to post.