Generate PostgreSQL Schema using Java and Execute on Another Database at Runtime
I. Problem How to copy a PostgreSQL schema from one data source to another using Liquibase at run-time. The schema from the source data...

I. Problem
II. Solution
Outline
- Export the changelog from the source data source into a temporary file.
- Execute the temporary file (XML) that contains the changelog to the new data source.
Post a Comment