ORA-16019..................... [message #259731] |
Thu, 16 August 2007 06:26 |
naveenkumar001
Messages: 62 Registered: July 2007 Location: Bangalore
|
Member |
|
|
Hi,
First i like to thank all of you for helping me when i was in trouble.
Here i am with one more question.
I wanted to set 3 archive detination which is LOCAL, so i setted it using ALTER SYSTEM as follows:-
SQL> alter system set log_archive_dest='C:\oracle\admin\Chandu\Arch';
System altered.
SQL> sho parameter log_archive_dest;
NAME TYPE VALUE
----------------- ---------- ----------------------------
log_archive_dest string C:\oracle\admin\Chandu\Arch
SQL> alter system set log_archive_duplex_dest='F:\Archived';
System altered.
SQL> sho parameter log_archive_duplex_dest;
NAME TYPE VALUE
-------------------------- ------------ ------------------
log_archive_duplex_dest string F:\Archived
But when i tried to set 3rd Archive destination i got ORA-16019 Error.
SQL> alter system set log_archive_dest_1='E:\Archived';
alter system set log_archive_dest_1='E:\Archived'
*
ERROR at line 1:
ORA-02097: parameter cannot be modified because specified value is invalid
ORA-16019: cannot use LOG_ARCHIVE_DEST_1 with LOG_ARCHIVE_DEST or
LOG_ARCHIVE_DUPLEX_DEST
Question:-
1) I think according to the error i cant use LOG_ARCHIVE_DEST_n with LOG_ARCHIVE_DEST or LOG_ARCHIVE_DUPLEX_DEST, why cant i use it with those two of them, then how can i set the 3rd archive destination?
2) How to set MANDATORY or OPTIONAL for:-
LOG_ARCHIVE_DEST, LOG_ARCHIVE_DUPLEX_DEST, LOG_ARCHIVE_DEST_n
Regards,
Naveen
[Updated on: Thu, 16 August 2007 09:54] by Moderator Report message to a moderator
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Re: ORA-16019..................... [message #259887 is a reply to message #259873] |
Thu, 16 August 2007 14:27 |
|
Hi Naveen,
I have asked the same question to you on the other forum where you posted this question that are you on EE or SE and replied too.You can check there.
To find the difference in 9i EE or SE, I guess this output may make it clear.
A select from v$version in 9i SE returns:
> SQL> select * from v$version;
>
> BANNER
> ----------------------------------------------------------------
> Oracle9i Release 9.2.0.1.0 - Production
And in 9i EE,
SQL> select * from v$version;
BANNER
-----------------------------------------------------------
Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
Hope it will help.
Cheers,
Aman....
|
|
|
|
|
|
|