Post Made Community Wiki by Community
show/hide this revision's text 3 corrected spell mistakes and some grammar

CON

I find that doing many things in lots of processing inside stored procedure procedures would make your DB server a single point of inflexibility, when it comes to scaling your act.

However performing thing doing all that crunching in codeyour program as opposed to the sql-server, might allow you to scale more if you have multiple servers that runs your code. Of-course this does not apply to stored procs that only does the normal fetch or update but to ones that perform more processing like looping over datasets.

PROS

  1. Performance for what it may be worth (avoids query parsing by DB driver / plan recreation etc)
  2. Data manipulation is not embedded in my the C/C++/C# code which means i have less low level code to look through. SQL is less verbose and easier to look through when listed separately.
  3. Due to the separation folks are able to find and reuse SQL code much easier.
  4. Its easier to change things when schema changes - you just have to give the same output to the code and it will work just fine
  5. Easier to port to a different database.
  6. I can list individual permissions on my stored procedures and control access at that level too
  7. I can profile my data query/ persistance code separate from my data transformation code
  8. I can implement changeable conditions in my stored procedure and it would easy to customize at a customer site.
  9. It becomes easier to use some automated tools to convert my schema and statements together rather than when it is embedded inside my code where i would have to hunt them down
  10. Ensuring best practices for data access is easier when you have all your data access code inside a single file - I can check for queries that access the non performant table or that which uses a higher level of serialization or select *'s in the code etc.
  11. It becomes easier to find schema changes / data manipulation logic changes when all of it is listed in one file.
  12. It becomes easier to do search and replace edits on SQL when they are in the same place eg change / add transaction isolation statements for all stored procs.
  13. I and the DBA guy find that having a separate SQL file is easier / convenient when the DBA has to review my SQL stuff.
  14. Lastly you dont have to worry about SQL injection attacks because some lazy member of your team did not use parametrized queries when using embedded sqls.

Edit - corrected spell mistakes and some grammar

show/hide this revision's text 2 Added con

CON

I use find that doing many things in stored procedure would make your DB server a single point of inflexibility, when it comes to scaling your act.

However performing thing in code, might allow you to scale more if you have multiple servers that runs your code. Of-course this does not apply to stored procs all that only does the time and here are my reasonsnormal fetch or update but to ones that perform more processing like looping over datasets.

PROS

  1. Performance for what it may be worth (avoids query parsing by DB driver / plan recreation etc)
  2. Data manipulation is not embedded in my C/C++/C# code which means i have less low level code to look through. SQL is less verbose and easier to look through when listed separately.
  3. Due to the separation folks are able to find and reuse SQL code much easier.
  4. Its easier to change things when schema changes - you just have to give the same output to the code and it will work just fine
  5. Easier to port to a different database.
  6. I can list individual permissions on my stored procedures and control access at that level too
  7. I can profile my data query/ persistance code separate from my data transformation code
  8. I can implement changeable conditions in my stored procedure and it would easy to customize at a customer site.
  9. It becomes easier to use some automated tools to convert my schema and statements together rather than when it is embedded inside my code where i would have to hunt them down
  10. Ensuring best practices for data access is easier when you have all your data access code inside a single file - I can check for queries that access the non performant table or that which uses a higher level of serialization or select *'s in the code etc.
  11. It becomes easier to find schema changes / data manipulation logic changes when all of it is listed in one file.
  12. It becomes easier to do search and replace edits on SQL when they are in the same place eg change / add transaction isolation statements for all stored procs.
  13. I and the DBA guy find that having a separate SQL file is easier / convenient when the DBA has to review my SQL stuff.
  14. Lastly you dont have to worry about SQL injection attacks because some lazy member of your team did not use parametrized queries when using embedded sqls.
show/hide this revision's text 1