Kirsten
Kirsten

Reputation: 41

Does Flyway support executing multiple SQL scripts called from one SQL script?

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?

Upvotes: 1

Views: 2098

Answers (1)

Axel Fontaine
Axel Fontaine

Reputation: 35169

No. This is documented in the limitations: http://flywaydb.org/documentation/database/oracle.html#limitations

Upvotes: 1

Related Questions