Configure System Parameters > Enable/Disable Data Persistence System Logging
  
Version 10.0.01
Enable/Disable Data Persistence System Logging
Use the following procedure to configure a system parameter to enable or disable data persistence logging.
1. Log in to the Portal Server as user aptare.
2. Type the following command:
sqlplus portal/<portal_password>
3. To disable logging, set the system parameter to 0:
 
UPDATE ptl_system_parameter set param_value=0 WHERE param_name='DATACOLL_LOGGING_ENABLED';
commit;
 
4. To enable logging, set the system parameter to 1:
 
UPDATE ptl_system_parameter set param_value=1 WHERE param_name='DATACOLL_LOGGING_ENABLED';
commit;