What are the steps to switch a database's archiving mode
between NO ARCHIVELOG and ARCHIVELOG mode ?
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 |
What are the options available to refresh snapshots ?
When will the data in the snapshot log be used ?
What is Tablespace Quota ?
What dynamic data replication ?
What is user Account in Oracle database ?
What is snapshots ?
What is default tablespace ?
How can you Enforce Refrencial Integrity in snapshots ?
what is different between view and sequence?
What are the various type of snapshots ?
What are the different Levels of Auditing ?
What are Roles ?