What are the steps to switch a database's archiving mode
between NO ARCHIVELOG and ARCHIVELOG mode ?



What are the steps to switch a database's archiving mode between NO ARCHIVELOG and ARCHIVELOG ..

Answer / radha

To check database is in which mode

1. Conn sys/sys as sysdba
2. select log_mode from v$database

To set database in Archivelog mode

1. shutdown immediate;
2. startup mount;
3. alter database archivelog;
4. alter database open;

To set database in NoArchivelog Mode
1. shutdown immediate;
2. startup mount;
3. alter database noarchivelog;
4. alter database open;

Is This Answer Correct ?    13 Yes 0 No

Post New Answer

More Oracle Security Interview Questions

What is a profile ?

2 Answers  


What are the system resources that can be controlled through Profile ?

3 Answers  


What are Roles ?

2 Answers  


What is Statement Auditing ?

2 Answers  


What are the responsibilities of a Database Administrator ?

3 Answers  






What are roles ? How can we implement roles ?

2 Answers  


What are the minimum parameters should exist in the parameter file (init.ora) ?

1 Answers  


What are the various type of snapshots ?

3 Answers  


How can you Enforce Refrencial Integrity in snapshots ?

1 Answers  


Differentiate simple and complex, snapshots ?

2 Answers  


What are the different Levels of Auditing ?

1 Answers  


What are the dictionary tables used to monitor a database spaces ?

2 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1789)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)