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
Hi edmondx0001,When you deal with database scripts either in manual or automation scripts, I recommend using idempotent SQL Scripts as per Database best practices for deployment, which can be call as rerunnable script. These scripts can be used for creating table, alter, create view and other scripts use of which of information_schema. This will use be useful when you use third party automation pipelines. As per your problem statement i recommend you use replace keyword instead of insert.below is example of idempotent sql script.