Update 27_last_rman_backup.sql

This commit is contained in:
Yacine31
2023-11-23 02:30:20 +01:00
parent 851a343b0f
commit 3b9ef17a9e

View File

@@ -9,7 +9,11 @@ column device_type format a10;
select select
b.input_type "Type", b.input_type "Type",
b.status "Status", case
when b.status = 'FAILED'
then '<span class="highlight">'||b.status||'</span>'
else b.status
end "Status",
to_char(b.start_time,'DD-MM-YYYY HH24:MI') "Start Time", to_char(b.start_time,'DD-MM-YYYY HH24:MI') "Start Time",
to_char(b.end_time,'DD-MM-YYYY HH24:MI') "End Time", to_char(b.end_time,'DD-MM-YYYY HH24:MI') "End Time",
b.output_device_type "Device Type", b.output_device_type "Device Type",