Rem drv:
Rem
Rem $Header: purge_schema_upgrade.sql 25-jul-2005.14:04:29 chyu Exp $
Rem
Rem purge_schema_upgrade.sql
Rem
Rem Copyright (c) 2005, Oracle. All rights reserved.
Rem
Rem NAME
Rem purge_schema_upgrade.sql -
Rem
Rem DESCRIPTION
Rem
Rem
Rem NOTES
Rem
Rem
Rem MODIFIED (MM/DD/YY)
Rem chyu 07/25/05 - modifying the upgrade header
Rem chyu 07/18/05 - adding the header
Rem gsbhatia 06/26/05 - New repmgr header impl
Rem rpinnama 02/17/05 - rpinnama_bug-4107983
Rem rpinnama 02/14/05 - Created
Rem
ALTER TABLE MGMT_PURGE_POLICY_TARGET_STATE
ADD (
last_apply_time DATE DEFAULT NULL,
last_apply_status NUMBER DEFAULT 0,
last_apply_msg VARCHAR2(256) DEFAULT NULL,
last_apply_rows NUMBER DEFAULT 0
);
COMMENT ON COLUMN MGMT_PURGE_POLICY_TARGET_STATE.last_apply_time IS
'the date/time when the purge policy was called for the target/purge-policy.';
COMMENT ON COLUMN MGMT_PURGE_POLICY_TARGET_STATE.last_apply_status IS
'the status of the last application of purge policy for the target/purge-policy.';
COMMENT ON COLUMN MGMT_PURGE_POLICY_TARGET_STATE.last_apply_msg IS
'the error message of the last application of purge policy for the target/purge-policy.';
COMMENT ON COLUMN MGMT_PURGE_POLICY_TARGET_STATE.last_apply_rows IS
'the number of rows processed during the last application of the target/purge-policy.';