Configure Data Retention Periods
Use the following procedure to modify the retention period for array performance by updating database system parameters.
1. Log in to the Portal Server as user aptare.
2. Type the following command:
sqlplus portal/<portal_password>
SELECT param_value
FROM ptl_system_parameter
WHERE param_name='<parameter_name>';
4. Update the system parameter by substituting the new interval for <new_value>.
UPDATE ptl_system_parameter set param_value=<new_value> WHERE param_name='<parameter_name>';
commit;