Download link : https://www.scribd.com/document/461028011/Asm-Interview-Scenarios-Oracle-dba-Help-Blog
Happy Learning ..!
Sharing knowledge is the ultimate key to gaining knowledge..
The only two things that stay with you for life
are you & your knowledge !
Live while you can!
Teach & inspire while you could &
Smile while you have the teeth.. 😉
SQL> recover database; ORA-00283: recovery session cancelled due to errors ORA-01610: recovery using the BACKUP CONTROLFILE option must be done
SQL> recover database until cancel using BACKUP CONTROLFILE; ORA-00283: recovery session cancelled due to errors
SQL>shut immediate
SQL> startup mount pfile= ‘$ORACLE_HOME/dbs/initDBNAME.ora’; ORACLE instance started. Total System Global Area 1069252608 bytes Fixed Size 2188408 bytes Variable Size 436214664 bytes Database Buffers 616562688 bytes Redo Buffers 14286848 bytes Database mounted. SQL> select name,open_mode from v$database; NAME OPEN_MODE --------- -------------------- TEST MOUNTED SQL> alter database open resetlogs; Database altered. SQL> select name,open_mode from v$database; NAME OPEN_MODE --------- -------------------- TEST READ WRITE