Skip to Main Content

Database Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Total combined size of Archived logs

Y.RamletFeb 23 2012 — edited Feb 23 2012
DB version : 11.2
Platform : AIX

How can I determine the total size of archive logs for a particular DB?

Googling and OTN search didn't provide much details

Didn't get the solution from the following thread either as it digressed from the subject

10133717


The redo log size for our DB is 100 mb.
SQL> select count(*) from v$archived_log where status = 'A' and name is not null;

  COUNT(*)
----------
        22
 
So, I can multiply 22*100 = 2200 mb . But there has been some manual switches, the size of those files will be less. This is why I am looking for an accurate way to determine the total size of Archive logs.
This post has been answered by mseberg on Feb 23 2012
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Mar 22 2012
Added on Feb 23 2012
2 comments
5,167 views