<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: ALTER SYSTEM ARCHIVE... in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/alter-system-archive/m-p/2670364#M915958</link>
    <description>Hello,&lt;BR /&gt;&lt;BR /&gt;do not mix up &lt;BR /&gt;&lt;BR /&gt;archive start / archive stop&lt;BR /&gt;&lt;BR /&gt;...which treats the archiver process&lt;BR /&gt;&lt;BR /&gt;and&lt;BR /&gt;&lt;BR /&gt;archivelog / noarchivelog&lt;BR /&gt;&lt;BR /&gt;... which configures if the database is writing archivelogs at all.&lt;BR /&gt;&lt;BR /&gt;The first ones can be used while the database is running. Normaly, you would start the archiver process via init.ora and never use them interactively. Two reasons to use them:&lt;BR /&gt;&lt;BR /&gt;1) You need to reconfigure the archive destination. In this case, you'd like to stop the archiver process for a while, to have some time to unmount / mount filesystem or so.&lt;BR /&gt;&lt;BR /&gt;2) You have a very active period of time in your database, and want to avoid archiving for performance reasons (very rare case!). You need to provide enough online redolog space (big online logs and several groups), stop the archiver, do your bigjob and restart the archiver afterwards with an additional "switch logfile" and "archivelog all"&lt;BR /&gt;&lt;BR /&gt;The second one is toggled with an "ALTER DATABASE ARCHIVELOG" command and has to be used in mount state, so the database has to be taken down.&lt;BR /&gt;&lt;BR /&gt;Hope this helps&lt;BR /&gt;Volker</description>
    <pubDate>Mon, 25 Feb 2002 09:01:38 GMT</pubDate>
    <dc:creator>Volker Borowski</dc:creator>
    <dc:date>2002-02-25T09:01:38Z</dc:date>
    <item>
      <title>ALTER SYSTEM ARCHIVE...</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/alter-system-archive/m-p/2670361#M915955</link>
      <description>Simple question: Can the ALTER SYSTEM ARCHIVE set of commands be run while the instance is up and running?</description>
      <pubDate>Fri, 22 Feb 2002 20:56:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/alter-system-archive/m-p/2670361#M915955</guid>
      <dc:creator>Scott Buckingham</dc:creator>
      <dc:date>2002-02-22T20:56:36Z</dc:date>
    </item>
    <item>
      <title>Re: ALTER SYSTEM ARCHIVE...</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/alter-system-archive/m-p/2670362#M915956</link>
      <description>You have 2 options to start archive logging:&lt;BR /&gt;1. Enabling Automatic Archiving at Instance Startup:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;To enable automatic archiving of filled groups each time an instance is started, include the "LOG_ARCHIVE_START" parameter, set to TRUE, in the database's parameter file:&lt;BR /&gt;&lt;BR /&gt;    LOG_ARCHIVE_START=TRUE&lt;BR /&gt;&lt;BR /&gt;The new value takes effect the next time you start the database.&lt;BR /&gt;&lt;BR /&gt;2. Enabling Automatic Archiving After Instance Startup&lt;BR /&gt;&lt;BR /&gt;To enable automatic archiving of filled online redo log groups without shutting down the current instance, use the SQL command ALTER SYSTEM with the ARCHIVE LOG START parameter.&lt;BR /&gt;&lt;BR /&gt;The following statement enables archiving:&lt;BR /&gt;&lt;BR /&gt;    SVRMGRL&amp;gt; ALTER SYSTEM ARCHIVE LOG START;&lt;BR /&gt;&lt;BR /&gt;When using this option, the instance does not have to be shut down to enable automatic archiving.&lt;BR /&gt;&lt;BR /&gt;Kurt&lt;BR /&gt;</description>
      <pubDate>Sat, 23 Feb 2002 18:48:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/alter-system-archive/m-p/2670362#M915956</guid>
      <dc:creator>Kurt Beyers.</dc:creator>
      <dc:date>2002-02-23T18:48:02Z</dc:date>
    </item>
    <item>
      <title>Re: ALTER SYSTEM ARCHIVE...</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/alter-system-archive/m-p/2670363#M915957</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;To be able to use archiving in the first place you have to set the database in Archivelog mode. This can only be done with the database mounted (not open), so:&lt;BR /&gt;edit init.ora&lt;BR /&gt;LOG_ARCHIVE_START=true&lt;BR /&gt;(to enable the automatich archiver process)&lt;BR /&gt;&lt;BR /&gt;SVRMGR&amp;gt;shutdown immediate&lt;BR /&gt;SVRMGR&amp;gt;startup mount&lt;BR /&gt;SVRMGR&amp;gt;alter database archivelog;&lt;BR /&gt;(to set the database in archivelog mode)&lt;BR /&gt;SVRMGR&amp;gt;alter database open;&lt;BR /&gt;&lt;BR /&gt;Without the parameter LOG_ARCHIVE_START=true you still can set the database in archivelog but then the archiving have to be run manually by running the "alter system archive log all;" command that archives all online redologs, but you wouldn't want to have to do this al day...&lt;BR /&gt;&lt;BR /&gt;rgds&lt;BR /&gt;Andreas&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 25 Feb 2002 08:18:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/alter-system-archive/m-p/2670363#M915957</guid>
      <dc:creator>Andreas D. Skjervold</dc:creator>
      <dc:date>2002-02-25T08:18:55Z</dc:date>
    </item>
    <item>
      <title>Re: ALTER SYSTEM ARCHIVE...</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/alter-system-archive/m-p/2670364#M915958</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;do not mix up &lt;BR /&gt;&lt;BR /&gt;archive start / archive stop&lt;BR /&gt;&lt;BR /&gt;...which treats the archiver process&lt;BR /&gt;&lt;BR /&gt;and&lt;BR /&gt;&lt;BR /&gt;archivelog / noarchivelog&lt;BR /&gt;&lt;BR /&gt;... which configures if the database is writing archivelogs at all.&lt;BR /&gt;&lt;BR /&gt;The first ones can be used while the database is running. Normaly, you would start the archiver process via init.ora and never use them interactively. Two reasons to use them:&lt;BR /&gt;&lt;BR /&gt;1) You need to reconfigure the archive destination. In this case, you'd like to stop the archiver process for a while, to have some time to unmount / mount filesystem or so.&lt;BR /&gt;&lt;BR /&gt;2) You have a very active period of time in your database, and want to avoid archiving for performance reasons (very rare case!). You need to provide enough online redolog space (big online logs and several groups), stop the archiver, do your bigjob and restart the archiver afterwards with an additional "switch logfile" and "archivelog all"&lt;BR /&gt;&lt;BR /&gt;The second one is toggled with an "ALTER DATABASE ARCHIVELOG" command and has to be used in mount state, so the database has to be taken down.&lt;BR /&gt;&lt;BR /&gt;Hope this helps&lt;BR /&gt;Volker</description>
      <pubDate>Mon, 25 Feb 2002 09:01:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/alter-system-archive/m-p/2670364#M915958</guid>
      <dc:creator>Volker Borowski</dc:creator>
      <dc:date>2002-02-25T09:01:38Z</dc:date>
    </item>
    <item>
      <title>Re: ALTER SYSTEM ARCHIVE...</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/alter-system-archive/m-p/2670365#M915959</link>
      <description>Hi there.&lt;BR /&gt;Just something additonal. Take care, that your archive directory ( set in config.ora ) has enough disk space left.&lt;BR /&gt;You should compress, backup and delete your offline redo. logs from time to time.&lt;BR /&gt;Attached file for compression, which we run every two hours for every database.&lt;BR /&gt;Rgds&lt;BR /&gt;Alexander M. Ermes&lt;BR /&gt;</description>
      <pubDate>Mon, 25 Feb 2002 09:05:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/alter-system-archive/m-p/2670365#M915959</guid>
      <dc:creator>Alexander M. Ermes</dc:creator>
      <dc:date>2002-02-25T09:05:16Z</dc:date>
    </item>
  </channel>
</rss>

