Hi team.
Is it okay to delete a completed job list using the SQL statement below?
(1) delete specific date - ESP_WSS_JOB
delete from esp_wss_job where appl_id in (select appl_id from esp_wss_appl where to_char(complete_date_time,'YYYYMMDD') = '20250701');
(2) delete specific date - ESP_WSS_APPL
delete from esp_wss_appl where to_char(complete_date_time,'YYYYMMDD') = '20250701');
Is it okay to delete a completed job using the SQL statement below?
Thanks
WG
-------------------------------------------