sqlplus / as sysdba
archive log list
Non-RAC database
Enable archive logshutdown immediate;
startup mount;
alter database archivelog;
alter database open;
Disable archive log
shutdown immediate;
startup mount;
alter database noarchivelog;
alter database open;
RAC database
Enable archive logsrvctl stop database -d orcl
srvctl start database -d orcl -o mount
sqlplus / as sysdba
alter database archivelog;
EXIT;
srvctl stop database -d orcl
srvctl start database -d orcl
Disable archive log
srvctl stop database -d orcl
srvctl start database -d orcl -o mount
sqlplus / as sysdba
alter database noarchivelog;
EXIT;
srvctl stop database -d orcl
srvctl start database -d orcl
No comments:
Post a Comment