RMAN> backup database format '+SSDDG1/baipx/backupfull';
with t as (select rpad(OBJECT_TYPE, 11, ' ') || ' ' || to_char(START_TIME, 'YYYY-MM-DD HH24:MI:SS') || ' ' || to_char(END_TIME, 'YYYY-MM-DD HH24:MI:SS') || ' ' || OUTPUT_DEVICE_TYPE || ' ' || STATUS check_result from v$rman_status where object_type is not null and OUTPUT_DEVICE_TYPE <> 'SBT_TAPE' and start_time >= sysdate - 1 order by start_time) select case when count (*) = 0 then 'No disk backup information in the last 24 hours' else 'OBJECT_TYPE START_TIME END_TIME TYPE STATUS' end as info from t union all select * from t
/
RMAN> list backup;