Mir Sayeed Hassan – Oracle Blog

Oracle DBA – Tips & Techniques | Learn with real-time examples

  • Translate

  • It’s Me






  • My Certificates

  • Links

    My Acclaim Certification : Credly Profile
    My Oracle ACE Pro Profile

  • Achievements

    Awarded Top 100 Oracle Blogs from Worldwide - #RANK 39
  • VISITORS COUNT

  • Verified International Academic Qualification from World Education Service (WES)

    Verified International Academic Qualification from World Education Service (WES)

  • Jobs

Archive for February, 2018

ORA-01157/ORA-01110: cannot identify/lock data file 12 – see DBWR trace file

Posted by Mir Sayeed Hassan on 13th February 2018

ORA-01157/ORA-01110: cannot identify/lock data file 12 – see DBWR trace file As you can see while starting of the database, the datafile 12 is missing/corrupted and through the ora error as shown: sys@TESTDB> startup ORACLE instance started. Total System Global Area 2455228416 bytes Fixed Size                 … Read more..

Posted in ORA-Error | Comments Off on ORA-01157/ORA-01110: cannot identify/lock data file 12 – see DBWR trace file

Offline (Cold) backup of database in Oracle 11gRr2

Posted by Mir Sayeed Hassan on 13th February 2018

Offline (Cold) backup of database in Oracle 11gRr2 Fallow the step by step procedure as shown below: Shutdown the database sys@TESTDB>shu immediate Database closed. Database dismounted. ORACLE instance shut down. Now manually copy all the datafiles, logfiles, controlfiles, parameter… Read more..

Posted in RMAN | Comments Off on Offline (Cold) backup of database in Oracle 11gRr2

Online (Hot) backup of datafile in Oracle database 11gR2

Posted by Mir Sayeed Hassan on 13th February 2018

Online (Hot) backup of datafile To perform the online backup of the database, the database should be running in archivelog mode, below query: Check the database Instance Name & Version sys@TESTDB>select INSTANCE_NAME, VERSION from v$instance; INSTANCE_NAME    VERSION ———————————————— testdb          … Read more..

Posted in RMAN | Comments Off on Online (Hot) backup of datafile in Oracle database 11gR2

Disable database in NOARCHIVELOG mode in Oracle database 11gR2

Posted by Mir Sayeed Hassan on 13th February 2018

Disable database in NOARCHIVELOG mode in Oracle database 11gR2 Check the database Instance Name & Version sys@TESTDB>select INSTANCE_NAME, VERSION from v$instance; INSTANCE_NAME    VERSION —————- ———- testdb           11.2.0.4.0 Check the status of the… Read more..

Posted in RMAN | Comments Off on Disable database in NOARCHIVELOG mode in Oracle database 11gR2

Enable database in Archivelog mode in Oracle database 11gR2

Posted by Mir Sayeed Hassan on 13th February 2018

Enable database in Archivelog mode in Oracle database 11gR2 Check the database Instance  Name & Version sys@TESTDB>select INSTANCE_NAME, VERSION from v$instance; INSTANCE_NAME    VERSION —————- —————– testdb           11.2.0.4.0 Check… Read more..

Posted in RMAN | Comments Off on Enable database in Archivelog mode in Oracle database 11gR2

Managing the UNDO TABLESPACE in Oracle database 11gR2

Posted by Mir Sayeed Hassan on 12th February 2018

Managing the UNDO TABLESPACE in Oracle database 11gR2 In an Oracle DB the undo tbs is used for maintaining the information that is used to rollback or any undo changes to the database. The Undo records are more used as shown below: Rollback the transactions when a ROLLBACK statement is issued Recover… Read more..

Posted in DBA Administration | Comments Off on Managing the UNDO TABLESPACE in Oracle database 11gR2