Home » Page 45

Oracle drm interview questions

Here are the Top Oracle DRM Interview questions Question 1 What is Version? Answer Data Relationship Management organizes sets of related data into versions. It is a collection of all hierarchies. Can be live, or a snapshot of metadata at a certain time. Data within each version is categorized into hierarchies, nodes, and properties. All …

Oracle drm interview questions Read More »

Oracle Data Relationship Management: Definition, Password , Login

What is Oracle Data Relationship Management? DRM stands for Data Relationship Management. It is a component of the Enterprise performance management Application suite(EPM) It Synchronizes hierarchies, cross-references, and enterprise dimensions across all applications It is a centralized “system of record” to capture and manage changes to critical reference data across enterprise applications It is a …

Oracle Data Relationship Management: Definition, Password , Login Read More »

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 »

Scroll to Top