...
Deployment Packager distinguishes SQL script types. When using SCM tools, you place scripts into a directory structure according to type. Deployment Packager processes the files according to type. It packages by type in two general ways:
- Process and archive: done for DDL and DML changes that are typically deployed once. . Done for "non-rerunnable" types: DDL folder or packageMethod=CONVERT, DATA_DML folder or packageMethod=DATA_DML, SQL folder or packageMethod=SQLFILE, SQL_
DIRECT folder or packageMethod=DIRECT. These changes are typically only deployed once. Use ignore/unignore or cleanup/replace with these types. - Processed in place. done Done for stored logic and specific DDL and DML changes that folders FUNCTION, PACKAGE, PACKAGEBODY, PROCEDURE, TRIGGER, VIEW, or packageMethod=STOREDLOGIC. Use versioning with these types. These changes are stored in place and can be modified and deployed multiple times.
...