I am trying to execute multiple scripts from one SQL file, running it in sequence. E.g. if I have V1.0__Test0.sql, and the contents are:
@V1.1__Test1.sql;
@V1.1__Test2.sql;
If I run the migrate option, I get an ORA-00900: invalid SQL statement error. Does Flyway support what I am trying to achieve?
@is a SQL*Plus command not a standard SQL statement. So that can't be used through JDBC (or any other tool that is not SQL*Plus)