About 1,760,000 results
Open links in new tab
  1. What is the purpose and risks of enabling SQL CLR?

    Jun 8, 2018 · EXEC sp_configure 'clr enabled', 1; RECONFIGURE; I am curious to know what is the purpose of SQL CLR and the risks of enabling this in production environment?

  2. Calling an API from SQL Server stored procedure

    Writing CLR code to enable a SQL process to call web-services is the sort of thing that can bring a SQL box to its knees if done badly. Imagine putting the CLR function in a view somewhere. …

  3. SQL CLR: Streaming table valued function results

    SQL CLR: Streaming table valued function results Asked 14 years, 4 months ago Modified 10 years, 11 months ago Viewed 9k times

  4. Call web service from SQL CLR? - Stack Overflow

    Oct 1, 2015 · I have a SQL Server 2012 stored procedure that returns a table. I have to modify that SP to add an additional value to the returned table. Unfortunately, that added value …

  5. How to create an asymmetric key in SQL Server - Stack Overflow

    Jan 10, 2024 · I am trying to create an UNSAFE assembly in SQL Server without having to alter any global database or server permissions such as EXEC sp_configure 'clr strict security', 0 or …

  6. Does or does not SQL Azure support CLR assemblies?

    May 20, 2016 · CLR Functions are not supported in Azure: Check here: Azure SQL Database Transact-SQL differences Under unsupported features it mentions ".NET Framework CLR …

  7. .net - SQL Server stops loading assembly - Stack Overflow

    Aug 12, 2011 · We have developed an assembly for SQL Server 2008 R2. The assembly has been working for a week. The managed stored proc inside the assembly was working fine for …

  8. SQL CLR - Cannot run SQL CLR from assembly - Stack Overflow

    I have a SQL CLR database project in VS 2013. I am deploying to SQL Server 2008 R2. I have done the below steps: USE master GO sp_configure 'clr enabled', 1 GO RECONFIGURE GO …

  9. sql - The Common Language Runtime (CLR) was loaded in an …

    Feb 19, 2024 · This can occur if an extended stored procedure or OLE Automation object running in SQL Server calls into managed code before the CLR integration runtime host loads the CLR.

  10. SQL Server: How to list all CLR functions/procedures/objects for ...

    SQL Server: How to list all CLR functions/procedures/objects for assembly Asked 15 years, 5 months ago Modified 1 year, 4 months ago Viewed 66k times