Hello,
we have a client that uses Documentum and recently complained that the database is too big (1 terabyte).
We have already set a job to clean the dm_audittrail table.
I analyzed the tables in the database and I realized that the main responsibility for the database size is the dmi_queue_item (about 49.5% from the whole database).
I extracted some data related to this table, it follows below:
1. number of records: 265 402 394
2. those with delete_flag = true: 84 969 - I know how to clean them
3. those with delete_flag = false, grouped by event
- dm_checkin: 20 271
- dm_destroy: 19 927
- dm_move_content: 143 215 038
- dm_readonlysave: 20534
- dm_save: 122 033 913
- DM_SYSADMIN: 66
- dm_unlock: 1
- Job_Failure: 8091
- wcmerror_procedure_error
I know that I can delete the ones that are just notifications - DM_SYSADMIN and Job_Failure.
The problem is that their count is too small in comparison with the other ones.
My question is IS IT SAFE to delete also dm_checkin, dm_destroy, dm_move_content, dm_readonlysave, dm_save?
Thanks