alter system archive log stop;
alter system archive log start to 'new location';
but it only change the first one, how about the duplex dest?
thnaks in advance
10-11-2001, 11:23 AM
sambavan
ALTER SYSTEM SET LOG_ARCHIVE_DEST = filespec
Sam
10-11-2001, 12:41 PM
sonofsita
if init.ora is not changed when rebooted it shall the old destination ..hence also edit init.ora while issuing alter system command to change the arch destination
10-11-2001, 01:19 PM
jm
I understand it can be changed from init.ora then bounce db.
I need is "do not shutdown and restart instance".
I tried from sqlplus and svrmgrl:
ALTER SYSTEM SET LOG_ARCHIVE_DEST = '/ora2/arch1/DBU5/';
get
ORA-02095: specified initialization parameter cannot be modified
any sgguestion?
I need to change both destination not only one.
alter system archive log start to 'new location'
on can change one, not 2nd one
10-11-2001, 01:51 PM
sambavan
What is your Oracle version?
Sam
10-11-2001, 02:03 PM
jm
8.0.6 on Unix
10-11-2001, 02:12 PM
svk
The command is : (through svrmgrl)
ARCHIVE LOG START TO 'your_new_destination';
Of course, init.ora change has to be done for this new destination to be effective even after a shutdown.