Skip to Main Content

SQLcl: MCP Server & SQL Prompt

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

How can project stage generate XML changes

Tim Carpenter4 days ago — edited 4 days ago

I thought that the project stage command would generate XML changes when stage.generatedFormat was set to liquibase or xml. But no matter what I set it to, I always get sql.

Process being

SQL> alter table my_schema.my_table add some_column varchar2(10);
SQL> project export -o my_schema.my_table
SQL> !git commit -m “added column” src/database/my_schema/tables/my_table.sql
SQL> project stage

The resultant file is always dist/releases/next/my-branch/changes/my_schema/tables/my_table.sql with an alter table statement in it rather than an xml file with an xml change type.

How can I generate XML changes?

Comments
Post Details
Added 4 days ago
5 comments
51 views