These scripts have been consolidated into plsql-util.sql.
01_validator_readonly.sql- Consolidated intoplsql-util.sqlREADONLY category01_validator_write.sql- Consolidated intoplsql-util.sqlWRITE category01_validator.sql- Deprecated (combined both read-only and write)02_workflow_validator.sql- Consolidated intoplsql-util.sqlWORKFLOW categorypost_create_table_checks.sql- Consolidated intoplsql-util.sqlWORKFLOW post_create operation
All functionality from these scripts is now in templates/plsql-util.sql:
- Single unified utility
- Category-based architecture (READONLY, WRITE, WORKFLOW, CLEANUP)
- Consistent error handling
- All queries use ALL_* views with owner filters
Instead of:
@validation/01_validator_readonly.sql check_existence OWNER TABLEUse:
@plsql-util.sql READONLY check_existence OWNER TABLE- Historical reference for migration logic
- Understanding evolution of validation architecture
- Debugging if
plsql-util.sqlissues arise
cleanup_tables.sql- Generic cleanup utility (standalone)instead_of.sql- Educational INSTEAD OF trigger examplerollback/emergency_rollback.sql- Emergency rollback procedures