Home

How to check RMAN backup status in sql

We can check RMAN backup status in sql using the below sql col STATUS format a9 col hrs format 999.99 select SESSION_KEY,SESSION_RECID,SESSION_STAMP, INPUT_TYPE, STATUS, to_char(START_TIME,’mm/dd/yy hh24:mi’) start_time, to_char(END_TIME,’mm/dd/yy hh24:mi’) end_time, elapsed_seconds/3600 hrs from V$RMAN_BACKUP_JOB_DETAILS order by session_key; This is very helpful when you are operating in a DBCS(Database Cloud Service) environment with automated backup. The …

How to check RMAN backup status in sql Read More »

How to Get environment variables of running process in Linux

In this post, we will talk about one of the useful things that administrator often has to use. The topic is How To Get environment variables of running process in Linux. Let’s first start with what is environment variable and then find out How To Check Environment Variables for a Running Process in different flavours of Unix …

How to Get environment variables of running process in Linux Read More »

How to configure Automatic Managed Backup on ExaCS

Oracle Provides Automatic Managed Backup Service on ExaCS Machine. Oracle completely managed the Backup of the database on the customer’s behalf. It stores the backup in DBaaS tenancy, not the customer tenancy. We have two options in the backup object storage and recovery service. Here in this article , we are talking about object storage …

How to configure Automatic Managed Backup on ExaCS Read More »

Scroll to Top