How to Oracle RAC DB will into Mount stage?
How to Enable & Disable Archiving into Oracle RAC?
Ans: We can use normal db command for this but when are using RAC ... we have to use specific command which is being use into Oracle RAC
1) Check Current Archive Log Mode Status
Archive log list;
2) Shutdown the RAC database on each instance or simply shutdown from SRVCTL command:
srvctl stop database -d RACDB
3) Start the Oracle RAC Database in Mount Mode
srvctl start database -d RACDB -o mount
4) Set the following parameter used for enable archive log:
ENABLE
SQLPLUS / as sysdba
ALTER SYSTEM SET log_archive_dest_1='location=/u01/archive/' SCOPE=spfile;
ALTER SYSTEM SET log_archive_format='arch_%t_%s_%r.arc' SCOPE=spfile;
ALTER DATABASE ARCHIVELOG;
DISABLE
SQLPLUS / as sysdba
ALTER SYSTEM SET LOG_ARCHIVE_DEST_STATE_1=defer SCOPE=SPFILE;
ALTER DATABASE NOARCHIVELOG;
6) Down & Up the Database
srvctl stop database -d RACDB
srvctl start database -d RACDB
--• Business Solutions: --• Enterprise ERP, Database Management & IT Infrastructure --• AI, Cloud
Wednesday, December 11, 2024
How to Oracle RAC DB will into Mount stage? How to Enable & Disable Archiving into Oracle RAC?
Subscribe to:
Post Comments (Atom)
https://www.linkedin.com/pulse/building-real-time-database-monitoring-dashboard-oracle-khaleeq-tpwxf/
-
# Report Column (only column): 1. Column Formatting > HTML Expression <span style="display:block; width: 200px"> #...
-
when open forms builder then errors FRM-91129: fatal error: no value specified for required environment variable FORMS_BUILDER_CLASSPATH a...
-
Installing Oracle Forms and Reports 12c on Windows 10 64 Bit. Hardware used for this installation is · Intel i3-2370M CPU · ...
-
I wanted to share a little trick I’ve used in APEX for a while now to conditionally format report columns based on their values. I’m sure th...
No comments:
Post a Comment