Hello,
We are concerned about the PDF_ARCHIVE_TAB blobs not being cleaned up by the daily “Heavy Cleanup” Database task. Despite the expiry date passing for the PDFs, the blobs remain in the database.
Given that storage costs are a significant factor, how can we effectively manage the continuously growing database due to these blobs?
By using following query, we discovered the yearly increase of 3TB
SELECT EXTRACT(YEAR FROM created) AS year,
SUM(DBMS_LOB.GETLENGTH(PDF)) / 1048576 AS total_size_mb_PDF_ARCHIVE
FROM PDF_ARCHIVE
GROUP BY EXTRACT(YEAR FROM created)
ORDER BY year;
Anyone experience with the appropriate settings in IFS Cloud ?
Besr Regards