|
When implementing CLR in SQL Server, often times it easier for developers to use a singe assembly. This allows them to open a single Visual Studio Solution to add to or change existing CLR. To a DBA, this can lead to a problem with security in the database server. Rather than having a single assembly, it is instead better to separate the code out by safety level, placing all Safe Code in a common assembly. This helps to minimize the volume of code that has to be reviewed by the DBA to know how safe the Assembly is.
Read More..
|