DATAFILES DO NOT CHANGE TO READ ONLY MODE AFTER ENTERING THE ARCHIVING PERIOD
(Doc ID 2737544.1)
Last updated on APRIL 17, 2023
Applies to:
Oracle Audit Vault and Database Firewall - Version 20.1.0.0.0 and laterInformation in this document applies to any platform.
Symptoms
AV_ILM_0608_0614 tablespace is in ONLINE status even after the archive period stated. From the below query we can check that tablespace has entered archive period on 01-OCT-2020. As per this date the status column of the dba_tablespace must show READ ONLY. But it is not the case.
SQL> select a.tablespace_name, a.status, to_char(b.bytes,'999,999,999,999')
"BYTES",
2
to_char(add_months(to_date('01-01-1970','MM-DD,YYYY'),substr(a.tablespace_name
,9,3)+1),'DD-MON-YYYY') "WHEN PLACE OFFLINE",
3
to_char(add_months(to_date('01-01-1970','MM-DD,YYYY'),substr(a.tablespace_name
,14,3)+1),'DD-MON-YYYY') "WILL BE DELETED",
4
(-1)*months_between(to_char(add_months(to_date('01-01-1970','MM-DD,YYYY'),subs
tr(a.tablespace_name,9,3)),'DD-MON-YYYY'),
5
to_char(add_months(to_date('01-01-1970','MM-DD,YYYY'),substr(a.tablespace_name
,14,3)),'DD-MON-YYYY')) "MONTHNS BETWEEN"
6 from dba_tablespaces a, dba_data_files b
7 where a.tablespace_name = b.tablespace_name
8 and a.tablespace_name like '%ILM%'
9 order by a.tablespace_name
10 /
TABLESPACE_NAME STATUS BYTES WHEN PLACE OFFLINE
WILL BE DELETED MONTHNS BETWEEN
------------------------------ --------- ----------------
-------------------- -------------------- ---------------
AV_ILM_0608_0614 ONLINE 104,857,600 01-OCT-2020
01-APR-2021 6 <<<
Changes
NA
Cause
To view full details, sign in with your My Oracle Support account. |
|
Don't have a My Oracle Support account? Click to get started! |
In this Document
Symptoms |
Changes |
Cause |
Solution |
References |