I am creating a custom report in OEM 12c. [Name: Database Backup Report]
here is my sql statement:
select DATABASE_NAME, host, status, to_char(start_time,'dd-MON-yyyy hh24:mi') start_time,
to_char(end_time,'dd-MON-yyyy hh24:mi') end_time, input_type, output_device_type
from mgmt$ha_backup
order by host, database_name;
One of my production databases is not showing up in mgmt$ha_backup.
How do I add my missing database to the list?
Thanks Oracle Gurus!!!
regards,
Johnnie