This explains SQL stored procedures and their advantages.

  • @AlecSadler
    link
    English
    61 year ago

    Could you explain more? Almost everywhere I’ve worked from Fortune 250 on down has used stored procedures with applications and it seems extremely clean and performance-oriented.

    If anything, it separates code from the data more as far as I can tell, so maybe I’m missing something?

    Also, if something is somewhat data driven and there’s a bug, you simply alter a procedure versus doing a build and deploy of the entire application.

    • @[email protected]
      link
      fedilink
      English
      10
      edit-2
      1 year ago

      If anything, it separates code from the data more as far as I can tell, so maybe I’m missing something?

      Stored procedures are code – so you’re putting code in the database. How do you test that code? How do you source control that code? How do you roll back that code to the previous version or compare it to a previous version? How to know the history of that code? If that procedure is designed to work in together with application changes, how to test and deploy those together? This is all not impossible but it’s certainly more difficult and creates more potential failure points.

      Also, if something is somewhat data driven and there’s a bug, you simply alter a procedure versus doing a build and deploy of the entire application.

      That’s the problem. You write like that like it’s an advantage but you’re literally editing code live in production.

      The performance advantages of stored procedures are unsupported. Most database engines do not treat stored procedures any differently than regular queries. And it’s not that stored procedures aren’t optimized, it’s that queries are equally optimized.

      Fortune 250 on down has used stored procedures with applications and it seems extremely clean and performance-oriented.

      A lot of these companies also still use COBOL on mainframes (something I’ve actually worked on and don’t recommend either). Stored procedures made a lot more sense historically when SQL might actually have more expressive power than your programming language and when database interfaces were much complicated and non-standard.