Assumptions: assembly's name: "SQLCLR.dll".In the dll, you have an aggregate function: "ConcateAll" which concatenate all string. The dll is in database server's c:\temp directory.
To enable CLR on SQL Server:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sp_configure 'clr enabled', 1 | |
GO | |
RECONFIGURE | |
GO |
To clean up (remove the CLR function and assembly from database)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
IF EXISTS (SELECT * FROM sys.assembly_modules WHERE assembly_class='ConcateAll') | |
BEGIN | |
DROP AGGREGATE dbo.ConcateAll | |
END | |
IF EXISTS (SELECT * FROM sys.assemblies WHERE name='SQLCLR') | |
BEGIN | |
DROP ASSEMBLY [SQLCLR] | |
END |
To upload assembly to SQL Server
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE ASSEMBLY [SQLCLR] | |
FROM 'c:\temp\SQLCLR.dll' | |
GO |
Create aggregate function based on CLR assembly
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE AGGREGATE dbo.ConcatAll(@input NVARCHAR(4000)) | |
RETURNS NVARCHAR(4000) | |
EXTERNAL NAME SQLCLR.ConcatAll |
Grant execution permission to user
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GRANT EXECUTE ON ConcateAll To my_user |
No comments:
Post a Comment