I have a bunch of sql scripts that create / drop sequences, users and other objects. I\'m running these scripts through liquibase, but they fail because oracle complains whe
liquibase preconditions didn't check for existing sequences for me. So, after multiple attempts, I tried simple
DROP SEQUENCE IF EXISTS "TABLENAME_ID_seq";