⟩ How to order siblings in oracle hierarchy queries?
SELECT last_name, employee_id, manager_id, LEVEL
FROM employees
START WITH employee_id = 100
CONNECT BY PRIOR employee_id = manager_id
ORDER SIBLINGS BY last_name;
SELECT last_name, employee_id, manager_id, LEVEL
FROM employees
START WITH employee_id = 100
CONNECT BY PRIOR employee_id = manager_id
ORDER SIBLINGS BY last_name;
Explain the steps required to enable the RMAN backup for a target database?
How to generate the begin backup script?
What is auxiliary channel in RMAN? When do you need this?
How to setup the physical stand by database with RMAN?
How to enable the encryption for RMAN backups?
What is db_recovery_file_dest? When do you need to set this value?
Tell me what is FRA? When do you use this?
Explain what is Channel? How to enable the parallel backups with RMAN?
Explain What is difference between SQL and SQL*PLUS?
What is is a cursor?