|
|
|
|
|
by bazoom42
368 days ago
|
|
Stored procedures are actually great when used for bulk set-oriented data operations. Much simpler and more efficient than passing large datasets back and forth between servers. The problems arise when processing data row-by-row using cursors or simular procedural approach, or with too much buisness logic in procedual form. I guess the moral of the story is: use the right tool for the job instead of deciding on the “one true pattern”. |
|