Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Re: alter system archive log stop;
Holger Baer wrote:
> Tof wrote:
> [Snip]
>
>>> >>> So, you're not on 10G, then? >> >> >> >> I am on 10g. There a difference between 9i and 10g ?
SQL> alter system archive log start;
System altered.
SQL> select name, isdeprecated from v$parameter where name='log_archive_start';
NAME ISDEP ------------------------------ ----- log_archive_start TRUE
SQL> alter system archive log stop;
System altered.
SQL> select name, isdeprecated from v$parameter where name='log_archive_start';
NAME ISDEP ------------------------------ ----- log_archive_start TRUE SQL> archive log list; Database log mode Archive Mode Automatic archival Enabled Archive destination USE_DB_RECOVERY_FILE_DEST Oldest online log sequence 19 Next log sequence to archive 21 Current log sequence 21
But if i want to stop it, i must shutdown database and modify the parameter log_archive_start at false to init.ora
But i don't understand for the "alter system archive log stop" if it run, i must see a indication in database parameter the change of this action.
I see at SQL Reference :
archive_log_clause
The archive_log_clause manually archives redo log files or enables or disables automatic archiving. To use this clause, your instance must have the database mounted. The database can be either open or closed unless otherwise noted.
Also the "alter system archive log stop" there no action on database open !!!.
I don't understand.
Thanks,
Christophe
Received on Wed Mar 02 2005 - 05:07:28 CST