Solutions :
Solutions :
(You may need to execute the following SQL Statements to configure the Linked Server initially)
or
Before doing any .Net coding in SQL Server you must enable the CLR. In SQL Server 2005, the CLR is OFF by default.
This is done in an effort to limit security vulnerabilities. Following is the script which will enable CLR.
EXECUTEThis is done in an effort to limit security vulnerabilities. Following is the script which will enable CLR.
Solutions :
(You may need to execute the following SQL Statements to configure the Linked Server initially)
EXECUTE sp_CONFIGURE 'show advanced options', 1 RECONFIGURE with OverrideEXECUTE sp_CONFIGURE 'Ad Hoc Distributed Queries', 1 RECONFIGURE with Overrideor
EXEC sp_CONFIGURE 'show advanced options' , '1';
GORECONFIGURE;
GO
EXEC sp_CONFIGURE 'clr enabled' , '1'
GO
RECONFIGURE;
GO
No comments:
Post a Comment