What is the best practice to deploy update in a cloud database table

Hello all, currently I have 3 org, dev, QA, and prod.  I have made new inserts in a cloud data base table in the dev environment.  Given that the same table in the QA org have the same 14 entries as the table in dev org, what would be the best practice to deploy the update from said table from the dev to QA org.  Any help would be appreciated.

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Associate Developer

    Hi,

    1. Create SQL scripts for your changes in the dev environment.
    2. Back up the QA database before applying any changes.
    3. Run the SQL scripts in the QA environment to replicate the dev changes.
    4. Verify the updates in QA before considering deployment to production.

    Creating SQL scripts of your database changes, backing up your QA database, running the scripts in QA, and verifying the updates before moving to production while using version control for script management is a best practice for deploying updates across environments.

Reply
  • 0
    Certified Associate Developer

    Hi,

    1. Create SQL scripts for your changes in the dev environment.
    2. Back up the QA database before applying any changes.
    3. Run the SQL scripts in the QA environment to replicate the dev changes.
    4. Verify the updates in QA before considering deployment to production.

    Creating SQL scripts of your database changes, backing up your QA database, running the scripts in QA, and verifying the updates before moving to production while using version control for script management is a best practice for deploying updates across environments.

Children
No Data