Forum Discussion

TorInge's avatar
TorInge
Level 3
8 years ago

How to delete archives stored on Centera with 10 years of retention

We are moving archives away from Centera to a new storage device, as we are going to decommission the Centera device. While I was moving archives and deleting the old ones when finished, I noticed th...
  • ChrisLangevin's avatar
    8 years ago

    EV will not be able to delete the item data from the Centera until the Retention Period has expired. It is possible to remove the references from EV's databases (effectively orphaning the Centera data) but you will need to open a support case to have this done, as it's not trivial.

     

    The expiry date shown in the dtrace is recorded as a DATE type. This means that the number you see in the trace represents the number of days since December 30, 1899, with time of day represented by the fractional part. In the case of the example you posted, adding 45340.812847 days to December 30, 1899 yields an expiry date for this item of February 18, 2024.

    To convert in PowerShell, use this formulation:

    ([datetime]"12-30-1899").AddDays(<DATE value>)

    Example using the value you posted:

    PS> ([datetime]"12-30-1899").AddDays(45340.812847)
    
    Sunday, February 18, 2024 7:30:29 PM