<?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: Oracle archive log files in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-archive-log-files/m-p/5052938#M667089</link>
    <description>I have used the following query to get the needed info:&lt;BR /&gt;SELECT resetlogs_id&lt;BR /&gt;FROM v$archived_log;</description>
    <pubDate>Wed, 04 Feb 2009 10:28:44 GMT</pubDate>
    <dc:creator>Fedele Giuseppe</dc:creator>
    <dc:date>2009-02-04T10:28:44Z</dc:date>
    <item>
      <title>Oracle archive log files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-archive-log-files/m-p/5052929#M667080</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;I'm working with an ORACLE 10g 10.2.0 database.&lt;BR /&gt;&lt;BR /&gt;The archive log files are produced with the following name (example):&lt;BR /&gt;&lt;BR /&gt;arch_1_134_625048520.arc&lt;BR /&gt;&lt;BR /&gt;My question is: what does the third number (625048520) means and how can I get it?&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 14 Jun 2007 03:45:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-archive-log-files/m-p/5052929#M667080</guid>
      <dc:creator>Fedele Giuseppe</dc:creator>
      <dc:date>2007-06-14T03:45:00Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle archive log files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-archive-log-files/m-p/5052930#M667081</link>
      <description>LOG_ARCHIVE_FORMAT&lt;BR /&gt;----------------------------&lt;BR /&gt;%s log sequence number&lt;BR /&gt;%t thread number&lt;BR /&gt;e.g.&lt;BR /&gt;LOG_ARCHIVE_FORMAT = "LOG%s_%t.ARC"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;You can get it by using:&lt;BR /&gt;&lt;BR /&gt;ls arch_1_134_625048520.arc| cut -f 1 -d "." | cut -f 4 -d "_"</description>
      <pubDate>Thu, 14 Jun 2007 05:34:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-archive-log-files/m-p/5052930#M667081</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2007-06-14T05:34:16Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle archive log files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-archive-log-files/m-p/5052931#M667082</link>
      <description>Ok, but in my case I have a third number in the file name and I need to know its meaning.&lt;BR /&gt;&lt;BR /&gt;Moreover I need to know if it is possible to get it by quering the database.&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Thu, 14 Jun 2007 05:43:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-archive-log-files/m-p/5052931#M667082</guid>
      <dc:creator>Fedele Giuseppe</dc:creator>
      <dc:date>2007-06-14T05:43:00Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle archive log files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-archive-log-files/m-p/5052932#M667083</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;arch_1_134_625048520.arc&lt;BR /&gt;implies&lt;BR /&gt;LOG_ARCHIVE_FORMAT = "arch_%t_%s_%r.arc"&lt;BR /&gt;where&lt;BR /&gt;%t=thread number&lt;BR /&gt;%s=log sequence number&lt;BR /&gt;%r=resetlogs identifier&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://download-east.oracle.com/docs/cd/B19306_01/rac.102/b14197/rmanops.htm" target="_blank"&gt;http://download-east.oracle.com/docs/cd/B19306_01/rac.102/b14197/rmanops.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;PCS</description>
      <pubDate>Thu, 14 Jun 2007 07:21:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-archive-log-files/m-p/5052932#M667083</guid>
      <dc:creator>spex</dc:creator>
      <dc:date>2007-06-14T07:21:59Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle archive log files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-archive-log-files/m-p/5052933#M667084</link>
      <description>&lt;!--!*#--&gt;hi,&lt;BR /&gt;&lt;BR /&gt;you can also get an indication of the number by querying:&lt;BR /&gt;&lt;BR /&gt;SQL&amp;gt; archive log list;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;e.g.&lt;BR /&gt;SQL&amp;gt; archive log list;&lt;BR /&gt;Database log mode              Archive Mode&lt;BR /&gt;Automatic archival             Enabled&lt;BR /&gt;Archive destination            /u01/oracle/admin/mydb/arch&lt;BR /&gt;Oldest online log sequence     39388&lt;BR /&gt;Next log sequence to archive   39390&lt;BR /&gt;Current log sequence           39390&lt;BR /&gt;SQL&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;hope this helps too!&lt;BR /&gt;kind regards&lt;BR /&gt;yogeeraj</description>
      <pubDate>Thu, 14 Jun 2007 09:23:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-archive-log-files/m-p/5052933#M667084</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2007-06-14T09:23:34Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle archive log files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-archive-log-files/m-p/5052934#M667085</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I know how to get thread and sequence IDs:&lt;BR /&gt;&lt;BR /&gt;select thread#, sequence# from v$log&lt;BR /&gt;&lt;BR /&gt;but how to get "resetlog identifier" ?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 14 Jun 2007 09:37:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-archive-log-files/m-p/5052934#M667085</guid>
      <dc:creator>Fedele Giuseppe</dc:creator>
      <dc:date>2007-06-14T09:37:24Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle archive log files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-archive-log-files/m-p/5052935#M667086</link>
      <description>SELECT resetlogs_id&lt;BR /&gt;FROM v$archived_log;</description>
      <pubDate>Thu, 14 Jun 2007 09:43:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-archive-log-files/m-p/5052935#M667086</guid>
      <dc:creator>spex</dc:creator>
      <dc:date>2007-06-14T09:43:25Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle archive log files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-archive-log-files/m-p/5052936#M667087</link>
      <description>hi Fedele,&lt;BR /&gt;&lt;BR /&gt;The v$archived_log does give this information.&lt;BR /&gt;&lt;BR /&gt;SQL&amp;gt;desc v$archived_log&lt;BR /&gt; Name                                      Null?    Type&lt;BR /&gt; ----------------------------------------- -------- ----------------------------&lt;BR /&gt; RECID                                              NUMBER&lt;BR /&gt; STAMP                                              NUMBER&lt;BR /&gt; NAME                                               VARCHAR2(513)&lt;BR /&gt; DEST_ID                                            NUMBER&lt;BR /&gt; THREAD#                                            NUMBER&lt;BR /&gt; SEQUENCE#                                          NUMBER&lt;BR /&gt; RESETLOGS_CHANGE#                                  NUMBER&lt;BR /&gt; RESETLOGS_TIME                                     DATE&lt;BR /&gt; RESETLOGS_ID                                       NUMBER&lt;BR /&gt; FIRST_CHANGE#                                      NUMBER&lt;BR /&gt; FIRST_TIME                                         DATE&lt;BR /&gt; NEXT_CHANGE#                                       NUMBER&lt;BR /&gt; NEXT_TIME                                          DATE&lt;BR /&gt; BLOCKS                                             NUMBER&lt;BR /&gt; BLOCK_SIZE                                         NUMBER&lt;BR /&gt; CREATOR                                            VARCHAR2(7)&lt;BR /&gt; REGISTRAR                                          VARCHAR2(7)&lt;BR /&gt; STANDBY_DEST                                       VARCHAR2(3)&lt;BR /&gt; ARCHIVED                                           VARCHAR2(3)&lt;BR /&gt; APPLIED                                            VARCHAR2(3)&lt;BR /&gt; DELETED                                            VARCHAR2(3)&lt;BR /&gt; STATUS                                             VARCHAR2(1)&lt;BR /&gt; COMPLETION_TIME                                    DATE&lt;BR /&gt; DICTIONARY_BEGIN                                   VARCHAR2(3)&lt;BR /&gt; DICTIONARY_END                                     VARCHAR2(3)&lt;BR /&gt; END_OF_REDO                                        VARCHAR2(3)&lt;BR /&gt; BACKUP_COUNT                                       NUMBER&lt;BR /&gt; ARCHIVAL_THREAD#                                   NUMBER&lt;BR /&gt; ACTIVATION#                                        NUMBER&lt;BR /&gt; IS_RECOVERY_DEST_FILE                              VARCHAR2(3)&lt;BR /&gt; COMPRESSED                                         VARCHAR2(3)&lt;BR /&gt; FAL                                                VARCHAR2(3)&lt;BR /&gt; END_OF_REDO_TYPE                                   VARCHAR2(10)&lt;BR /&gt;&lt;BR /&gt;SQL&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;What are you trying to achieve?&lt;BR /&gt;&lt;BR /&gt;kind regards&lt;BR /&gt;yogeeraj&lt;BR /&gt;</description>
      <pubDate>Thu, 14 Jun 2007 23:43:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-archive-log-files/m-p/5052936#M667087</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2007-06-14T23:43:49Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle archive log files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-archive-log-files/m-p/5052937#M667088</link>
      <description>Ok,&lt;BR /&gt;&lt;BR /&gt;this is the information I was looking for.&lt;BR /&gt;&lt;BR /&gt;Many thanks&lt;BR /&gt;&lt;BR /&gt;Giuseppe</description>
      <pubDate>Fri, 15 Jun 2007 01:18:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-archive-log-files/m-p/5052937#M667088</guid>
      <dc:creator>Fedele Giuseppe</dc:creator>
      <dc:date>2007-06-15T01:18:04Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle archive log files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-archive-log-files/m-p/5052938#M667089</link>
      <description>I have used the following query to get the needed info:&lt;BR /&gt;SELECT resetlogs_id&lt;BR /&gt;FROM v$archived_log;</description>
      <pubDate>Wed, 04 Feb 2009 10:28:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-archive-log-files/m-p/5052938#M667089</guid>
      <dc:creator>Fedele Giuseppe</dc:creator>
      <dc:date>2009-02-04T10:28:44Z</dc:date>
    </item>
  </channel>
</rss>

