Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does or does not SQL Azure support CLR assemblies?

We've got a couple of on-premises dbs and we're seeing if we can migrate them to SQL Azure. Some of those dbs have a couple of user defined functions written in C# in an assembly (SAFE). After running a search, I've found a couple of posts which contradict each other. Some say that v12 supports CLR code. Others say it doesn't. So, here are my questions:

  • Does V12 supports embedding clr assemblies?
  • How can we export the generation script for azure with the assembly? Whenever we set the export option to azure we end up getting an error saying that clr user defined functions are not supported in azure.

Thanks guys!

Luis

like image 981
Luis Abreu Avatar asked May 20 '16 09:05

Luis Abreu


People also ask

Is CLR supported in Azure SQL?

CLR functionality, such as CLR user functions, are not supported for Azure SQL Database.

Which of the following T SQL feature is not supported on SQL Azure?

The CREATE TABLE and ALTER TABLE statements have FILETABLE and FILESTREAM options that can't be used on SQL Database because these features aren't supported.

Which is not supported in SQL Azure?

SQL Server 2008 features that are not supported by Azure SQL Database: Change Data Capture. Data Auditing. Data Compression.

How do you check if CLR is enabled or not?

To determine if CLR is enabled, execute the following commands: EXEC SP_CONFIGURE 'show advanced options', '1'; RECONFIGURE WITH OVERRIDE; EXEC SP_CONFIGURE 'clr enabled';


1 Answers

CLR Functions are not supported in Azure:

Check here:

Azure SQL Database Transact-SQL differences

Under unsupported features it mentions ".NET Framework CLR integration with SQL Server"

I believe there may be some confusion as to whether it does or doesn't support them as they used to in one version, then they removed support.

Here is a link detailing the fact they were supported, but got pulled, apparently due to a security issue:

Breaking News, Literally: SQL CLR Support Removed from Azure SQL DB

like image 151
steoleary Avatar answered Sep 21 '22 14:09

steoleary