I have created a SQL CLR User defined function and deployed it to a database on a SQL Server instance, where it is working correctly.
Where does SQL Server store deployed CLR assemblies? Are they stored somewhere in the file system?
Deployed User CLR assemblies are stored in the database you deploy them to, not on the file system.
Execute
SELECT * FROM sys.assembly_files
the column called content
contains binary data is the assembly.
See CREATE ASSEMBLY
:
Creates a managed application module that contains class metadata and managed code as an object in an instance of SQL Server. By referencing this module, common language runtime (CLR) functions, stored procedures, triggers, user-defined aggregates, and user-defined types can be created in the database
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With