Copying configuration changes between environments

Has anyone figured out how to safely move configuration changes between environments in Tessitura?  For instance, we have code being developed in our QA environment and when it gets pushed live, our CRM will have to re-enter those config changes in live.  Is there a way to automate this without losing key information?  This is different than a copy down.  Sort of more like a 'copy up'.

Parents
  • That's a perennial problem to developing in a database, especially where the default data flow direction is from Live->Test.

    Unless your use case is very specific and repeatable, the effort in creating a utility to just copy/overwrite the data you want would likely be greater than the use you would get out of it.  I simply, whenever a project is big enough, make a point of having all of my configuration changes written into an insert/update script.  This has the added benefit of allowing me to resume customization work quickly if we need to do a Live->Test copy in the middle of development.

Reply
  • That's a perennial problem to developing in a database, especially where the default data flow direction is from Live->Test.

    Unless your use case is very specific and repeatable, the effort in creating a utility to just copy/overwrite the data you want would likely be greater than the use you would get out of it.  I simply, whenever a project is big enough, make a point of having all of my configuration changes written into an insert/update script.  This has the added benefit of allowing me to resume customization work quickly if we need to do a Live->Test copy in the middle of development.

Children
No Data