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 dynamic data replication ?

2 Answers  


What are the roles and user accounts created automatically with the database ?

1 Answers  


what is different between view and sequence?

4 Answers  


What is Tablespace Quota ?

2 Answers  


What is a trace file and how is it created ?

2 Answers  






What are the different Levels of Auditing ?

1 Answers  


When will the data in the snapshot log be used ?

2 Answers  


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

2 Answers  


what is meant by physical order and logical order in clustered index and non clustered index.

2 Answers  


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

1 Answers  


How can we specify the Archived log file name format and destination ?

2 Answers  


what is the step for rmanbackup?

1 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)