Microsoft® SQL Server 2012 Unleashed
by Ray Rankins, Paul T. Bertucci, Chris Gallelli, Alex T. Silverstein
T-SQL or CLR Stored Procedures?
One question that often comes up is whether it’s better to develop stored procedures in T-SQL or in the CLR. The best answer is that the method you choose really depends on the situation and what functionality the procedure needs to implement.
The general rule is that if the stored procedure will be performing data access or large set-oriented operations with little or no complex procedural logic, it’s better to create the procedure in T-SQL for best performance. The reason is that T-SQL works more closely with the data and doesn’t require multiple transitions between the CLR and the SQL OS.
However, most benchmarks have shown that the CLR performs better than T-SQL for procedures that require a high level of computation ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access