You could call them using sqlfile tag inside changeset. They cant have sqlplus commands but for simple sql files it works very nicely.
You could call them using sqlfile tag inside changeset. They cant have sqlplus commands but for simple sql files it works very nicely.
I am using liquibase to execute my sql scripts , my database is oracle. I would like to how to invoke multiple sqls .
My changeset looks like this
<executeCommand executable = C:\sqlplus.exe >
in test.sql file i have two more sql files which contains my actual sql scripts (two insert into table scripts)
insert1.sql
insert2.sql
what i am trying to do is , trying invoke couple of sql scripts from one test.sql.This is to know if it is possible to do or not?
When run liquibase went to hang state.
Note : I had used exit; / at the end of the actual scripts and the insert1.sql works perfect from liquibase when called directly.