List backup shows archives older than datafile backups not expiring.
Reason: RMAN will keep the archive files, not expire them, because these older archives are needed to recover a datafile which is older than the rest of the database.
This file may either be offline or a 'begin backup' was issued on the tablespace without the 'end backup'.
Cause for Excessive growth in Archive Logs:
Reason: 1 )could be generated by the Automatic Workload Repository (AWR) and Active session History (ASH).
Solution: These advisories collect statistic data even when there's no activity in the database. They perfom inserts in to some of these v$ tables and then use the data collected to automatically tune the system.You can try to set the statistics_level = basic, this will reduce the amount of redo that is generated.
2) Check the Auditing has been enabled.
=========================================================================
RMAN Interview questions:
Scenario 1 : Backup is configured using RMAN recovery catalog database and TSM.
rcv_cat = repdb
target_database=prodcrm
control_file_record_keep_time=15
Daily the backup kicked off at 18:00 hours,
During the backup, recovery catalog database(repdb) went down due to server crash.
a) Will my backup run completed successfully or not?
b) if yes,what is the reason?
c) and if No, what is the reason?
Answer : Backup will continue. It will update all the information in the target database controlfile.
======================================================================
Session lvl
------------
Scenario : 1 what is the difference between "disconnect session" and "kill session" ?
Disconnect Session : primarily for TAF (failing over)
Killing Session : the session is dead, killed, resources release.
Scenario 2 : Yesterday, In a database, archive generation is 2 archive for 20mins and after creating the Materialized view using ONCOMMIT, my archive generation has increased to 3 per minute. What is the reason behind this?
ONCOMMIT -it refreshes automatically on the next COMMIT performed on the MASTER TABLE.
So the redo generation is generating more and more.
