ORA-00257 error - don't know location of archiver folder

I am getting an "ORA-00257: archiver error" when trying to connect to a networked database. Please could someone advise on the location the relevant archiving folder so I can attempt to take remedial action.
The error message additionally states that the "archiver process received an error while trying to archive a redo log".
Many thanks
Edited by: 803242 on 02-Nov-2010 02:33

SQL> set line 1000
SQL> show parameters log_archive_dest
NAME TYPE VALUE
log_archive_dest                     string      /u01/arch
log_archive_dest_1 string
log_archive_dest_10 string
log_archive_dest_2 string
log_archive_dest_3 string
log_archive_dest_4 string
log_archive_dest_5 string
log_archive_dest_6 string
log_archive_dest_7 string
log_archive_dest_8 string
log_archive_dest_9 string
NAME TYPE VALUE
log_archive_dest_state_1 string enable
log_archive_dest_state_10 string enable
log_archive_dest_state_2 string enable
log_archive_dest_state_3 string enable
log_archive_dest_state_4 string enable
log_archive_dest_state_5 string enable
log_archive_dest_state_6 string enable
log_archive_dest_state_7 string enable
log_archive_dest_state_8 string enable
log_archive_dest_state_9 string enable
SQL>
Regads
Asif Kabir

Similar Messages

  • Ora 00257 error

    I'm working on oracle 11g release 2 , while the database was work fine , all users got the following error
    ora 00257: archiver error, connect internal only, until freed.
    after restarting the server, I couldn't connect to the db, the db doesn't started.
    How can I solve this problem.
    thanks

    Hello,
    The disk space of archive log destination of the database might be full or the destination might be unreachable.
    Mount the database and look out for the archive destination.
    show parameter log_archive_destIf the destination is unreachable, then you can place the archives to a temporary location.
    alter system set log_archive_dest_1='location=<temporary location>';If the disk space of the archive destination is full, then take the backup of the archives to a temporary location and delete the archives.
    rman target sys/<pwd>@production-db
    RMAN>backup archivelog all format '<temporary-location-which-has-disk-space>' delete input;
    fadiwilliam     
    Handle:     fadiwilliam
    Status Level:     Newbie
    Registered:     Dec 15, 2000
    Total Posts:     32
    Total Questions:     12 (9 unresolved)
    Name     fadi williamPlease consider closing your threads by providing appropriate points if you feel that your questions have been answered.

  • ORA-00604,ORA-00600,ORA-1652,ORA-1653,ORA-00257 errors

    Hi All,
    I am getting the below alerts in my Oracle 9i database.
    ORA-00604: error occurred at recursive SQL level 3
    ORA-00600: internal error code, arguments: [kghpih:ds], [
    ORA-1652: unable to extend temp segment by 128 in tablespace           TS_PHDB_5
    ORA-1653: unable to extend table T49XPWM.TMP_PD_VALUES by 128 in           tablespace TS_PHDB_5
    ORA-1652: unable to extend temp segment by 128 in tablespace           TS_PHDB_16
    ORA-00257: archiver error. Connect internal only, until freed.
    ORA-604 signalled during: ALTER DATABASE CLOSE NORMAL...
    Saswat

    This error does not necessarily indicate whether or not you have enough space
    in the tablespace, it merely indicates that Oracle could not find a large enough area of free
    contiguous space in which to fit the next extent.
    add datafile to your table space.
    Edited by: Asad99 on Apr 1, 2013 3:59 AM

  • RMAN ORA-19870: error reading backup piece 'location'

    Hi All ,
    I have run a restore from a RMAN backup and i got this error :
    ORA-19870: error reading backup piece XX_df_23_11_2011_XXX_1_1.rman
    ORA-19599: block number 616206 is corrupt in backup piece XX_df_23_11_2011_XXX_1_1.rmanThough the RMAN backup is still going on , it has not errored out, How can i find what all gets missing from the Source database , as in what all is present in the missing block ?
    What is the use of MAXCORRUPT parameter ? can that be used here ? can this be prevented if i use maxcorrupt =1 and then run the restore ?
    Also , Is there any way in which i can verify that all the backups are perfect before i drop my earlier database and run the restore. I think its the validate command but I am not sure, hence seek expert suggestion.
    Please suggest
    Thanks
    Kk
    Edited by: Kk on Dec 1, 2011 3:04 AM

    RMAN backup Fails with ORA-19599,ORA-19600 and ORA-19601 [ID 779386.1]

  • Cannot find symbol error. don't know why

    Hello, I'm trying to write a button bean in the shape of a triangle but netbeans keeps throwing up a cannot find symbol error at my g.fillPolygon line. I've declared the number of sides and x and y coords.
    Any ideas as to why this is happening would be greatly appreciated.
    Here's the code:
    package trianglebutton;
    import java.util.*;
    import java.awt.event.*;
    import java.awt.*;
    import javax.swing.*;
    import java.io.*;
    public class TriangleButtonBean extends JButton implements Serializable
    private TriangleButtonBean graphicPolygon;
    private Color buttonColour;
    private Color textColour;
    private String caption;
    private int sides = 3;
    private int size = 30;
    private int centerX = 100;
    private int centerY = 100;
         public TriangleButtonBean()
              super();
              setPreferredSize(new Dimension(50,50));
              setBorder(null);
              buttonColour = Color.red;
              textColour = Color.black;
              caption = "";
         public TriangleButtonBean(String acaption)
              super();
              setPreferredSize(new Dimension(50,50));
              setBorder(null);
              caption = acaption;
         public void paintComponent(Graphics g)
    String astring;
              super.paintComponent(g);
    g.setColor(buttonColour);
              int centerX = graphicPolygon.getCenterX(); //Invoking getCenterX method
              int centerY = graphicPolygon.getCenterY(); //Invoking getCenterY method
              //int Xcoordinates [] = graphicPolygon.getPolygonXCoordinates(sides,size);
              //int Ycoordinates [] = graphicPolygon.getPolygonYCoordinates(sides,size);
    g.drawPolygon(centerX,centerY, sides); //Draw polygon using xcoord,ycoord and number of sides
              g.fillPolygon(centerX,centerY, sides); //Fill poly
              g.setColor(textColour);
              if (caption.length() > 1)
                   astring = caption.substring(0,1);
              else
                   astring = caption;
              g.drawString(astring,22,27);
         public void setButtonColour(Color acolour)
              buttonColour = acolour;
              repaint();
         public Color getButtonColour()
              return buttonColour;
         public void setTextColour(Color acolour)
              textColour = acolour;
              repaint();
         public Color getTextColour()
              return textColour;
         public void setCaption(String acaption)
              caption = acaption;
              repaint();
         public String getCaption()
              return caption;
    // public void setCenterX(int xcoords)
    // centerX = xcoords;
    public int getCenterX()
    return centerX;
    // public void setCenterY(int ycoords)
    // centerY = ycoords;
    public int getCenterY()
    return centerY;
    public static void main(String[] args){
    TriangleButtonBean agui = new TriangleButtonBean();
    } // End of class

    Please READ, STUDY, and UNDERSTAND the error messages, they are telling you exactly what the problem is:
    . . .\TriangleButtonBean.java:56: cannot find symbol
    symbol  : method drawPolygon(int,int,int)
    location: class java.awt.Graphics
    g.drawPolygon(centerX,centerY, sides); //Draw polygon using xcoord,ycoord and number of sides
    ^
    . . .\TriangleButtonBean.java:57: cannot find symbol
    symbol  : method fillPolygon(int,int,int)
    location: class java.awt.Graphics
    g.fillPolygon(centerX,centerY, sides); //Fill poly
    ^
    2 errors
    Process javac exited with code 1In both cases the messages ar telling you that the methods
    drawPolygon(int,int,int)
    method fillPolygon(int,int,int)
    can't be found in java.awt.Graphics
    And if you look at the documentation, you see that is indeed the problem - the first two arguments are int arrrays, not int.
    Fix the method signature or use something else.

  • Some code error, don't know how to fix...

    my xml is here:
    http://homework.cbsd.googlepages.com/podcast.xml
    and i need help with these errors:
    Sorry
    This feed does not validate.
    guid values must not be duplicated within a feed: E3E98228-E7F2-99DF-392B5305E37F61F1 [help]
    <guid isPermaLink="false">E3E98228-E7F2-99DF-392B5305E37F61F1</guid> ^
    In addition, this feed has an issue that may cause problems for some users. We recommend fixing this issue.
    Feeds should not be served with the "application/octet-stream" media type [help]
    Source: http://homework.cbsd.googlepages.com/podcast.xml

    GUID stands for Globally Unique IDentifier. It's something used to keep track of items say in a database.
    Each of your episodes are contained in an <item> tag in your feed's XML. Each episode should have a <GUID> which is unique to that particular episode. The most common thing to do is just copy the link to that episodes enclosure file into a <guid> tag.
    For example:
    <enclosure url="http://example.com/podcasts/everything/AllAboutEverythingEpisode2.mp3" length="5650889" type="audio/mpeg" />
    <guid>http://example.com/podcasts/everything/AllAboutEverythingEpisode2.mp3</guid>
    Make sense?
    Erik

  • Errors, don't know how to fix

    "ImageServlet.java": Error #: 704 : cannot access directory javax\servlet\http at line 21, column 1
    "ImageServlet.java": Error #: 704 : cannot access directory javax\servlet at line 22, column 1
    "ImageServlet.java": Error #: 300 : class HttpServlet not found in class ImageServlet at line 38, column 35
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Hi, I compiled my set of codes on Borland JBuilder 3 on one computer and it's fine, but when I run it on JBuilder 6, it complains with theses errors, any help?
    The first 2 errors are from these lines:
    import javax.servlet.http.*;
    import javax.servlet.*;
    The last error comes from:
    public class ImageServlet extends HttpServlet {
    Any help would be appreciated. Thanks

    I am using VisualAge for Java and experienced a similar problem.
    Some applications require you to install some packages as they are not part of the inital installation.
    Check your application's package list and see if the javax.servlet package is included. If not, you will have to add it to your applications list by installing it.

  • Syntax Error, don't know how to solve

    I've got an syntax error in the following report. The compiler says: "SPACE" could not be interprated.
    It focus this code section:
    rp-provide-from-last p0001 space keyda keyda.
    rp-provide-from-last p0002 space keyda keyda.
    Here you can see the complete report:
    *& Report  Z_SAP_HR_LDAP                                               *
    REPORT  Z_SAP_HR_LDAP USING DATABASE PNP.
    DATA: PLVAR            LIKE OBJEC-PLVAR,
          OBJID            LIKE HROBJECT-OBJID,
          KEYDA            LIKE PLOG-BEGDA,
          P_OBJECTS        LIKE HROBJECT OCCURS 0,
          P_OBJECTS_WA     LIKE HROBJECT,
          S_OBJECTS        LIKE HROBJECT OCCURS 0,
          S_OBJECTS_WA     LIKE HROBJECT,
          I1001_ITAB       LIKE P1001 OCCURS 0 WITH HEADER LINE,
          I1001_ITAB2      LIKE P1001 OCCURS 0 WITH HEADER LINE,
    *      LDAPDESTINATION LIKE LDA_TYPES-LDAPDESTINATION,
    *      LDAPSERVER LIKE LDA_TYPES-LDAPSERVER,
          ldapinitialrun like lda_types-flag,
          LOGSYS LIKE TBDLS-LOGSYS,
          ERRORS LIKE BAPIRET2 OCCURS 0,
          ERRORS_WA LIKE BAPIRET2.
    * structure for short ldap-attributes
    * fieldnames must be equal to basis strucutre LDA-ATTR_S (for RFC_CALL)
    TYPES:  BEGIN OF TS_LDAP_ATTR_S,
             PERNR LIKE LDA_TYPES-PERNR,
             ATTR_TAB LIKE LDA_TYPES-ATTR_TABNAME,
             ATTR_FIELD LIKE LDA_TYPES-ATTR_FIELDNAME,
             VALUE LIKE LDA_TYPES-VALUE_S,
            END OF TS_LDAP_ATTR_S.
    data: attributes type ts_ldap_attr_s occurs 0,
          attributes_wa type ts_ldap_attr_s.
    infotypes: 0001, 0002.
    tables: pernr, rfcdes.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    PARAMETERS: P_TEST default 'X' AS CHECKBOX.
    SELECTION-SCREEN END OF BLOCK B1.
    Parameters: LDAPSRV Default 'SAPHRLDAP' LIKE LDA_TYPES-LDAPSERVER,
                LDAPDEST Default 'LDAPDEST' LIKE rfcdes-rfcdest.
    at selection-screen.
    clear: p_objects[], s_objects[], attributes[].
    CALL FUNCTION 'RH_GET_PLVAR'
    IMPORTING
      PLVAR = PLVAR
    EXCEPTIONS
      no_plvar = 1
      OTHERS = 2.
    if sy-subrc <> 0.
    MESSAGE E015(HRLDAP).
    endif.
    KEYDA = sy-datum.
    get pernr.
    rp-provide-from-last p0001 space keyda keyda.
    rp-provide-from-last p0002 space keyda keyda.
    ATTRIBUTES_WA-PERNR = p0001-pernr.
    * lastname
    attributes_wa-attr_tab = 'EMPLOYEE'.
    attributes_wa-attr_field = 'LASTNAME'.
    attributes_wa-value = p0002-nachn.
    append attributes_wa to attributes.
    * firstname
    attributes_wa-attr_tab = 'EMPLOYEE'.
    attributes_wa-attr_field = 'FIRSTNAME'.
    attributes_wa-value = p0002-vorna.
    append attributes_wa to attributes.
    * sAMAccountName
    attributes_wa-attr_tab = 'EMPLOYEE'.
    attributes_wa-attr_field = 'SAMACCOUNTNAME'.
    * Using the employee number a unique name is created
    * for the sAMAccountName
    concatenate ‘E’ p0001-pernr into attributes_wa-value.
    append attributes_wa to attributes.
    * other attributes have to added here.
    * for each additional attribute an appropriate field
    * has to defined in the structure EMPLOYEE
    * for example you can choose the following:
    * attributes_wa-attr_tab = 'EMPLOYEE'.
    * attributes_wa-attr_field = 'TELEPHONE'.
    * if you want to transfer the telephone number
    * of an employee from SAP HR to Active Directory
    * In the web Application Server an appropriate mapping
    * has to be defined using transaction LDAP for each new
    * attribute (here called TELEPHONE).
    end-of-selection.
    * get own logical system
    CALL FUNCTION 'OWN_LOGICAL_SYSTEM_GET'
    IMPORTING
      OWN_LOGICAL_SYSTEM = LOGSYS
    EXCEPTIONS
      OWN_LOGICAL_SYSTEM_NOT_DEFINED = 1
      OTHERS = 2.
    IF SY-SUBRC NE 0.
    * TODO: Komprimierung sy-mandt: 3 -> 2 Stellen !!!
      CONCATENATE SY-SYSID SY-MANDT INTO LOGSYS.
    ENDIF.
    loop at attributes into attributes_wa.
    write: / ATTRIBUTES_WA-PERNR , attributes_wa-attr_tab.
    write: attributes_wa-attr_field ,attributes_wa-value.
    endloop.
    IF P_TEST = 'X'.
    EXIT.
    ENDIF.
    * send attributes to ldap client
    * send attributes
    CALL FUNCTION 'SPLDAP_RECEIVE_ATTRIBUTES'
    DESTINATION LDAPDEST
    EXPORTING
         LOGSYS = LOGSYS
         SERVERID = LDAPSRV
         ATTRIBUTES_S = attributes[]
         INITIAL_RUN = LDAPINITIALRUN
    *      ATTRIBUTES_L = TOTAL_ATTRS_L[]
    *      ATTRIBUTES_X = TOTAL_ATTRS_X[].
    IMPORTING
    RETURN = ERRORS[].
    IF NOT ERRORS[] IS INITIAL.
      READ TABLE ERRORS INDEX 1 INTO ERRORS_WA.
      MESSAGE ID ERRORS_WA-ID TYPE ERRORS_WA-TYPE
       NUMBER ERRORS_WA-NUMBER
       WITH ERRORS_WA-MESSAGE_V1 ERRORS_WA-MESSAGE_V2
            ERRORS_WA-MESSAGE_V3 ERRORS_WA-MESSAGE_V4.
    ENDIF.

    If i test this report, he can access the HR employee data an read my selection but if i run it really the following error occurs:
    Laufzeitfehler         CALL_FUNCTION_OPEN_ERROR   
           aufgetreten am  10.05.2005 um   22:22:26                                                                               
    "program LDAP_SAP_ADS_DC_1 not registered" / &CT. 
    He stands at the following line:
         >   CALL FUNCTION 'SPLDAP_RECEIVE_ATTRIBUTES'
    I think it's a problem with that function.
    I found this function in my R/3 System.

  • I am unable to to publish to BC i keep getting a type error:  Don't know how to generate rendered data for type.  Can someone help me fix this?

    Been having this problem all day now. i just installed the new version

    Can you please send an email to us at [email protected] along with a link to this thread and the .muse file? You can upload it to Adobe Send or Dropbox and include a download link. Thanks!

  • HT2513 I have an iCal calendar downloaded and I can't find it in any calendar listings. I've read the above article, but I can't even find my iCal window (don't know where my applications folder or dock is and a search of the iPhone turns up nothing)...

    I can't find my iCal window to try to get rid of this iCal calendar I downloaded, but want to delete. I can't seem to find the applications folder or dock that I've heard the iCal window is in. A search of the iPhone won't turn either up. Can someone please help?

    have you tried rebooting your computer?

  • ORA-12505 error help needed

    I have 10g on my laptop and tyring to connect to my local db on Laptop via TOAD and gives me error ORA-12505.
    here is my TNSNAMES.ORA file:
    # tnsnames.ora Network Configuration File: C:\oracle\product\10.2.0\db_1\NETWORK\ADMIN\tnsnames.ora
    # Generated by Oracle configuration tools.
    EZAUDIT.2020LLC.COM =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 2020-5056)(PORT = 1521))
    (CONNECT_DATA =
    (SID = EZAUDIT)
    here is my LISTENER.ORA file:
    # listener.ora Network Configuration File: C:\oracle\product\10.2.0\db_1\NETWORK\ADMIN\listener.ora
    # Generated by Oracle configuration tools.
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = C:\oracle\product\10.2.0\db_1)
    (PROGRAM = extproc)
    LISTENER =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 2020-5056)(PORT = 1521))
    "2020-5056" is my hostname of laptop.
    "EZAUDIT" is my SID name, which is the local DB name.
    Don't know what's going on. It was working fine for last 2 months, all of a sudden last 3-4 days i am having this issue. My Listener name is "LISTENER"
    If I change the SID = EZAUDIT to SERVICEf_NAME = EZAUDIT in my TNSNAMES.ORA file then the error I get is ORA-12514. Don't know what the issue. Please let me know ASAP, have to finish the project by next week.
    APPRCIATE your hlp.
    THANKS,
    Kas

    result of the lsnrctl services:
    C:\>lsnrctl services
    LSNRCTL for 32-bit Windows: Version 10.2.0.1.0 - Production on 07-JUL-2006 12:27
    :59
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=2020-5056)(PORT=1521)))
    Services Summary...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:0 refused:0
    LOCAL SERVER
    The command completed successfully
    SQLNET.ORA file:
    # sqlnet.ora Network Configuration File: C:\oracle\product\10.2.0\db_1\NETWORK\ADMIN\sqlnet.ora
    # Generated by Oracle configuration tools.
    # This file is actually generated by netca. But if customers choose to
    # install "Software Only", this file wont exist and without the native
    # authentication, they will not be able to connect to the database on NT.
    SQLNET.AUTHENTICATION_SERVICES= (NTS)
    NAMES.DIRECTORY_PATH= (TNSNAMES, EZCONNECT)
    Thanks,
    Kas

  • Session Problems: "Don't know how to iterate over supplied "items""

    Hi, I am developing my first application using Struts and JSP. The Action Form loads an object called reportGrid into session and I am trying to display it on a JSP page. Displaying simple variables works fine, but I can display an object. The error I receive is: Don't know how to iterate over supplied "items"
    My object is made up of a group of ArrayLists looks similar to this this:
            private List affiliateID;
         private List affiliateName;
         private List product1;
         private List product2;
         //etc for about 10 listsThe object is filled with data from a result set and placed into session like:
         HttpSession session = request.getSession();
         session.setAttribute("grid", reportGrid);The goal is to display each list in its own column in a HTML table.
    <table>
    <tr>
    <c:forEach var="affiliateName" items="${grid}">
              <td>
                   <c:out value="${affiliateName}" />
              </td>     
         </c:forEach>
         <c:forEach var="product1" items="${grid}">
              <td>
                   <c:out value="${product1}" />
              </td>     
         </c:forEach>
         <c:forEach var="product2" items="${grid}">
              <td>
                   <c:out value="${product2}" />
              </td>     
         </c:forEach>
    </tr>
    </table>I'm sure this has been asked before but I could not find any examples in the forums. I can place an ArrayList directly into session and iterate through using <c:forEach tags but when I try to do the same with an object it gives me the error " Don't know how to iterate over supplied "items" ".
    Does anyone have any examples of pulling and displaying an object in session which contains ArrayLists? I have been stuck on this same error for a while and any help will be greatly apreciated.
    James.          

    What is the type of grid?

  • c:foreach Don't know how to iterate over supplied "items"

    I keep getting this error (Don't know how to iterate over supplied "items" in <forEach>) whenever i run my jsp page.
    JSP Code:
    <c:set var="page_action" value="${sessionScope.httpData.find_Fix}" />
                        <c:set var="LoadedUpdates" value="${sessionScope.hotFix.fixDetails}" />
    <c:if test="${page_action != null}" >
    <div class="hot-fix">
    <table>
    <c:forEach items="${LoadedUpdates}" var="updates" varStatus="status">
    <tr>
    <td> ${status.count} </td><td><c:out  value="${updates}" /></td>
    </tr>
    </c:forEach>
    </table>
    </div>
    </c:if>JAVA Code (Backend Bean):
    import com.sun.java.util.collections.ArrayList;
    public class HotFixLoader {  
    ArrayList fixdetails = new ArrayList();
    public HotFixLoader(){
    for (int i = 0; i < 10; i++){       
    fixdetails.add("<a href=\"#\">xxxxxx</a>, xx/xx/xxxx, xyxyxyxyxy");
    public ArrayList getFixDetails(){
    return fixdetails;
    }

    Please don't post your problem multiple times http://forum.java.sun.com/thread.jspa?threadID=720679&messageID=4157979#4157979

  • Brarchive - BR0301W - ORA-00257: archiver error

    Hi all,
    when calling /usr/sap/B16/SYS/exe/run/brarchive -u / -p initB16.sap -d rman_util -sd and there already is an archiver stuck I get the following error:
    BR0002I BRARCHIVE 7.20 (16)
    BR0006I Start of offline redolog processing: aehmrvjb.svd 2011-12-23 09.41.11
    BR0484I BRARCHIVE log file: /oracle/B16/saparch/aehmrvjb.svd
    BR0280I BRARCHIVE time stamp: 2011-12-23 09.41.11
    BR0301W SQL error -257 at location BrDbConnect-2, SQL statement:
    'CONNECT /'
    ORA-00257: archiver error. Connect internal only, until freed.
    brarchive tries to create a pfile from the spfile before calls rman to archive the offline log files.
    I assume, that this is done by calling sqlplus with 'CONNECT /'' which fails because connecting as sysdba is necessary in this situation.
    Any suggestions how to circumvent this, so that the above error message doesn't show up?
    The problem doesen't seem to be critical because brarchive still is able to call RMAN successfully and by this the archiver stuck is resolved. It would be better, though, if brarchive doesn't run into any errors at all.
    Thanks for your support.
    Best Rgs,
    Thorsten

    Hi there,
    just to clarify: brarchive has no problem to archive the offline redologs themselves:
    The problem doesen't seem to be critical because brarchive still is able to call RMAN successfully and by this the archiver stuck is resolved. It would be better, though, if brarchive doesn't run into any errors at all.
    The actual problem is, that brarchive tries to create a pfile from the spfile via a sqlplus call and it tries to do this by "connect /" without the sysdba option. This behavior results in the error message I posted.
    What I'd actualy like to know if there's any way to explicitly tell brarchive to connect with the sysdba option?
    Best Rgs,
    Thorsten

  • ORA-00257: archiver error. Connect internal only, until freed.

    I have installed SAP in a ORacle Database.
    When i login to Oracle Datbase from the Backend, i am getting the following error.
    ORA-00257: archiver error. Connect internal only, until freed.
    I reqeust you to please let me know of what can be done on this

    PFB th log. Pls help
    Dump file d:\oracle\ism\saptrace\background\alert_ism.log
    Sat Oct 27 00:54:10 2007
    ORACLE V10.2.0.1.0 - Production vsnsta=0
    vsnsql=14 vsnxtr=3
    Windows Server 2003 Version V5.2 Service Pack 2
    CPU                 : 2 - type 586, 2 Physical Cores
    Process Affinity    : 0x00000000
    Memory (Avail/Total): Ph:2965M/3839M, Ph+PgF:16529M/17678M, VA:1928M/2047M
    Sat Oct 27 00:54:10 2007
    Starting ORACLE instance (normal)
    Sat Oct 27 00:54:10 2007
    Specified value of sga_max_size is too small, bumping to 633339904
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Shared memory segment for instance monitoring created
    Picked latch-free SCN scheme 2
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =10
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    ksdpec: called for event 13740 prior to event group initialization
    Starting up ORACLE RDBMS Version: 10.2.0.1.0.
    System parameters with non-default values:
      processes                = 80
      sessions                 = 96
      event                    = 10191 trace name context forever, level 1
      sga_max_size             = 633339904
      shared_pool_size         = 301989888
      shared_pool_reserved_size= 30183260
      filesystemio_options     = setall
      control_files            = D:\ORACLE\ISM\ORIGLOGA\CNTRL\CNTLRISM.DBF, D:\ORACLE\ISM\ORIGLOGB\CNTRL\CNTRLISM.DBF, D:\ORACLE\ISM\SAPDATA1\CNTRL\CNTRLISM.DBF
      control_file_record_keep_time= 30
      db_block_size            = 8192
      db_cache_size            = 301989888
      compatible               = 10.2.0
      log_archive_dest         = D:\oracle\ISM\oraarch\ISMarch
      log_buffer               = 2894848
      log_checkpoint_interval  = 0
      db_files                 = 254
      log_checkpoints_to_alert = TRUE
      dml_locks                = 4000
      undo_management          = AUTO
      undo_tablespace          = PSAPUNDO
      undo_retention           = 43200
      recyclebin               = off
      remote_os_authent        = TRUE
      remote_login_passwordfile= EXCLUSIVE
      job_queue_processes      = 1
      background_dump_dest     = D:\ORACLE\ISM\SAPTRACE\BACKGROUND
      user_dump_dest           = D:\ORACLE\ISM\SAPTRACE\USERTRACE
      core_dump_dest           = D:\ORACLE\ISM\SAPTRACE\BACKGROUND
      optimizer_features_enable= 10.2.0.1
      sort_area_size           = 2097152
      sort_area_retained_size  = 0
      db_name                  = ISM
      open_cursors             = 800
      optimpeek_user_binds   = FALSE
      pga_aggregate_target     = 402443468
      workarea_size_policy     = AUTO
      statistics_level         = typical
    PMON started with pid=2, OS id=3424
    PSP0 started with pid=3, OS id=1240
    MMAN started with pid=4, OS id=3676
    DBW0 started with pid=5, OS id=3664
    LGWR started with pid=6, OS id=3276
    CKPT started with pid=7, OS id=3156
    SMON started with pid=8, OS id=1140
    RECO started with pid=9, OS id=3412
    CJQ0 started with pid=10, OS id=3416
    MMON started with pid=11, OS id=2400
    MMNL started with pid=12, OS id=4044
    Sat Oct 27 00:54:13 2007
    CREATE DATABASE ISM CONTROLFILE REUSE  MAXLOGFILES 255 MAXLOGMEMBERS 3 MAXLOGHISTORY 1000 MAXDATAFILES 254 MAXINSTANCES 50 NOARCHIVELOG CHARACTER SET UTF8 NATIONAL CHARACTER SET UTF8 DATAFILE 'D:\oracle\ISM\sapdata1\system_1\system.data1' SIZE 350M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M EXTENT MANAGEMENT LOCAL DEFAULT TEMPORARY TABLESPACE PSAPTEMP TEMPFILE 'D:\oracle\ISM\sapdata1\temp_1\temp.data1' SIZE 570M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M UNDO TABLESPACE PSAPUNDO DATAFILE 'D:\oracle\ISM\sapdata1\undo_1\undo.data1' SIZE 700M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M SYSAUX DATAFILE 'D:\oracle\ISM\sapdata1\sysaux_1\sysaux.data1' SIZE 200M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M
    LOGFILE GROUP 1 ('D:\oracle\ISM/origlogA/log_g11m1.dbf',
    'D:\oracle\ISM/mirrlogA/log_g11m2.dbf') SIZE 50M  REUSE ,
    GROUP 2 ('D:\oracle\ISM/origlogB/log_g12m1.dbf',
    'D:\oracle\ISM/mirrlogB/log_g12m2.dbf') SIZE 50M  REUSE ,
    GROUP 3 ('D:\oracle\ISM/origlogA/log_g13m1.dbf',
    'D:\oracle\ISM/mirrlogA/log_g13m2.dbf') SIZE 50M  REUSE ,
    GROUP 4 ('D:\oracle\ISM/origlogB/log_g14m1.dbf',
    'D:\oracle\ISM/mirrlogB/log_g14m2.dbf') SIZE 50M  REUSE
    Sat Oct 27 00:54:14 2007
    Database mounted in Exclusive Mode
    Sat Oct 27 00:54:20 2007
    Successful mount of redo thread 1, with mount id 2062190453
    Assigning activation ID 2062190453 (0x7aea8775)
    Thread 1 opened at log sequence 1
      Current log# 1 seq# 1 mem# 0: D:\ORACLE\ISM\ORIGLOGA\LOG_G11M1.DBF
      Current log# 1 seq# 1 mem# 1: D:\ORACLE\ISM\MIRRLOGA\LOG_G11M2.DBF
    Successful open of redo thread 1
    Sat Oct 27 00:54:20 2007
    MTTR advisory is disabled because FAST_START_MTTR_TARGET is not set
    Sat Oct 27 00:54:20 2007
    SMON: enabling cache recovery
    Sat Oct 27 00:54:20 2007
    create tablespace SYSTEM datafile  'D:\oracle\ISM\sapdata1\system_1\system.data1' SIZE 350M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M
      EXTENT MANAGEMENT LOCAL online
    Sat Oct 27 00:54:22 2007
    Incremental checkpoint up to RBA [0x1.3.0], current log tail at RBA [0x1.3.0]
    Sat Oct 27 00:54:23 2007
    Completed: create tablespace SYSTEM datafile  'D:\oracle\ISM\sapdata1\system_1\system.data1' SIZE 350M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M
      EXTENT MANAGEMENT LOCAL online
    Sat Oct 27 00:54:23 2007
    create rollback segment SYSTEM tablespace SYSTEM
      storage (initial 50K next 50K)
    Completed: create rollback segment SYSTEM tablespace SYSTEM
      storage (initial 50K next 50K)
    Sat Oct 27 00:54:28 2007
    CREATE UNDO TABLESPACE PSAPUNDO DATAFILE  'D:\oracle\ISM\sapdata1\undo_1\undo.data1' SIZE 700M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M
    Sat Oct 27 00:54:34 2007
    Successfully onlined Undo Tablespace 1.
    Completed: CREATE UNDO TABLESPACE PSAPUNDO DATAFILE  'D:\oracle\ISM\sapdata1\undo_1\undo.data1' SIZE 700M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M
    Sat Oct 27 00:54:34 2007
    create tablespace SYSAUX datafile  'D:\oracle\ISM\sapdata1\sysaux_1\sysaux.data1' SIZE 200M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M
      EXTENT MANAGEMENT LOCAL SEGMENT SPACE MANAGEMENT AUTO online
    Completed: create tablespace SYSAUX datafile  'D:\oracle\ISM\sapdata1\sysaux_1\sysaux.data1' SIZE 200M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M
      EXTENT MANAGEMENT LOCAL SEGMENT SPACE MANAGEMENT AUTO online
    Sat Oct 27 00:54:36 2007
    CREATE TEMPORARY TABLESPACE PSAPTEMP TEMPFILE  'D:\oracle\ISM\sapdata1\temp_1\temp.data1' SIZE 570M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M
    Completed: CREATE TEMPORARY TABLESPACE PSAPTEMP TEMPFILE  'D:\oracle\ISM\sapdata1\temp_1\temp.data1' SIZE 570M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M
    Sat Oct 27 00:54:36 2007
    ALTER DATABASE DEFAULT TEMPORARY TABLESPACE PSAPTEMP
    Completed: ALTER DATABASE DEFAULT TEMPORARY TABLESPACE PSAPTEMP
    Sat Oct 27 00:54:36 2007
    ALTER DATABASE DEFAULT TABLESPACE SYSTEM
    Completed: ALTER DATABASE DEFAULT TABLESPACE SYSTEM
    Sat Oct 27 00:54:38 2007
    SMON: enabling tx recovery
    Sat Oct 27 00:54:38 2007
    Beginning local checkpoint up to RBA [0x1.7651.10], SCN: 10575
    Completed checkpoint up to RBA [0x1.7651.10], SCN: 10575
    Threshold validation cannot be done before catproc is loaded.
    replication_dependency_tracking turned off (no async multimaster replication found)
    Starting background process QMNC
    QMNC started with pid=14, OS id=3748
    Sat Oct 27 00:54:39 2007
    Completed: CREATE DATABASE ISM CONTROLFILE REUSE  MAXLOGFILES 255 MAXLOGMEMBERS 3 MAXLOGHISTORY 1000 MAXDATAFILES 254 MAXINSTANCES 50 NOARCHIVELOG CHARACTER SET UTF8 NATIONAL CHARACTER SET UTF8 DATAFILE 'D:\oracle\ISM\sapdata1\system_1\system.data1' SIZE 350M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M EXTENT MANAGEMENT LOCAL DEFAULT TEMPORARY TABLESPACE PSAPTEMP TEMPFILE 'D:\oracle\ISM\sapdata1\temp_1\temp.data1' SIZE 570M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M UNDO TABLESPACE PSAPUNDO DATAFILE 'D:\oracle\ISM\sapdata1\undo_1\undo.data1' SIZE 700M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M SYSAUX DATAFILE 'D:\oracle\ISM\sapdata1\sysaux_1\sysaux.data1' SIZE 200M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M
    LOGFILE GROUP 1 ('D:\oracle\ISM/origlogA/log_g11m1.dbf',
    'D:\oracle\ISM/mirrlogA/log_g11m2.dbf') SIZE 50M  REUSE ,
    GROUP 2 ('D:\oracle\ISM/origlogB/log_g12m1.dbf',
    'D:\oracle\ISM/mirrlogB/log_g12m2.dbf') SIZE 50M  REUSE ,
    GROUP 3 ('D:\oracle\ISM/origlogA/log_g13m1.dbf',
    'D:\oracle\ISM/mirrlogA/log_g13m2.dbf') SIZE 50M  REUSE ,
    GROUP 4 ('D:\oracle\ISM/origlogB/log_g14m1.dbf',
    'D:\oracle\ISM/mirrlogB/log_g14m2.dbf') SIZE 50M  REUSE
    Sat Oct 27 00:55:11 2007
    Beginning log switch checkpoint up to RBA [0x2.2.10], SCN: 36538
    Thread 1 advanced to log sequence 2
      Current log# 2 seq# 2 mem# 0: D:\ORACLE\ISM\ORIGLOGB\LOG_G12M1.DBF
      Current log# 2 seq# 2 mem# 1: D:\ORACLE\ISM\MIRRLOGB\LOG_G12M2.DBF
    Sat Oct 27 00:55:56 2007
    Beginning log switch checkpoint up to RBA [0x3.2.10], SCN: 63439
    Thread 1 advanced to log sequence 3
      Current log# 3 seq# 3 mem# 0: D:\ORACLE\ISM\ORIGLOGA\LOG_G13M1.DBF
      Current log# 3 seq# 3 mem# 1: D:\ORACLE\ISM\MIRRLOGA\LOG_G13M2.DBF
    Sat Oct 27 00:56:36 2007
    Beginning log switch checkpoint up to RBA [0x4.2.10], SCN: 81543
    Thread 1 advanced to log sequence 4
      Current log# 4 seq# 4 mem# 0: D:\ORACLE\ISM\ORIGLOGB\LOG_G14M1.DBF
      Current log# 4 seq# 4 mem# 1: D:\ORACLE\ISM\MIRRLOGB\LOG_G14M2.DBF
    Sat Oct 27 00:56:48 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2802K exceeds notification threshold (2048K)
    Sat Oct 27 00:56:48 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2795K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on PLUGGABLE_SET_CHECK to SELECT_CATALOG_ROLE
    Sat Oct 27 00:56:49 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2791K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on PLUGGABLE_SET_CHECK to SELECT_CATALOG_ROLE
    Sat Oct 27 00:56:54 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 3161K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :select a.*,   case when      input_bytes/decode(output_bytes, 0, null, output_bytes) > 1   then      input_bytes/decode(output_bytes, 0, null, output_bytes)   else 1 end compression_ratio,   sys.dbms_rcvman.num2displaysize(input_bytes) input_bytes_display,   sys.dbms_rcvman.num2displaysize(output_bytes) output_bytes_display  from (select sum(num_files_backed) num_files_backed,       sum(distinct_files_backed) distinct_files_backed,       min(min_first_change#) min_first_change#,       max(max_next_change#)
    Sat Oct 27 00:57:23 2007
    Completed checkpoint up to RBA [0x2.2.10], SCN: 36538
    Sat Oct 27 00:57:29 2007
    Beginning log switch checkpoint up to RBA [0x5.2.10], SCN: 97101
    Thread 1 advanced to log sequence 5
      Current log# 1 seq# 5 mem# 0: D:\ORACLE\ISM\ORIGLOGA\LOG_G11M1.DBF
      Current log# 1 seq# 5 mem# 1: D:\ORACLE\ISM\MIRRLOGA\LOG_G11M2.DBF
    Sat Oct 27 00:57:30 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2092K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_iont_view to select_catalog_role
    Sat Oct 27 00:57:30 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2092K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_iont_view to select_catalog_role
    Sat Oct 27 00:57:31 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 4682K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    Sat Oct 27 00:57:31 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 5138K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_nt_parent_view to select_catalog_role
    Sat Oct 27 00:57:31 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 5135K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_nt_parent_view to select_catalog_role
    Sat Oct 27 00:57:31 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2251K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    Sat Oct 27 00:57:32 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2386K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_htable_view to public
    Sat Oct 27 00:57:32 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2384K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_htable_view to public
    Sat Oct 27 00:57:32 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2298K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    Sat Oct 27 00:57:32 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2484K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_10_1_htable_view to public
    Sat Oct 27 00:57:32 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2481K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_10_1_htable_view to public
    Sat Oct 27 00:57:32 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 3342K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    Sat Oct 27 00:57:33 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 3566K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_phtable_view to public
    Sat Oct 27 00:57:33 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 3562K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_phtable_view to public
    Sat Oct 27 00:57:33 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 3397K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    Sat Oct 27 00:57:33 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 3702K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_10_1_phtable_view to public
    Sat Oct 27 00:57:33 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 3701K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_10_1_phtable_view to public
    Sat Oct 27 00:57:34 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 7593K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    Sat Oct 27 00:57:35 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 8426K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_fhtable_view to public
    Sat Oct 27 00:57:35 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 8424K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_fhtable_view to public
    Sat Oct 27 00:57:36 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 7676K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    Sat Oct 27 00:57:36 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 8666K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_10_1_fhtable_view to public
    Sat Oct 27 00:57:36 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 8664K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_10_1_fhtable_view to public
    Sat Oct 27 00:57:37 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 8853K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    Sat Oct 27 00:57:38 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 9776K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_pfhtable_view to public
    Sat Oct 27 00:57:38 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 9774K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_pfhtable_view to public
    Sat Oct 27 00:57:39 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 8946K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    Sat Oct 27 00:57:40 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 10060K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_10_1_pfhtable_view to public
    Sat Oct 27 00:57:40 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 10057K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_10_1_pfhtable_view to public
    Sat Oct 27 00:57:41 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 7546K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    Sat Oct 27 00:57:42 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 8378K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_iotable_view to public
    Sat Oct 27 00:57:42 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 8376K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_iotable_view to public
    Sat Oct 27 00:57:42 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 7626K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    Sat Oct 27 00:57:43 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 8617K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_10_1_iotable_view to public
    Sat Oct 27 00:57:43 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 8616K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_10_1_iotable_view to public
    Sat Oct 27 00:57:44 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 8305K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    Sat Oct 27 00:57:45 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 9203K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_piotable_view to public
    Sat Oct 27 00:57:45 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 9203K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_piotable_view to public
    Sat Oct 27 00:57:46 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 8396K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    Sat Oct 27 00:57:47 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 9475K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_10_1_piotable_view to public
    Sat Oct 27 00:57:47 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 9473K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_10_1_piotable_view to public
    Sat Oct 27 00:57:48 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2424K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    Sat Oct 27 00:57:48 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2654K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_table_data_view to public
    Sat Oct 27 00:57:48 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2651K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_table_data_view to public
    Sat Oct 27 00:57:48 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2430K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    Sat Oct 27 00:57:49 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2658K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_10_1_table_data_view to public
    Sat Oct 27 00:57:49 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2657K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_10_1_table_data_view to public
    Sat Oct 27 00:57:51 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2526K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    Sat Oct 27 00:57:51 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2717K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_view_view to public
    Sat Oct 27 00:57:51 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2716K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_view_view to public
    Sat Oct 27 00:57:54 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 3482K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    Sat Oct 27 00:57:54 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 3785K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_m_view_h_view to public
    Sat Oct 27 00:57:54 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 3784K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_m_view_h_view to public
    Sat Oct 27 00:57:54 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 4586K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    Sat Oct 27 00:57:54 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 5007K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_m_view_ph_view to public
    Sat Oct 27 00:57:55 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 5004K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_m_view_ph_view to public
    Sat Oct 27 00:57:56 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 8871K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    Sat Oct 27 00:57:56 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 9977K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_m_view_fh_view to public
    Sat Oct 27 00:57:56 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 9976K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_m_view_fh_view to public
    Sat Oct 27 00:57:58 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 10142K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    Sat Oct 27 00:57:58 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 11371K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_m_view_pfh_view to public
    Sat Oct 27 00:57:58 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 11369K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_m_view_pfh_view to public
    Sat Oct 27 00:57:59 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 8811K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    Sat Oct 27 00:58:00 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 9920K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_m_view_iot_view to public
    Sat Oct 27 00:58:00 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 9919K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_m_view_iot_view to public
    Sat Oct 27 00:58:01 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 9583K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    Sat Oct 27 00:58:02 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 10777K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_m_view_piot_view to public
    Sat Oct 27 00:58:02 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 10774K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_m_view_piot_view to public
    Sat Oct 27 00:58:03 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2350K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    Sat Oct 27 00:58:04 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2546K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_m_view_log_h_view to public
    Sat Oct 27 00:58:04 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2545K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_m_view_log_h_view to public
    Sat Oct 27 00:58:04 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 3449K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    Sat Oct 27 00:58:04 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 3768K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_m_view_log_ph_view to public
    Sat Oct 27 00:58:04 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 3765K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_m_view_log_ph_view to public
    Sat Oct 27 00:58:05 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 7736K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    Sat Oct 27 00:58:05 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 8738K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_m_view_log_fh_view to public
    Sat Oct 27 00:58:05 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 8737K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_m_view_log_fh_view to public
    Sat Oct 27 00:58:07 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 9008K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    Sat Oct 27 00:58:07 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 10132K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_m_view_log_pfh_view to public
    Sat Oct 27 00:58:07 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 10130K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on ku$_m_view_log_pfh_view to public
    Sat Oct 27 00:58:40 2007
    Thread 1 cannot allocate new log, sequence 6
    Checkpoint not complete
      Current log# 1 seq# 5 mem# 0: D:\ORACLE\ISM\ORIGLOGA\LOG_G11M1.DBF
      Current log# 1 seq# 5 mem# 1: D:\ORACLE\ISM\MIRRLOGA\LOG_G11M2.DBF
    Sat Oct 27 00:58:40 2007
    Completed checkpoint up to RBA [0x3.2.10], SCN: 63439
    Sat Oct 27 00:58:40 2007
    Beginning log switch checkpoint up to RBA [0x6.2.10], SCN: 108137
    Thread 1 advanced to log sequence 6
      Current log# 2 seq# 6 mem# 0: D:\ORACLE\ISM\ORIGLOGB\LOG_G12M1.DBF
      Current log# 2 seq# 6 mem# 1: D:\ORACLE\ISM\MIRRLOGB\LOG_G12M2.DBF
    Sat Oct 27 00:58:41 2007
    Completed checkpoint up to RBA [0x4.2.10], SCN: 81543
    Sat Oct 27 00:59:00 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2403K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    Sat Oct 27 00:59:00 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2322K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on "_ALL_REPCOLUMN_GROUP" to PUBLIC with grant option
    Sat Oct 27 00:59:00 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2321K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on "_ALL_REPCOLUMN_GROUP" to PUBLIC with grant option
    Sat Oct 27 00:59:01 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2490K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    Sat Oct 27 00:59:01 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2406K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on "_ALL_REPRESOLUTION" to public with grant option
    Sat Oct 27 00:59:01 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2404K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_3540.trc
    KGL object name :grant select on "_ALL_REPRESOLUTION" to public with grant option
    Sat Oct 27 00:59:37 2007
    Beginning log switch checkpoint up to RBA [0x7.2.10], SCN: 124713
    Thread 1 advanced to log sequence 7
      Current log# 3 seq# 7 mem# 0: D:\ORACLE\ISM\ORIGLOGA\LOG_G13M1.DBF
      Current log# 3 seq# 7 mem# 1: D:\ORACLE\ISM\MIRRLOGA\LOG_G13M2.DBF
    Sat Oct 27 01:00:22 2007
    Completed checkpoint up to RBA [0x5.2.10], SCN: 97101
    Sat Oct 27 01:01:27 2007
    Beginning log switch checkpoint up to RBA [0x8.2.10], SCN: 145198
    Thread 1 advanced to log sequence 8
      Current log# 4 seq# 8 mem# 0: D:\ORACLE\ISM\ORIGLOGB\LOG_G14M1.DBF
      Current log# 4 seq# 8 mem# 1: D:\ORACLE\ISM\MIRRLOGB\LOG_G14M2.DBF
    Sat Oct 27 01:03:44 2007
    Completed checkpoint up to RBA [0x6.2.10], SCN: 108137
    Sat Oct 27 01:04:41 2007
    Completed checkpoint up to RBA [0x7.2.10], SCN: 124713
    Sat Oct 27 01:06:29 2007
    Completed checkpoint up to RBA [0x8.2.10], SCN: 145198
    Dump file d:\oracle\ism\saptrace\background\alert_ism.log
    Sat Oct 27 04:22:06 2007
    ORACLE V10.2.0.1.0 - Production vsnsta=0
    vsnsql=14 vsnxtr=3
    Windows Server 2003 Version V5.2 Service Pack 2
    CPU                 : 2 - type 586, 2 Physical Cores
    Process Affinity    : 0x00000000
    Memory (Avail/Total): Ph:3208M/3839M, Ph+PgF:11219M/11678M, VA:1928M/2047M
    Sat Oct 27 04:22:06 2007
    Starting ORACLE instance (normal)
    Sat Oct 27 04:22:06 2007
    Specified value of sga_max_size is too small, bumping to 952107008
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 2
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =10
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    ksdpec: called for event 13740 prior to event group initialization
    Starting up ORACLE RDBMS Version: 10.2.0.1.0.
    System parameters with non-default values:
      processes                = 80
      sessions                 = 96
      event                    = 10191 trace name context forever, level 1
      sga_max_size             = 952107008
      shared_pool_size         = 461373440
      shared_pool_reserved_size= 45911900
      filesystemio_options     = setall
      control_files            = D:\ORACLE\ISM\ORIGLOGA\CNTRL\CNTLRISM.DBF, D:\ORACLE\ISM\ORIGLOGB\CNTRL\CNTRLISM.DBF, D:\ORACLE\ISM\SAPDATA1\CNTRL\CNTRLISM.DBF
      control_file_record_keep_time= 30
      db_block_size            = 8192
      db_cache_size            = 461373440
      compatible               = 10.2.0
      log_archive_dest         = D:\oracle\ISM\oraarch\ISMarch
      log_buffer               = 2894848
      log_checkpoint_interval  = 0
      db_files                 = 254
      log_checkpoints_to_alert = TRUE
      dml_locks                = 4000
      undo_management          = AUTO
      undo_tablespace          = PSAPUNDO
      undo_retention           = 43200
      recyclebin               = off
      remote_os_authent        = TRUE
      remote_login_passwordfile= EXCLUSIVE
      job_queue_processes      = 1
      background_dump_dest     = D:\ORACLE\ISM\SAPTRACE\BACKGROUND
      user_dump_dest           = D:\ORACLE\ISM\SAPTRACE\USERTRACE
      core_dump_dest           = D:\ORACLE\ISM\SAPTRACE\BACKGROUND
      optimizer_features_enable= 10.2.0.1
      sort_area_size           = 2097152
      sort_area_retained_size  = 0
      db_name                  = ISM
      open_cursors             = 800
      optimpeek_user_binds   = FALSE
      pga_aggregate_target     = 612158668
      workarea_size_policy     = AUTO
      statistics_level         = typical
    MMAN started with pid=4, OS id=1944
    DBW0 started with pid=5, OS id=1936
    LGWR started with pid=6, OS id=3128
    CKPT started with pid=7, OS id=2692
    SMON started with pid=8, OS id=2052
    RECO started with pid=9, OS id=2060
    CJQ0 started with pid=10, OS id=2040
    MMON started with pid=11, OS id=2056
    MMNL started with pid=12, OS id=1128
    PSP0 started with pid=3, OS id=2000
    PMON started with pid=2, OS id=1724
    Sat Oct 27 04:22:35 2007
    CREATE DATABASE ISM CONTROLFILE REUSE  MAXLOGFILES 255 MAXLOGMEMBERS 3 MAXLOGHISTORY 1000 MAXDATAFILES 254 MAXINSTANCES 50 NOARCHIVELOG CHARACTER SET UTF8 NATIONAL CHARACTER SET UTF8 DATAFILE 'D:\oracle\ISM\sapdata1\system_1\system.data1' SIZE 350M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M EXTENT MANAGEMENT LOCAL DEFAULT TEMPORARY TABLESPACE PSAPTEMP TEMPFILE 'D:\oracle\ISM\sapdata1\temp_1\temp.data1' SIZE 570M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M UNDO TABLESPACE PSAPUNDO DATAFILE 'D:\oracle\ISM\sapdata1\undo_1\undo.data1' SIZE 700M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M SYSAUX DATAFILE 'D:\oracle\ISM\sapdata1\sysaux_1\sysaux.data1' SIZE 200M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M
    LOGFILE GROUP 1 ('D:\oracle\ISM/origlogA/log_g11m1.dbf',
    'D:\oracle\ISM/mirrlogA/log_g11m2.dbf') SIZE 50M  REUSE ,
    GROUP 2 ('D:\oracle\ISM/origlogB/log_g12m1.dbf',
    'D:\oracle\ISM/mirrlogB/log_g12m2.dbf') SIZE 50M  REUSE ,
    GROUP 3 ('D:\oracle\ISM/origlogA/log_g13m1.dbf',
    'D:\oracle\ISM/mirrlogA/log_g13m2.dbf') SIZE 50M  REUSE ,
    GROUP 4 ('D:\oracle\ISM/origlogB/log_g14m1.dbf',
    'D:\oracle\ISM/mirrlogB/log_g14m2.dbf') SIZE 50M  REUSE
    Sat Oct 27 04:22:36 2007
    Database mounted in Exclusive Mode
    Sat Oct 27 04:22:40 2007
    Successful mount of redo thread 1, with mount id 2062132555
    Assigning activation ID 2062132555 (0x7ae9a54b)
    Thread 1 opened at log sequence 1
      Current log# 1 seq# 1 mem# 0: D:\ORACLE\ISM\ORIGLOGA\LOG_G11M1.DBF
      Current log# 1 seq# 1 mem# 1: D:\ORACLE\ISM\MIRRLOGA\LOG_G11M2.DBF
    Successful open of redo thread 1
    Sat Oct 27 04:22:40 2007
    MTTR advisory is disabled because FAST_START_MTTR_TARGET is not set
    Sat Oct 27 04:22:40 2007
    SMON: enabling cache recovery
    Sat Oct 27 04:22:40 2007
    create tablespace SYSTEM datafile  'D:\oracle\ISM\sapdata1\system_1\system.data1' SIZE 350M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M
      EXTENT MANAGEMENT LOCAL online
    Sat Oct 27 04:22:41 2007
    Incremental checkpoint up to RBA [0x1.3.0], current log tail at RBA [0x1.3.0]
    Sat Oct 27 04:22:44 2007
    Completed: create tablespace SYSTEM datafile  'D:\oracle\ISM\sapdata1\system_1\system.data1' SIZE 350M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M
      EXTENT MANAGEMENT LOCAL online
    Sat Oct 27 04:22:44 2007
    create rollback segment SYSTEM tablespace SYSTEM
      storage (initial 50K next 50K)
    Completed: create rollback segment SYSTEM tablespace SYSTEM
      storage (initial 50K next 50K)
    Sat Oct 27 04:22:49 2007
    CREATE UNDO TABLESPACE PSAPUNDO DATAFILE  'D:\oracle\ISM\sapdata1\undo_1\undo.data1' SIZE 700M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M
    Sat Oct 27 04:22:54 2007
    Successfully onlined Undo Tablespace 1.
    Completed: CREATE UNDO TABLESPACE PSAPUNDO DATAFILE  'D:\oracle\ISM\sapdata1\undo_1\undo.data1' SIZE 700M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M
    Sat Oct 27 04:22:54 2007
    create tablespace SYSAUX datafile  'D:\oracle\ISM\sapdata1\sysaux_1\sysaux.data1' SIZE 200M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M
      EXTENT MANAGEMENT LOCAL SEGMENT SPACE MANAGEMENT AUTO online
    Completed: create tablespace SYSAUX datafile  'D:\oracle\ISM\sapdata1\sysaux_1\sysaux.data1' SIZE 200M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M
      EXTENT MANAGEMENT LOCAL SEGMENT SPACE MANAGEMENT AUTO online
    Sat Oct 27 04:22:57 2007
    CREATE TEMPORARY TABLESPACE PSAPTEMP TEMPFILE  'D:\oracle\ISM\sapdata1\temp_1\temp.data1' SIZE 570M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M
    Completed: CREATE TEMPORARY TABLESPACE PSAPTEMP TEMPFILE  'D:\oracle\ISM\sapdata1\temp_1\temp.data1' SIZE 570M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M
    Sat Oct 27 04:22:57 2007
    ALTER DATABASE DEFAULT TEMPORARY TABLESPACE PSAPTEMP
    Completed: ALTER DATABASE DEFAULT TEMPORARY TABLESPACE PSAPTEMP
    Sat Oct 27 04:22:57 2007
    ALTER DATABASE DEFAULT TABLESPACE SYSTEM
    Completed: ALTER DATABASE DEFAULT TABLESPACE SYSTEM
    Sat Oct 27 04:22:59 2007
    SMON: enabling tx recovery
    Sat Oct 27 04:22:59 2007
    Beginning local checkpoint up to RBA [0x1.75fb.10], SCN: 10621
    Completed checkpoint up to RBA [0x1.75fb.10], SCN: 10621
    Threshold validation cannot be done before catproc is loaded.
    replication_dependency_tracking turned off (no async multimaster replication found)
    Starting background process QMNC
    QMNC started with pid=14, OS id=2128
    Sat Oct 27 04:23:01 2007
    Completed: CREATE DATABASE ISM CONTROLFILE REUSE  MAXLOGFILES 255 MAXLOGMEMBERS 3 MAXLOGHISTORY 1000 MAXDATAFILES 254 MAXINSTANCES 50 NOARCHIVELOG CHARACTER SET UTF8 NATIONAL CHARACTER SET UTF8 DATAFILE 'D:\oracle\ISM\sapdata1\system_1\system.data1' SIZE 350M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M EXTENT MANAGEMENT LOCAL DEFAULT TEMPORARY TABLESPACE PSAPTEMP TEMPFILE 'D:\oracle\ISM\sapdata1\temp_1\temp.data1' SIZE 570M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M UNDO TABLESPACE PSAPUNDO DATAFILE 'D:\oracle\ISM\sapdata1\undo_1\undo.data1' SIZE 700M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M SYSAUX DATAFILE 'D:\oracle\ISM\sapdata1\sysaux_1\sysaux.data1' SIZE 200M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M
    LOGFILE GROUP 1 ('D:\oracle\ISM/origlogA/log_g11m1.dbf',
    'D:\oracle\ISM/mirrlogA/log_g11m2.dbf') SIZE 50M  REUSE ,
    GROUP 2 ('D:\oracle\ISM/origlogB/log_g12m1.dbf',
    'D:\oracle\ISM/mirrlogB/log_g12m2.dbf') SIZE 50M  REUSE ,
    GROUP 3 ('D:\oracle\ISM/origlogA/log_g13m1.dbf',
    'D:\oracle\ISM/mirrlogA/log_g13m2.dbf') SIZE 50M  REUSE ,
    GROUP 4 ('D:\oracle\ISM/origlogB/log_g14m1.dbf',
    'D:\oracle\ISM/mirrlogB/log_g14m2.dbf') SIZE 50M  REUSE
    Sat Oct 27 04:23:32 2007
    Beginning log switch checkpoint up to RBA [0x2.2.10], SCN: 36577
    Thread 1 advanced to log sequence 2
      Current log# 2 seq# 2 mem# 0: D:\ORACLE\ISM\ORIGLOGB\LOG_G12M1.DBF
      Current log# 2 seq# 2 mem# 1: D:\ORACLE\ISM\MIRRLOGB\LOG_G12M2.DBF
    Sat Oct 27 04:24:32 2007
    Beginning log switch checkpoint up to RBA [0x3.2.10], SCN: 63599
    Thread 1 advanced to log sequence 3
      Current log# 3 seq# 3 mem# 0: D:\ORACLE\ISM\ORIGLOGA\LOG_G13M1.DBF
      Current log# 3 seq# 3 mem# 1: D:\ORACLE\ISM\MIRRLOGA\LOG_G13M2.DBF
    Sat Oct 27 04:25:09 2007
    Beginning log switch checkpoint up to RBA [0x4.2.10], SCN: 81508
    Thread 1 advanced to log sequence 4
      Current log# 4 seq# 4 mem# 0: D:\ORACLE\ISM\ORIGLOGB\LOG_G14M1.DBF
      Current log# 4 seq# 4 mem# 1: D:\ORACLE\ISM\MIRRLOGB\LOG_G14M2.DBF
    Sat Oct 27 04:25:20 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2802K exceeds notification threshold (2048K)
    Sat Oct 27 04:25:20 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2795K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    KGL object name :grant select on PLUGGABLE_SET_CHECK to SELECT_CATALOG_ROLE
    Sat Oct 27 04:25:21 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2791K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    KGL object name :grant select on PLUGGABLE_SET_CHECK to SELECT_CATALOG_ROLE
    Sat Oct 27 04:25:26 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 3161K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    KGL object name :select a.*,   case when      input_bytes/decode(output_bytes, 0, null, output_bytes) > 1   then      input_bytes/decode(output_bytes, 0, null, output_bytes)   else 1 end compression_ratio,   sys.dbms_rcvman.num2displaysize(input_bytes) input_bytes_display,   sys.dbms_rcvman.num2displaysize(output_bytes) output_bytes_display  from (select sum(num_files_backed) num_files_backed,       sum(distinct_files_backed) distinct_files_backed,       min(min_first_change#) min_first_change#,       max(max_next_change#)
    Sat Oct 27 04:25:54 2007
    Completed checkpoint up to RBA [0x2.2.10], SCN: 36577
    Sat Oct 27 04:25:59 2007
    Beginning log switch checkpoint up to RBA [0x5.2.10], SCN: 97222
    Thread 1 advanced to log sequence 5
      Current log# 1 seq# 5 mem# 0: D:\ORACLE\ISM\ORIGLOGA\LOG_G11M1.DBF
      Current log# 1 seq# 5 mem# 1: D:\ORACLE\ISM\MIRRLOGA\LOG_G11M2.DBF
    Sat Oct 27 04:26:00 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2092K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    KGL object name :grant select on ku$_iont_view to select_catalog_role
    Sat Oct 27 04:26:00 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2092K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    KGL object name :grant select on ku$_iont_view to select_catalog_role
    Sat Oct 27 04:26:01 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 4682K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    Sat Oct 27 04:26:01 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 5138K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    KGL object name :grant select on ku$_nt_parent_view to select_catalog_role
    Sat Oct 27 04:26:01 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 5135K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    KGL object name :grant select on ku$_nt_parent_view to select_catalog_role
    Sat Oct 27 04:26:02 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2251K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    Sat Oct 27 04:26:02 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2386K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    KGL object name :grant select on ku$_htable_view to public
    Sat Oct 27 04:26:02 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2384K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    KGL object name :grant select on ku$_htable_view to public
    Sat Oct 27 04:26:02 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2298K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    Sat Oct 27 04:26:02 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2484K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    KGL object name :grant select on ku$_10_1_htable_view to public
    Sat Oct 27 04:26:02 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2481K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    KGL object name :grant select on ku$_10_1_htable_view to public
    Sat Oct 27 04:26:03 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 3342K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    Sat Oct 27 04:26:03 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 3566K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    KGL object name :grant select on ku$_phtable_view to public
    Sat Oct 27 04:26:03 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 3562K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    KGL object name :grant select on ku$_phtable_view to public
    Sat Oct 27 04:26:03 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 3397K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    Sat Oct 27 04:26:03 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 3702K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    KGL object name :grant select on ku$_10_1_phtable_view to public
    Sat Oct 27 04:26:03 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 3701K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    KGL object name :grant select on ku$_10_1_phtable_view to public
    Sat Oct 27 04:26:04 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 7593K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    Sat Oct 27 04:26:05 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 8426K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    KGL object name :grant select on ku$_fhtable_view to public
    Sat Oct 27 04:26:05 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 8424K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    KGL object name :grant select on ku$_fhtable_view to public
    Sat Oct 27 04:26:06 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 7676K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    Sat Oct 27 04:26:06 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 8666K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    KGL object name :grant select on ku$_10_1_fhtable_view to public
    Sat Oct 27 04:26:06 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 8664K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    KGL object name :grant select on ku$_10_1_fhtable_view to public
    Sat Oct 27 04:26:08 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 8853K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    Sat Oct 27 04:26:08 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 9776K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    KGL object name :grant select on ku$_pfhtable_view to public
    Sat Oct 27 04:26:08 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 9774K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    KGL object name :grant select on ku$_pfhtable_view to public
    Sat Oct 27 04:26:09 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 8946K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    Sat Oct 27 04:26:10 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 10060K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    KGL object name :grant select on ku$_10_1_pfhtable_view to public
    Sat Oct 27 04:26:10 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 10057K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    KGL object name :grant select on ku$_10_1_pfhtable_view to public
    Sat Oct 27 04:26:11 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 7546K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    Sat Oct 27 04:26:12 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 8378K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    KGL object name :grant select on ku$_iotable_view to public
    Sat Oct 27 04:26:12 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 8376K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    KGL object name :grant select on ku$_iotable_view to public
    Sat Oct 27 04:26:12 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 7626K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    Sat Oct 27 04:26:13 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 8617K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    KGL object name :grant select on ku$_10_1_iotable_view to public
    Sat Oct 27 04:26:13 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 8616K exceeds notification threshold (2048K)
    Details in trace file d:\oracle\ism\saptrace\usertrace\ism_ora_2528.trc
    KGL object name :grant select on ku$_10_1_iotable_view to public
    Sat Oct 27 04:26:14 2007
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 8307K exceeds notification th

Maybe you are looking for

  • HT200197 Set date and time

    I can't get my apple tv logged onto itunes before date and time is set. The process never ends and I can't find out how to do it manually. Anybodu out there with a hint?

  • Question about creating Web service for Xcelsius

    Has anyone successfully written a Web service in .Net C# that Xcelsius can use? I was just trying to create something simple and it will not work. I get data in my Xcelsius report, but it is all lumped into one 'cell' and the XML tags are still in th

  • CS6 Master Collection Download

    The following programs did not download with my CS6 Master Collection. Bridge cs6, Media Encoder cs6, and Flashbuilder 4.6 Premium Edition. What do I need to do in order to get these software?

  • WAP321 setup - HELP - HELP

    Hello All, Our company located on 2 floor of a bussiness buiding.  I just bought 6 devices of Cisco WAP321 and would like to setup a wireless so users can move from 1 floor to the other floor with wireless still connect and the speed is at the fastes

  • OW4J vs. BPEL

    Hi, I am currently evaluating which BPM framework to use for an eBusiness B2B enterprise application. I am currently considering using the ebXML standards framework from OASIS, and plan to use ORACLE products namely Oracle DB + Application server. It