Home Forums Cloud Computing SQL Azure - Development Is Azure a good decision for a major production application deployment? RE: Is Azure a good decision for a major production application deployment?

  • Eric M Russell - Wednesday, January 18, 2017 9:16 AM

    Yes, SQL Azure's contained database model will take some getting used to, but the issue isn't just about security, there are technical reasons why this is done. In a cloud hosted environment, the infrastructure topology isn't as static as it is with on-premises databases. Databases are routinely shuffled between VMs and data centers, so joining across databases is problematic.

    1.  Work with SQL Azure by containing your user add-on tables in a separate schema rather than a separate database.
    2.  SQL Azure and on-premises are not the only two options, there is also Azure IaaS (infrastructure as a server) hosting where Microsoft provides an instance of Windows Azure upon which you provision a preconfigured non-Azure instance of SQL Server, or you can install SQL Server using your own preexisting media and license.

    I'm liking the cloud less and less.

    --Jeff Moden


    RBAR is pronounced "ree-bar" and is a "Modenism" for Row-By-Agonizing-Row.
    First step towards the paradigm shift of writing Set Based code:
    ________Stop thinking about what you want to do to a ROW... think, instead, of what you want to do to a COLUMN.

    Change is inevitable... Change for the better is not.


    Helpful Links:
    How to post code problems
    How to Post Performance Problems
    Create a Tally Function (fnTally)