Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Must I query RMAN? v$backup_set doesn't expire?
Michael
So you're using RMAN in catalog mode? My guess is that v$backup_set gets its information from the control file. Another guess is that eventually the control file information will get "aged" out because it is restricted in how much backup information it can retain. One possible solution would be to reduce the amount of information the control file holds. That might not be worth the effort.
Dennis Williams
DBA, 80%OCP, 100% DBA
Lifetouch, Inc.
dwilliams_at_lifetouch.com
-----Original Message-----
Sent: Monday, May 26, 2003 12:27 PM
To: Multiple recipients of list ORACLE-L
When I do the query below, I get the following results.
But these backups are aged out of RMAN now and gone.
Is there a way to align the two queries other than linking to RMAN?
Query:
prompt .
Prompt What's the info on the backup sets??.
column ct format 99999 heading '# in|set'
column maxset format 99999 heading 'Max|Set'
column maxct format a10 heading 'Set|Date'
select count(*) ct, max(set_count) maxset, max(completion_time) maxct from
v$backup_set
group by to_char(completion_time,'YY/MM/DD')
order by to_char(completion_time,'YY/MM/DD') desc
/
-----Original Message-----
From:
What's the info on the backup sets??.
# in Max Set
set Set Date
------ ------ ---------- 9 39 06-APR-03 9 27 03-APR-03 18 18 27-MAR-03
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Michael Kline
INET: mkline1_at_comcast.net
Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services ---------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services ---------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Tue May 27 2003 - 09:59:54 CDT