+ fix rman incremental backup age
This commit is contained in:
parent
c8c31b18c2
commit
27a6be829c
|
@ -87,10 +87,11 @@ sub run {
|
||||||
if (defined($self->{option_results}->{incremental_level})) {
|
if (defined($self->{option_results}->{incremental_level})) {
|
||||||
$query = q{SELECT v$rman_status.object_type,
|
$query = q{SELECT v$rman_status.object_type,
|
||||||
((max(v$rman_status.start_time) - date '1970-01-01')*24*60*60) as last_time,
|
((max(v$rman_status.start_time) - date '1970-01-01')*24*60*60) as last_time,
|
||||||
v$backup_set_details.incremental_level,
|
v$backup_set_details.incremental_level
|
||||||
FROM v$rman_status LEFT JOIN v$backup_set_details ON v$rman_status.session_stamp = v$backup_set_details.session_stamp
|
FROM v$rman_status LEFT JOIN v$backup_set_details ON v$rman_status.session_recid = v$backup_set_details.session_recid
|
||||||
WHERE operation='BACKUP' and v$backup_set_details.incremental_level is not Null
|
WHERE operation='BACKUP'
|
||||||
GROUP BY object_type, incremental_level};
|
GROUP BY object_type, incremental_level ORDER BY last_time DESC
|
||||||
|
};
|
||||||
} else {
|
} else {
|
||||||
$query = q{SELECT object_type,
|
$query = q{SELECT object_type,
|
||||||
((max(start_time) - date '1970-01-01')*24*60*60) as last_time
|
((max(start_time) - date '1970-01-01')*24*60*60) as last_time
|
||||||
|
@ -114,7 +115,8 @@ sub run {
|
||||||
|
|
||||||
next if (defined($already_checked->{$$row[0]}));
|
next if (defined($already_checked->{$$row[0]}));
|
||||||
|
|
||||||
if (defined($self->{option_results}->{incremental_level})) {
|
if (defined($self->{option_results}->{incremental_level})) {
|
||||||
|
next if (!defined($$row[2])); # skip null incremental
|
||||||
# db incr with incremental level 0 = DB FULL
|
# db incr with incremental level 0 = DB FULL
|
||||||
if (/db full/ && $$row[0] =~ /db incr/i && defined($$row[2]) && $$row[2] == 0) { # it's a full. we get
|
if (/db full/ && $$row[0] =~ /db incr/i && defined($$row[2]) && $$row[2] == 0) { # it's a full. we get
|
||||||
$$row[0] = 'DB FULL';
|
$$row[0] = 'DB FULL';
|
||||||
|
|
Loading…
Reference in New Issue