SELECT db_name,
status,
input_type,
start_time,
end_time,
output_device_type,
input_bytes_display,
output_bytes_display,
time_taken_display
FROM RC_RMAN_BACKUP_JOB_DETAILS
WHERE start_time > SYSDATE - 7
ORDER BY NVL (end_time, '01-JAN-1900') DESC
another detailed view:
SELECT b.name,
a.handle,
ROUND (bytes / 1024 / 1024) size_mb,
tag,
start_time,
completion_time,
elapsed_seconds,
compressed,
device_type
FROM rc_backup_piece a, rc_database b
WHERE a.db_id = b.dbid AND a.start_time > SYSDATE - 7
ORDER BY start_time DESC
on which user should i try this
ReplyDeleteInitially I tried it with sys didn't work.. later with RMAN user worked.
ReplyDelete