• catloaf@lemm.ee
    link
    fedilink
    English
    arrow-up
    4
    ·
    9 days ago

    I have never had a problem upgrading a SQL server. Granted, we aren’t talking about anything fancy like database sharding, but the janky applications I work with have never complained.

    • r00ty@kbin.life
      link
      fedilink
      arrow-up
      5
      ·
      9 days ago

      I think in 99% of use cases, upgrading isn’t a problem. Most of the time new SQL versions are backward compatible. I’ve never personally had a problem upgrading a database for a product that expects an older version.

      They do have compatibility modes too, but those only go back so far too.

      But, I think companies with their production databases for perhaps older complex systems are likely very weary of upgrading their working database. This is most likely where this situation comes from. Imagine being the person responsible for IT, that upgraded the DB server and database to the latest version. Everything seemed to be working fine. Then accounts run their year-end process, it falls over and now there are months of data in the newer version that won’t work properly. It’d be an absolute pain to get things working again.

      Much safer to leave that SQL 2005 server doing what it does best. :P

      • Mbourgon everywhere@lemmy.world
        link
        fedilink
        English
        arrow-up
        2
        ·
        9 days ago

        It’s not just SQL, it’s frequently the OS. Corporate tools don’t support the new OS so you install the “supported” OS, which is now several years old, and which only supports the next version or two of SQL Server. Microsoft also didn’t help things with 2012R2, which was 2 years later but had the same EOL as 2012.

        And yes, you can set compatibility level on the database, but there are still edge cases where the engine version matters. And the business prioritizes, but upgrades are lower on the list than money-making features.

    • cron@feddit.de
      link
      fedilink
      English
      arrow-up
      2
      ·
      9 days ago

      Apparently, it is not only my oberservation, but the article says similarly:

      The inconsistent approach to backward compatibility in decades past may also have played a part.

      However, I’m not a db admin and my perspective might be biased (infosec).

      • catloaf@lemm.ee
        link
        fedilink
        English
        arrow-up
        2
        ·
        9 days ago

        I don’t know what they’re talking about there, but that might just be ignorance on my part, because I’m not a database administrator. For the basic use cases, SQL hasn’t changed in decades. For simple applications you could even change from MSSQL to MariaDB to postgres and make only minor changes.