I need to drop a DB2 table if it exists, or drop and ignore errors.
This is simpler and works for me:
DROP TABLE SCHEMA.TEST IF EXISTS;