Changeset options for oracle

I want to ignore some of the ORA errors , How to specify ignore those errors . what to specify changeset .

please share what are the options exists in changeset .

Regards ,
Ramesh

Hi @kalyandrug,

You need to add WHENEVER SQLERROR CONTINUE inside your changeset, and configure your changeset to use runWith:sqlplus .

Hello @kalyandrug .

When using Liquibase Open Source Version - I often add “failOnError:false” to my SQL changesets.
e.g. when I want to add some SQLcl commands to my changesets and have them in my UpdateSQL scripts - normally it would fail when running “liquibase update”, but thanks to this parameter I can have it added to my generated SQL script.