Can i create an assembly from a stream much like MSSMS generated assembly script?
I need to create an assembly from a DLL that is placed in a directory the SQL Server doesn’t have access to.
The assembly installer does have access to the assembly though.
So my question is: can i read the assembly and generate a create from the stream read?
Thanks.
I think i figured it out..
I’m using Tomalak’s Byte Array to Hexadecimal method from this post.
Then i just concat this string to the CREATE ASSEMBLY statement.
The code is written with a small DLL assembly in mind.