diff --git a/sql/27_last_rman_backup.sql b/sql/27_last_rman_backup.sql index 5414643..8db945c 100644 --- a/sql/27_last_rman_backup.sql +++ b/sql/27_last_rman_backup.sql @@ -9,7 +9,11 @@ column device_type format a10; select b.input_type "Type", - b.status "Status", + case + when b.status = 'FAILED' + then ''||b.status||'' + else b.status + end "Status", to_char(b.start_time,'DD-MM-YYYY HH24:MI') "Start Time", to_char(b.end_time,'DD-MM-YYYY HH24:MI') "End Time", b.output_device_type "Device Type",