Hello,
I just want to know that I have configured the database task schedules in UAT environment and performed the functional tests. The database tasks are:
- Shrink LOB Segments
- Validate Indexes
- Foundation1 Monitoring
- Rebuild Indexes
- Update Rowkey Column
I want to know that are functional tests performed inside IFS Cloud is enough to move them to Production or tests at Database level is required.
Regards,
Mani
Hi @MANI0202 ,
Functional testing inside IFS Cloud is the main acceptance for these — they are standard IFS-delivered tasks, so separate database-level testing is not required. However, since these are DB maintenance operations, I'd recommend verifying a few things at database level in UAT before promoting:
- Background job logs — confirm each task completed without errors or warnings across multiple runs, not just once
- Index status — after Rebuild/Validate Indexes, check no indexes are left in UNUSABLE state (DBA_INDEXES)
- Space results — after Shrink LOB Segments, confirm space was actually reclaimed (DBA_SEGMENTS before/after)
- Execution duration — note how long each task takes in UAT; you'll need this to size the PROD maintenance window
For Production:
- Schedule Rebuild Indexes and Shrink LOB in an off-peak window — they are resource-intensive
- Don't stack the heavy tasks at the same time; stagger them
- Ensure a recent backup exists before the first PROD run
If all UAT runs are clean and the durations are acceptable, you're good to move them to PROD.