ORA-00257:

Hi Friends
I am getting this error ORA-00257: archiver error. Connect internal only, until freed. , when there is more than 30gb space empty on my system . an early help is appriciated . its very critical situation for me
i am using oracle 8i on windows

Do i need to keep database in archivelog modeIf you want to be able to RECOVER the database, it needs to be in archiver mode.
STARTUP MOUNT
ALTER SYSTEM ARCHIVE LOG START;
ALTER DATABASE ONLINE;

Similar Messages

  • ORA-00257: archiver error.

    Hi Experts,
    Again, I need you expert opinions on the issue I'm facing in my EBS production database.
    My database is up and running but I see loads of ORA errors in my alert log file...
    Content of alert logfile:-
    ORA-16038: log 1 sequence# 8950 cannot be archived
    ORA-19502: write error on file "", block number (block size=)
    ORA-00312: online log 1 thread 1: '/mnt/PRDdata/trcprd/redo01a.log'
    ORA-00312: online log 1 thread 1: '/mnt/PRDdata/trcprd/redo01b.log'
    ORA-16014: log 1 sequence# 8950 not archived, no available destinations
    ORA-00312: online log 1 thread 1: '/mnt/PRDdata/trcprd/redo01a.log'
    ORA-00312: online log 1 thread 1: '/mnt/PRDdata/trcprd/redo01b.log'
    ORA-16038: log 1 sequence# 8950 cannot be archived
    ORA-19502: write error on file "", block number (block size=)
    ORA-00312: online log 1 thread 1: '/mnt/PRDdata/trcprd/redo01a.log'
    ORA-00312: online log 1 thread 1: '/mnt/PRDdata/trcprd/redo01b.log'
    ORA-16014: log 1 sequence# 8950 not archived, no available destinations
    ORA-00312: online log 1 thread 1: '/mnt/PRDdata/trcprd/redo01a.log'
    ORA-00312: online log 1 thread 1: '/mnt/PRDdata/trcprd/redo01b.log'
    ORA-16038: log 1 sequence# 8950 cannot be archived
    ORA-19502: write error on file "", block number (block size=)
    ORA-00312: online log 1 thread 1: '/mnt/PRDdata/trcprd/redo01a.log'
    ORA-00312: online log 1 thread 1: '/mnt/PRDdata/trcprd/redo01b.log'
    ORA-16014: log 1 sequence# 8950 not archived, no available destinations
    ORA-00312: online log 1 thread 1: '/mnt/PRDdata/trcprd/redo01a.log'
    ORA-00312: online log 1 thread 1: '/mnt/PRDdata/trcprd/redo01b.log'
    ORA-16038: log 1 sequence# 8950 cannot be archived
    ORA-19502: write error on file "", block number (block size=)
    ORA-00312: online log 1 thread 1: '/mnt/PRDdata/trcprd/redo01a.log'
    ORA-00312: online log 1 thread 1: '/mnt/PRDdata/trcprd/redo01b.log'
    Also my Workflow mailer has stopped with this error:
    " ORA-00257: archiver error. Connect internal only, until freed.. "
    The first thing I did after this error was to check the archive destination space
    SQL> archive log list;
    Database log mode              Archive Mode
    Automatic archival             Enabled
    Archive destination            /mnt/PRDarchive/trcprd
    Oldest online log sequence     8960
    Next log sequence to archive   8960
    Current log sequence           8962
    SQL> !df -h /mnt/PRDarchive/trcprd
    Filesystem            Size  Used Avail Use% Mounted on
    /dev/mapper/oracle_archive-oracle_archive
                           99G   94G   59M 100% /mnt/PRDarchive
    I removed some of the old archives which were already backed up to release some space, and ran
    1. crosscheck archivelog all
    2. delete noprompt expired archivelog all;
    2. crosscheck archivelog all;
    Meanwhile my database was scheduled for a hot backup, and it failed with the below error:
    The log file says:-
    RMAN-03009: failure of delete command on dsk_9 channel at 10/25/2013 23:59:49
    ORA-19606: Cannot copy or restore to snapshot control file
    Please tell me how do I troubleshoot to know the root cause behind all these activities and how do I fix it.
    Your response will be highly appreciated.
    DB Version - 11.2.0.3
    OS Version - RHEL 5, 64bit
    EBS Version- 11.5.10.2
    -Thanks

    Hi,
    ORA-16038: log 1 sequence# 8950 cannot be archived
    ORA-19502: write error on file "", block number (block size=)
    Please confirm that after you have released space for archive logs, do you still get the errors that were before reported in the alert log file? And what is the current output of:
    df -h /mnt/PRDarchive/trcprd
    RMAN-03009: failure of delete command on dsk_9 channel at 10/25/2013 23:59:49
    ORA-19606: Cannot copy or restore to snapshot control file
    Please refer the following for cause and solution:
    ORA-19606: Cannot copy or restore to snapshot control file, RMAN-06214
    https://forums.oracle.com/message/3931860
    Thanks &
    Best Regards,

  • How to update more than 5 million records without error message ORA-00257:

    Hi ,
    I need to update some columns in my table which is contains about 5 million records
    I 've already tried this
    Update AAA_CDR
    Set RoamFload = Null ;
    but the problem is I've got the error message ("ORA-00257: archiver error. Connect internal only,until freed.) and the update consuming about 6 hours with no results ,
    then I do the commands ( Alter system set db_recovery_file_dest_size=50G) and the problem solved .
    but I need to update about 15 columns of this table to be null ,what I should do to overcome this message and update the table in reasonable time
    Please Help Me ,

    The best way would be to allocate sufficient disk space for your archive log destination. Your database is not sized properly. NOLOGGING option will not do much for you because it' only applies to direct load operations when the data inserted into nologging table is selected from another table. UPDATE will be be logged, regardless of the NOLOGGING status. Here is the quote from the manual:
    <quote>
    LOGGING|NOLOGGING
    LOGGING|NOLOGGING specifies that subsequent Direct Loader (SQL*Loader) and direct-load
    INSERT operations against a nonpartitioned index, a range or hash index partition, or
    all partitions or subpartitions of a composite-partitioned index will be logged (LOGGING)
    or not logged (NOLOGGING) in the redo log file.
    In NOLOGGING mode, data is modified with minimal logging (to mark new extents invalid
    and to record dictionary changes). When applied during media recovery, the extent
    invalidation records mark a range of blocks as logically corrupt, because the redo data
    is not logged. Therefore, if you cannot afford to lose this index, you must take a backup
    after the operation in NOLOGGING mode.
    If the database is run in ARCHIVELOG mode, media recovery from a backup taken before an
    operation in LOGGING mode will re-create the index. However, media recovery from a backup
    taken before an operation in NOLOGGING mode will not re-create the index.
    An index segment can have logging attributes different from those of the base table and
    different from those of other index segments for the same base table.
    </quote>
    If you are really desperate, you can try the following undocumented/unsupported command:
    ALTER DATABASE ARCHIVELOG COMPRESS ENABLE;
    That will cause database to compress your archive logs and consume less space. This command is not documented or supported, not even in the version 11.2.0.3 and causes the database to start spewing ORA-0600 in version 10G. DO NOT USE IN A PRODUCTION ENVIRONMENT!!!!

  • ORA-00257  - lots of disk space available

    I am trying to load about 14 GBs of data, totaling ~13.5 million records.
    The raw data is about 14GBs, and the table space is set to 30GBs, its all text data.
    The data is from about 200 different site files ranging in size from 10-180 MBs.
    This is (real) test data I'm using to try to optimize my indexes and such before I start using the table for actual reports.
    A DBA, I am not, proficient at databases and programming, I am, so please bare with me :)
    My process is to use sqlldr to on an Oracle 10 DB to load the data into a records_load table, then use a procedure to basically do an insert into records (...) select (...) from records_load, delete from records_load.
    I did a couple sites one at a time, and they work fine, so I have 500,000 records in my records table.
    But when I try to transfer the entire 13,000,000 records from the load table using the SP, it eventually hangs.
    If I log into sqlplus from another window, I get
    ERROR:
    ORA-00257: archiver error. Connect internal only, until freed.
    HOWEVER, everything I find online is telling me that a disk is full.
    Oracle is setup on a Windows Server, as follows:
    Drive Total Free
    oracle-c (c:) 50.0 GB 39.3 GB
    oracle-apps (e:) 99.9 GB 91.2 GB
    oracle-logsA (f:) 195 GB 140 GB
    oracle-logsB (g:) 83.5 GB 83.3 GB
    oracle-data (h:) 278 GB 150 GB
    I ran into this problem on as well on Friday, and ran:
    RMAN> delete expired backup;
    and this "seemed" to fix the issue, which doesn't make much sense to me.
    So, I modified my SP somewhat today, to use a cursor, and loop through each site, and do the
    "*loop* insert into records (...) select (...) from records_load *where site=cur_row.site*, delete from records_load *where site=cur_row.site*"
    Now my db is hung again, with PLENTY of disk space.
    I'm really not sure what to do and would really appreciate any suggestions?

    As you can see, I didn't get any results from the "show parameter archive_log_dest" command.
    I'm also showing the output of "show parameter log_archive" and "archive log list" since these are other commands I've stumbled upon to try to find a solution, in hopes that it helps you.
    Just let me know if there's a typo in that command, and I'll re-run it.
    Thanks
    $ sqlplus user/pass@oracle as sysdba
    SQL*Plus: Release 11.1.0.6.0 - Production on Mon Nov 2 21:37:48 2009
    Copyright (c) 1982, 2007, Oracle. All rights reserved.
    Connected to:
    Oracle Database 10g Release 10.2.0.1.0 - 64bit Production
    SQL> SHOW PARAMETER ARCHIVE_LOG_DEST
    SQL>
    SQL> show parameter log_archive
    NAME TYPE VALUE
    log_archive_config string
    log_archive_dest string
    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
    NAME TYPE VALUE
    log_archive_dest_9 string
    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
    NAME TYPE VALUE
    log_archive_duplex_dest string
    log_archive_format string ARC%S_%R.%T
    log_archive_local_first boolean TRUE
    log_archive_max_processes integer 2
    log_archive_min_succeed_dest integer 1
    log_archive_start boolean FALSE
    log_archive_trace integer 0
    SQL> archive log list
    Database log mode Archive Mode
    Automatic archival Enabled
    Archive destination USE_DB_RECOVERY_FILE_DEST
    Oldest online log sequence 6730
    Next log sequence to archive 6730
    Current log sequence 6732
    SQL>

  • 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-00257:Archive error

    Hello Everyone,
    ORA-00257: archiver error. Connect internal only, until freed.
    My Question is why oracle is not allowing to connect as normal database user like Scott during archive log is full, as i know archive log is generate during ddl/dml statements.
    is there archive log is generated during a user process is connected to the instance!!!!.
    why should not oracle allow me to connect to the database and while during the ddl/dml statements it can prompt the error message rite, until i can fetch some records from the database (select statements).
    Please let me know the reason!!!!
    Thanks
    Shan

    Using RMAN backup take the backup of your archivelogs and delete the archivelogs as well. You can manually delete the archive logs from the archive destination as well to resume the database.
    Regards
    Asif Kabir
    Handle:      SHAN2009
    Status Level:      Newbie
    Registered:      Dec 11, 2007
    Total Posts:      133
    Total Questions:      *70 (61 unresolved)*
    Name      Gowri Shankar

  • 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

  • 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

  • Help~~ORA-00257 archiver error. Connect internal only

    I got this error when a login sql plus...
    ORA-00257 archiver error. Connect internal only, until freed.
    I tried to check in Unix...result as follow..:
    Filesystem size used Avail Capacity Mounted on
    /dev/dsk/c2t0d2s2     98G 97G 0k 100% /u04
    I know that i need to remove some file, but i cannot login sql plus.
    May i know what can i do? thanks~~~~
    p.s. sorry for my rubbish english

    but i cannot login sql plusYou can. ORA-00257 ... CONNECT INTERNAL ONLY ...
    That means 'connect / as sysdba'.
    Werner

  • 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

  • ORA-00257: archiver error. and database is noarchivelog mode

    Hi,
    I've a Oracle 10.2.0.4 64bit database under Windows. The database has been from the beginning in noarchive log mode. How is it possible it's generating ora-0257 errors?
    regards,
    Ivan

    Helios and oradba,
    This is the output of archive list:
    SQL> archive log list;
    Database log mode No Archive Mode
    Automatic archival Disabled
    Archive destination d:\oradata\DBN\arch
    Oldest online log sequence 5249
    Current log sequence 5251
    On D: there is 10 Gbyte free space. And the error in the alert-log is:
    Thu Oct 06 08:30:37 2011
    Errors in file d:\oracle\product\10.2.0\admin\dbn\bdump\dbn_j000_3612.trc:
    ORA-12012: error on auto execute of job 143
    ORA-00257: archiver error. Connect internal only, until freed.
    Ivan

  • ORA-00257: archiver error. Connect internal only

    Hello everyone,
    On 10gR2, if we face the above error, the system would hang for some time. During this time no one will be able to connect. SYSDBA session will hang and wont give you SQL prompt quickly.
    I want to know if there is any way to remove this time gap.
    thanks

    Hello,
    The ORA-00257 is likely due to a lack of space which prevent generating Archived redologs:
    ORA-00257: archiver error. Connect internal only, until freed.
    Cause: The archiver process received an error while trying to archive a redo log. If the problem
    is not resolved soon, the database will stop executing transactions. The most likely cause of this
    message is the destination device is out of space to store the redo log file.
    Action: Check archiver trace file for a detailed description of the problem. Also verify that the
    device specified in the initialization parameter ARCHIVE_LOG_DEST is set up properly for archiving.So check for a File System full and the use of the Flash Recovery Area (FRA).
    The following Note from MOS explains how to check the FRA and how to free space in it:
    How to Resolve ORA-00257: Archiver is Stuck Error in 10g? [ID 278308.1]
    The database hungs for some time even after clearing the archive log destination. And it is this time that I want to reduce.I think that the best way is to monitore the Archive destination so that you can clear the space before the Database hang.
    If you use EM Database Control, you may set some Alert Notification. More over, you have the specific Archive Full Metric:
    http://download.oracle.com/docs/cd/B19306_01/em.102/b25986/oracle_database.htm#sthref540
    Hope this help.
    Best regards,
    Jean-Valentin
    Edited by: Lubiez Jean-Valentin on Jul 24, 2011 10:46 PM

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

    Dear All,
    Couple of days ago I changed my database mode to archive.
    Database server is 1-gR2 on Linux.
    Today i have got this error:
    ORA-00257: archiver error. Connect internal only, until freed.
    Kindly help me to strat DB again. How to get rid of this error.
    Thanks, Imran

    This is not a tempory solution, but the way how You should proceed.
    You should regulary backup up database and archive logs and delete the latter in order to prevent such problems.
    I would sugest to monitor how fast archive logs are generating and then implement regular archive log backup and deletion. For some site it would be enough to backup and delete once per week, for some there will be need to backup several times per day.

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

    Hi All,
    I have installed 2-node 10gR2 RAC on RHEL4 with MSA 1000 as a shared storage. I am using ASM to store the databases files and archive log files in different diskgroups. The ASM diskgroup where archive log file stored is of 100GB size with RAID5 enabled. The database is Archive enabled. I imported only one schema of 4GB of size to the RAC db. today i'm getting "ORA-00257: archiver error. Connect internal only, until freed". Now, i want to stop the archive log mode remove files.
    1. How can i can change the archive log mode to NOARCHIVELOG mode in RAC db?
    2. How can i delete archive log files after changing the archivelog mode from ASM? I dont want take a backup of the database as the data is not important.
    Please help..my RAC db is freezed...
    Thanks,
    Praveen

    How can i rectify this permanentlyHow do you rectify this "error" everytime you get it ? If you are clearing / deleting files in the db_recovery_file_dest location than you would know that you should either
    a. Increaes db_recovery_file_dest_size (ensuring that the filesystem does have that much space, else increase the filesystem size as well !)
    b. retain fewer files in this location (reduce retention or redundancy)
    If you aren't using a db_recovery_file_dest or the archivelogs are going elsewhere and you are manually purging archivelogs, you should look at increasing the size of the available filesystem.
    If you are retaining multiple days archivelogs on disk, and running daily full backups, re-consider why you have multiple days archivelogs on disk.
    If the problem occurs because of large batch jobs generating a large quantum of redo, either buy enough disk space OR rre-consider the jobs.

  • ERROR:ORA-00257

    HI all,
    My /home directory has has got no space,so ia m getting the error,i know that i have to delete the ARCHIVE log files,....I am unable to log in,when i try i am getting an error of
    ORA-00257,can anyone of you tell me where i can find archive files ,so taht i can delete them,while insgtalling database,i have enabled automatic archiving,i dont know the path
    where ARCHIVE files are being stored,how to trace my archive files,defaultly where do they get stored.I have tried checking on /home.but i can find them....
    i have checked till /home/oracle/product/10g/admin/xfolder,there i can find folders of datafiles,control files and an other folder...where exactly my archive logs are being ...
    how totrace the path,can anyone of you please tell me....so taht i can clear them all...i know why the error is caused...but i am unable to trace where exactly they are stored...while
    installing i have not specified any path..it has defaultly taken....but i am unable to trace..it..as i am even unable to get intp sql promt,how can i check for thoseARCHIVE LOG FILES...
    please =help me...
    Thanx,
    MIKE

    look in your oracle_home/dbs directory for a file that is init<dbname>.ora or spfile<dbname>.ora and in there there will be a parameter called log_archive_dest_1=<some director>...go to that directory and that will be where you find your archivelogs.
    Also, if you know where your alertlog is, find the last startup in the log and during startup it will give this parameter with that appropriate value..

Maybe you are looking for