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 Object Auditing ?

2 Answers  


What is default tablespace ?

3 Answers  


When will the data in the snapshot log be used ?

2 Answers  


What is Privilege Auditing ?

1 Answers  


what is snapshot log ?

2 Answers  


What is the use of ANALYZE command ?

3 Answers  


what is the step for rmanbackup?

1 Answers  


What is a trace file and how is it created ?

2 Answers  


What are the database administrators utilities avaliable ?

2 Answers  


What are the options available to refresh snapshots ?

2 Answers  


What is Tablespace Quota ?

2 Answers  


What are the various type of snapshots ?

3 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1808)
  • 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)