Se installando GROUP_CONCAT si riscontra il seguente errore:
‘clr strict security’ option of sp_configure is set to 1
occorre eseguire:
EXEC sp_configure 'show advanced options', 1;
RECONFIGURE;
EXEC sp_configure 'clr strict security', 0;
RECONFIGURE;
Category:
SQL