Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Archivelogmode - I'm having a "senior" moment . . .
In article <3b44b7a0.25112029_at_ausnews.austin.ibm.com>,
Ed_Stevens_at_nospam.noway.nohow says...
>
>I must be overlooking the obvious . . . .
>
>Platform - NT4, sp6, Oracle workgroup edition 8.1.6. Two
>databases/instances -- named NIRA and NIRB. These were brought up in
>NOARCHIVELOG and had been running that way for some time (don't ask).
>I added LOG_ARCHIVE_START=TRUE to the init.ora file for NIRA, shutdown
>and restarted the database. When it came up, an ARCHIVE LOG LIST
>showed it was still in NOARCHIVE LOG mode.
>
>Question one: what did I miss -- why didn't it come up in ARCHIVELOG
>mode?
>
you missed an
alter database archivelog;
command during startup
startup nomount;
alter database mount;
alter database archivelog;
alter database open;
What you did was enable the automatic archival to another location of any log file generated when in archivelog mode. you didn't enable archivelog mode.
>Next I went to DB Studio and used the GUI to set archive log mode.
>This also bounced the database, and this time it came up in ARCHIVELOG
>mode. 14 minutes after restarting, it spun off 133 archive log files
>in a 7 minute period, then quieted down. I don't belive there was any
>real amount of application activity going on. Was this some sort of
>"catch up" work? If so, why did it wait 15 minutes after startup to
>get going?
something was happening -- someone was doing something. If you are truly curious, you can use dbms_logmnr (see the supplied packages guide) to see whats in those archives.
There is no latent buildup for archiving. it'll only get what happens after it was enabled.
>--
>Ed Stevens
>(Opinions expressed do not necessarily represent those of my employer.)
-- Thomas Kyte (tkyte@us.oracle.com) http://asktom.oracle.com/ Expert one on one Oracle, programming techniques and solutions for Oracle. http://www.amazon.com/exec/obidos/ASIN/1861004826/ Opinions are mine and do not necessarily reflect those of Oracle CorpReceived on Sat Jul 21 2001 - 16:29:19 CDT
![]() |
![]() |