Removed standby but getting interesting alert log entry

So, we had multiple set ups of primary database in our local data center, standby in remote location.
We're in the process of shutting down our remote location and have shut down our standbys gracefully, i.e., shutdown managed standby mode, removed archive_log_dest, changed archive_log_dest_state, etc. However, in some primary databases, I'm seeing a weird entry in the alert log:
Changing destination 2 from remote to local during archival of log#: 2 sequence#: 48708 thread#: 1
If I check my local destination, the archive log is created fine. In the remote location, no archives are being created.
I've not found anything on Google, Metalink, anywhere! Has anyone else seen this before, and if so, do I need to worry about it?
Oracle version is 11.1.0.7

Hello;
Its just information. You can ignore it.
Went back to some 2010 alert logs and found :
network reconnect abandoned
Attempting destination LOG_ARCHIVE_DEST_2 network reconnect
Setting 'active' archival for destination LOG_ARCHIVE_DEST_2Not much chance of finding here as all old version of Oracle are gone and a SAN move makes old alert logs rare. Still it just information or Oracle would throw an error.
Best Regards
mseberg
Edited by: mseberg on Jul 31, 2012 11:32 AM
Later
Tried to recreate message using several combinations of the parameters you listed. Unable to recreate, but only have 11.2.0.3.0 to test on.
Edited by: mseberg on Jul 31, 2012 12:44 PM

Similar Messages

  • RMAN success, but errors in alert.log file

    My RMAN backup script runs well, but generates errors in alert.log file.
    Here is the trace file contents:
    /usr/lib/oracle/xe/app/oracle/admin/XE/udump/xe_ora_3990.trc
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    ORACLE_HOME = /usr/lib/oracle/xe/app/oracle/product/10.2.0/server
    System name: Linux
    Node name: plockton
    Release: 2.6.18-128.2.1.el5
    Version: #1 SMP Wed Jul 8 11:54:54 EDT 2009
    Machine: i686
    Instance name: XE
    Redo thread mounted by this instance: 1
    Oracle process number: 26
    Unix process pid: 3990, image: oracle@plockton (TNS V1-V3)
    *** 2009-07-23 23:05:01.835
    *** ACTION NAME:(0000025 STARTED111) 2009-07-23 23:05:01.823
    *** MODULE NAME:(backup full datafile) 2009-07-23 23:05:01.823
    *** SERVICE NAME:(SYS$USERS) 2009-07-23 23:05:01.823
    *** SESSION ID:(33.154) 2009-07-23 23:05:01.823
    *** 2009-07-23 23:05:18.689
    *** ACTION NAME:(0000045 STARTED111) 2009-07-23 23:05:18.689
    *** MODULE NAME:(backup archivelog) 2009-07-23 23:05:18.689
    Does anyone know why? Thanks.
    Richard

    I'm not sure if this will answer your question or not, but I believe these messages can likely be ignored.
    I'm currently running 10.2.0.1.0 Enterprise Edition in pre-production (yes, I know I should apply the latest patchset and I plan to do so as soon as I get a development box allocated to me and can test it's impact). I see the same types of messages that you've reported with each of my regularly-scheduled backups:
    a) The alert_<$SID>.log reports that there are errors in trace files:
    Mon Aug 10 04:33:49 2009
    Starting control autobackup
    Mon Aug 10 04:33:50 2009
    Errors in file /opt/oracle/admin/blah/udump/blah_ora_32520.trc:
    Mon Aug 10 04:33:50 2009
    Errors in file /opt/oracle/admin/blah/udump/blah_ora_32520.trc:
    Mon Aug 10 04:33:50 2009
    Errors in file /opt/oracle/admin/blah/udump/blah_ora_32520.trc:
    Control autobackup written to DISK device
    handle '/backup/physical/BLAH/RMAN/cf_c-2740124895-20090810-00'
    b) The .trc files, when you look at them contain no errors - only these "informational" messages:
    *** 2009-08-10 04:33:50.781
    *** ACTION NAME:(0000105 STARTED111) 2009-08-10 04:33:50.754
    *** MODULE NAME:(backup archivelog) 2009-08-10 04:33:50.754
    *** SERVICE NAME:(SYS$USERS) 2009-08-10 04:33:50.754
    *** SESSION ID:(126.28030) 2009-08-10 04:33:50.754
    c) I've verified that LOG_ARCHIVE_TRACE is set to 0:
    SQL*Plus> show parameter log_archive_trace
    NAME TYPE VALUE
    log_archive_trace integer 0
    As best I can discern from my own experience, these should just be ignored and I trust (read: "hope") they will simply go away once the latest patchset is applied. As for you running Oracle XE, a patchset is not an option, unfortunately.
    V/R
    -Eric

  • Best Way to monitor standby, primary databases, including alert logs, etc.

    Hi, Guys, I finally cutover the new environment to the new linux redhat and everything working great so far (the primary/standby).
    Now I would like to setup monitoring scripts to monitor it automatically so I can let it run by itself.
    What is the best way?
    I talked to another dba friend outside of the company and he told me his shop not use any cron jobs to monitor, they use grid control.
    We have no grid control. I would like to see what is the best option here? should we setup grid control?
    And also for the meantime, I would appreciate any good ideas of any cronjob scripts.
    Thanks

    Hello;
    I came up with this which I run on the Primary daily, Since its SQL you can add any extras you need.
    SPOOL OFF
    CLEAR SCREEN
    SPOOL /tmp/quickaudit.lst
    PROMPT
    PROMPT -----------------------------------------------------------------------|
    PROMPT
    SET TERMOUT ON
    SET VERIFY OFF
    SET FEEDBACK ON
    PROMPT
    PROMPT Checking database name and archive mode
    PROMPT
    column NAME format A9
    column LOG_MODE format A12
    SELECT NAME,CREATED, LOG_MODE FROM V$DATABASE;
    PROMPT
    PROMPT -----------------------------------------------------------------------|
    PROMPT
    PROMPT
    PROMPT Checking Tablespace name and status
    PROMPT
    column TABLESPACE_NAME format a30
    column STATUS format a10
    set pagesize 400
    SELECT TABLESPACE_NAME, STATUS FROM DBA_TABLESPACES;
    PROMPT
    PROMPT ------------------------------------------------------------------------|
    PROMPT
    PROMPT
    PROMPT Checking free space in tablespaces
    PROMPT
    column tablespace_name format a30
    SELECT tablespace_name ,sum(bytes)/1024/1024 "MB Free" FROM dba_free_space WHERE
    tablespace_name <>'TEMP' GROUP BY tablespace_name;
    PROMPT
    PROMPT ------------------------------------------------------------------------|
    PROMPT
    PROMPT
    PROMPT Checking freespace by tablespace
    PROMPT
    column dummy noprint
    column  pct_used format 999.9       heading "%|Used"
    column  name    format a16      heading "Tablespace Name"
    column  bytes   format 9,999,999,999,999    heading "Total Bytes"
    column  used    format 99,999,999,999   heading "Used"
    column  free    format 999,999,999,999  heading "Free"
    break   on report
    compute sum of bytes on report
    compute sum of free on report
    compute sum of used on report
    set linesize 132
    set termout off
    select a.tablespace_name                                              name,
           b.tablespace_name                                              dummy,
           sum(b.bytes)/count( distinct a.file_id||'.'||a.block_id )      bytes,
           sum(b.bytes)/count( distinct a.file_id||'.'||a.block_id ) -
           sum(a.bytes)/count( distinct b.file_id )              used,
           sum(a.bytes)/count( distinct b.file_id )                       free,
           100 * ( (sum(b.bytes)/count( distinct a.file_id||'.'||a.block_id )) -
                   (sum(a.bytes)/count( distinct b.file_id ) )) /
           (sum(b.bytes)/count( distinct a.file_id||'.'||a.block_id )) pct_used
    from sys.dba_free_space a, sys.dba_data_files b
    where a.tablespace_name = b.tablespace_name
    group by a.tablespace_name, b.tablespace_name;
    PROMPT
    PROMPT ------------------------------------------------------------------------|
    PROMPT
    PROMPT
    PROMPT Checking Size and usage in GB of Flash Recovery Area
    PROMPT
    SELECT
      ROUND((A.SPACE_LIMIT / 1024 / 1024 / 1024), 2) AS FLASH_IN_GB,
      ROUND((A.SPACE_USED / 1024 / 1024 / 1024), 2) AS FLASH_USED_IN_GB,
      ROUND((A.SPACE_RECLAIMABLE / 1024 / 1024 / 1024), 2) AS FLASH_RECLAIMABLE_GB,
      SUM(B.PERCENT_SPACE_USED)  AS PERCENT_OF_SPACE_USED
    FROM
      V$RECOVERY_FILE_DEST A,
      V$FLASH_RECOVERY_AREA_USAGE B
    GROUP BY
      SPACE_LIMIT,
      SPACE_USED ,
      SPACE_RECLAIMABLE ;
    PROMPT
    PROMPT ------------------------------------------------------------------------|
    PROMPT
    PROMPT
    PROMPT Checking free space In Flash Recovery Area
    PROMPT
    column FILE_TYPE format a20
    select * from v$flash_recovery_area_usage;
    PROMPT
    PROMPT ------------------------------------------------------------------------|
    PROMPT
    PROMPT
    PROMPT ------------------------------------------------------------------------|
    PROMPT
    PROMPT
    PROMPT Checking last sequence in v$archived_log
    PROMPT
    clear screen
    set linesize 100
    column STANDBY format a20
    column applied format a10
    --select max(sequence#), applied from v$archived_log where applied = 'YES' group by applied;
    SELECT  name as STANDBY, SEQUENCE#, applied, completion_time from v$archived_log WHERE  DEST_ID = 2 AND NEXT_TIME > SYSDATE -1;
    prompt
    prompt----------------Last log on Primary--------------------------------------|
    prompt
    select max(sequence#) from v$archived_log where NEXT_TIME > sysdate -1;
    PROMPT
    PROMPT ------------------------------------------------------------------------|
    PROMPT
    PROMPT
    PROMPT Checking switchover status
    PROMPT
    select switchover_status from v$database;I run it from a shell script and email myself quickaudit.lst
    Alert logs are great source of information when you have an issue or just want to check something.
    Best Regards
    mseberg

  • Most Recent Alert Log Entries - Error processing Alert Log

    Hi..
    Can someone help me?
    When I want to check the log of alerts the following thing goes out for me:
    "This shows the last 100,000 bytes of the alert log. The log is constantly growing, so select the browser's Refresh button to see the most recent log entries.
    Number of Lines Displayed          Error processing Alert Log"
    Since I can solve it?

    Number of Lines Displayed Error processing Alert Log"
    check ur alert.log file content any data.
    bcoz if ur alert.log file entries is null then above error is show. ( happen with me when i am purge alert.log file and try to view content of alert.log then above error received so may be problem is null contents ( empty alert.log file)).
    HTH

  • I currently have 3.6.13 version but get update alert that won't download.

    I have gotten two update alerts for security from Firefox in the last two weeks that never download. I have waited for over an hour and then just cancel. I don't want to miss out on a security update that is important.

    I was so happy when I got a second MB of memory on my XP laptop, but I understand that not everyone can do it...
    I don't know whether anyone has recently compared browsers to see which perform best with limited memory available. You might have to test for yourself.
    If you are still running IE7, have you tried IE8?
    If you haven't tested Google Chrome, you could give it a try.
    By the way, if there are specific performance issues such as slow startup, slow page loading, etc., please list them so you can get suggestions on those.

  • Excise Tab not appearing in MIGO Screen but getting posted with EI Entry

    Hi ,
    I am excuting CIN ......While doing MIGO, Excise tab is not apearing nowhere in the MIGO screen but entries are being created successfuly in MIRO and posted as well, Entries ....
                                                           GR/IR Clearing A/c Dr
                                                           RG 23 BED A/c      Dr
                                                           RG 23 Ecess A/c  Dr
                                                           RG 23 SHEcess A/c Dr
                                                           Vendor A/c Cr
    Can any one help me and provide solution for this.
    Thanks
    Sukant

    HI,
    Check your excise group settings, in it check migo settings.
    You need to mark tick in all boxes
    EI capture
    Post EI in MIGO
    Duty differenc at GR
    EI create/RG23D selection
    Update RG1at MIGO
    Also check in J1ID trax for the Po material chapter id is maintained.
    Regards
    KK

  • Event ID 62464 - Getting Thousands of Log Entries

    Hello all,
    If your event logs are getting overwhelmed by this informational, there is a way to suppress such loggings.
    Look at the followup post for the solution.
    Solved!
    Go to Solution.

    Here's the solution:
    CAUTION: The solution requires a registry edit so proceed with caution!
    This solution is courtesy of "Your Fairy Godmother" (that is her real forum name)!
    This is a way to suppress those useless informational logs:
    Edit the registry value:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\Atierecord\eRecordEnable and set it to 0.
    Then reboot.
    Note: You will have to do the above every time you install a new driver (which should not be often).
    This solution was extracted directly from the thread below. All praise for this solution goes to "Your Fairy Godmother."
    http://forums.amd.com/game/messageview.cfm?catid=260&threadid=138421

  • HelloWorldApp very shy; but get interesting error

    When I try to run my very first app, this is what I get.
    C:\Java>java HelloWorldApp
    Warning: missing VM type on line 11 of `C:\jre\lib\i386\jvm.cfg'
    Warning: missing VM type on line 12 of `C:\jre\lib\i386\jvm.cfg'
    Warning: missing VM type on line 13 of `C:\jre\lib\i386\jvm.cfg'
    Error: no known VMs. (check for corrupt jvm.cfg file)
    Where it is getting the path I don't know.I'm on WindowsME using j2sdk1.4.0_02. My path is set to c:\windows;c:\windows\command;c:\j2sdk1.4.0_02\bin and my classpath is set to .;C:\jdk1.4.0_02\lib\tools.jar; Any suggestions?
    I'm so new that I'm not sure what other info you might need, but you should know that I was able to successfully compile the program. Also, I read through the forum using a search on "can't run" but nothing seems to quite fit my problem.

    Made a mistake: my classpath is c:\j2sdk1.4.0_02\lib\
    still have same problem, though

  • Ora -3113 error in the alert log

    Hi ,
    We are getting ORA-3113 error in the alertlog and i pasted below alert log entry.
    VERSION INFORMATION:
    TNS for Linux: Version 11.1.0.7.0 - Production
    Unix Domain Socket IPC NT Protocol Adaptor for Linux: Version 11.1.0.7.0 - Production
    Oracle Bequeath NT Protocol Adapter for Linux: Version 11.1.0.7.0 - Production
    TCP/IP NT Protocol Adapter for Linux: Version 11.1.0.7.0 - Production
    Time: 27-JAN-2011 16:11:25
    Tracing not turned on.
    Tns error struct:
    ns main err code: 12535
    TNS-12535: TNSperation timed out
    ns secondary err code: 12560
    nt main err code: 505
    TNS-00505: Operation timed out
    nt secondary err code: 110
    nt OS err code: 0
    Client address: (ADDRESS=(PROTOCOL=tcp)(HOST=10.100.72.127)(PORT=2844))
    Thu Jan 27 16:13:55 2011
    opidcl aborting process unknown ospid (18585_47319544949952) due to error ORA-3113
    Thu Jan 27 16:14:03 2011
    Thread 2 advanced to log sequence 2022 (LGWR switch)
    Current log# 4 seq# 2022 mem# 0: +DATA/systemprod/onlinelog/group_4.269.736019283
    Current log# 4 seq# 2022 mem# 1: +FLASH1/systemprod/onlinelog/group_4.262.736019285
    Thu Jan 27 16:14:13 2011
    opidcl aborting process unknown ospid (14096_47207734746304) due to error ORA-3113
    Thu Jan 27 16:16:34 2011
    Thread 2 advanced to log sequence 2023 (LGWR switch)
    Current log# 8 seq# 2023 mem# 0: +DATA/systemprod/onlinelog/group_8.319.736018999
    Current log# 8 seq# 2023 mem# 1: +FLASH1/systemprod/onlinelog/group_8.3138.736018999
    Thu Jan 27 16:19:33 2011
    Thread 2 advanced to log sequence 2024 (LGWR switch)
    Current log# 3 seq# 2024 mem# 0: +DATA/systemprod/onlinelog/group_3.268.736019049
    Current log# 3 seq# 2024 mem# 1: +FLASH1/systemprod/onlinelog/group_3.261.736019051
    Thu Jan 27 16:22:17 2011
    What could be the workaround to resove this issue
    Regards
    Prem

    ORA-00600/ORA-07445/ORA-03113 = Oracle bug => search on Metalink and/or call Oracle support

  • Logical standby stuck waiting for dictionary logs

    Hello,
    I created a logical standby (v. 10.2.0.3). It is in state 'WAITING FOR DICTIONARY LOGS', for a few days now.
    Does anyone know how to get past this? It looks like the log that contained the Logminer Dictionary was applied
    already.
    Thanks in advance for any insight you can provide.

    Make sure the archivelogs are reaching the standby. Check your alert logs on both databases to confirm there is no archival problem.

  • Online viewing of alert log

    I know that there is a switch for online using the less command. does any one know the exact syntax to enable viewing entries of alert log as and when they are written? Some thing like autoscroll of the alert log entries so we can monitor the entries..
    RGDS,
    BMP

    So far the less command displays in a pg like manner contents from any text file, but the controls it provides are for browsing/editting.
    ~ Madrid

  • No Log entry while executing web service

    Hi,
    I have a web service which is deployed successfully to a server in the Weblogic
    Workshop domain.
    When I try to test the methods of the web service using the Test form, sometimes,
    I get a message 'No Log Entry'. When I reploy the application, it starts working
    properly.
    There is no problem with the code. Could someone please tell me as to why I might
    be getting the 'No Log Entry' message randomly.
    Thanks,
    Aparna

    My guess is that you are using the tutorial "Creating a SOAP Web Service". This one has a couple of errors in it:
    1. The directory it tells you to deploy the class to the following location:
    <JDeveloper_home>\soap\webapps\soap\soap\WEB-INF\lib
    when in fact it should be:
    <JDeveloper_home>\soap\lib\soap\soap\WEB-INF\lib
    2. This tutorial also says you do not have to re-start OC4J; in this case you do.
    If you are doing the J2EE Web service tutorial a re-start should not be required. One other potential cause of this kind of error can be because your proxy server is set on in Tools->Preferences->Proxy Server. Turn it off and this might fix the problem - my guess, however, is that your problem is either with step 1 or step 2 above.
    Mike.

  • Suppres dataguard info in alert log

    In Oracle 11g/10g, is there any way to suppress the dataguard(esp logical standby) info in the alert log?
    Thx

    855770 wrote:
    In Oracle 11g/10g, is there any way to suppress the dataguard(esp logical standby) info in the alert log?
    ThxWhy would you want to? Don't you think you might possibly need that information when tracking down a problem? I can already see your next post a month from now ..
    " The server hosting my primary database burned up. When we failed over to the standby it is missing all transactions from the last three weeks. I don't know why because we turned off dg related messages to the alert log. PLEASE HELP ASAP MY SYSTEM IS DOWN AND THIS IS URGENT"

  • Trying to install lion purchased from app store.  alert says software cannot be verified and may be tampered with.  Cannot get past alert.  help?

    I have a Mac Pro 10.6.8.  I purchased Lion from app store.  Download went well.  Am trying to install but getting an alert that says software cannot be verified.  It may b e corrupted or have been tampered with.  Cannot get past the alert.  Help?

    I have a Mac Pro 10.6.8.  I purchased Lion from app store.  Download went well.  Am trying to install but getting an alert that says software cannot be verified.  It may b e corrupted or have been tampered with.  Cannot get past the alert.  Help?

  • 오라클 10g 장애 관련 alert log 파일좀 올려봅니다.

    Sun Dec 10 03:11:05 2006
    Process J000 died, see its trace file
    Sun Dec 10 03:11:05 2006
    kkjcre1p: unable to spawn jobq slave process
    Sun Dec 10 03:11:05 2006
    Errors in file c:\oracle\product\10.2.0\admin\golf\bdump\golf1_cjq0_4704.trc:
    Process J000 died, see its trace file
    Sun Dec 10 03:11:11 2006
    kkjcre1p: unable to spawn jobq slave process
    Sun Dec 10 03:11:11 2006
    Errors in file c:\oracle\product\10.2.0\admin\golf\bdump\golf1_cjq0_4704.trc:
    Sun Dec 10 03:12:12 2006
    Process J000 died, see its trace file
    Sun Dec 10 03:12:12 2006
    kkjcre1p: unable to spawn jobq slave process
    Sun Dec 10 03:12:12 2006
    Errors in file c:\oracle\product\10.2.0\admin\golf\bdump\golf1_cjq0_4704.trc:
    Sun Dec 10 03:13:18 2006
    Process J000 died, see its trace file
    Sun Dec 10 03:13:18 2006
    kkjcre1p: unable to spawn jobq slave process
    Sun Dec 10 03:13:18 2006
    Errors in file c:\oracle\product\10.2.0\admin\golf\bdump\golf1_cjq0_4704.trc:
    Sun Dec 10 03:20:58 2006
    Process PZ99 died, see its trace file
    Process PZ99 died, see its trace file
    Sun Dec 10 03:31:48 2006
    Process PZ99 died, see its trace file
    Process PZ99 died, see its trace file
    Sun Dec 10 03:42:38 2006
    Process PZ99 died, see its trace file
    Process PZ99 died, see its trace file
    Sun Dec 10 03:48:04 2006
    Process J000 died, see its trace file
    Sun Dec 10 03:48:04 2006
    kkjcre1p: unable to spawn jobq slave process
    Sun Dec 10 03:48:04 2006
    Errors in file c:\oracle\product\10.2.0\admin\golf\bdump\golf1_cjq0_4704.trc:
    Sun Dec 10 03:48:19 2006
    Process J000 died, see its trace file
    Sun Dec 10 03:48:19 2006
    kkjcre1p: unable to spawn jobq slave process
    Sun Dec 10 03:48:19 2006
    Errors in file c:\oracle\product\10.2.0\admin\golf\bdump\golf1_cjq0_4704.trc:
    Sun Dec 10 06:52:34 2006
    Reconfiguration started (old inc 4, new inc 6)
    List of nodes:
    0
    Sun Dec 10 06:52:35 2006
    Process q002 died, see its trace file
    Sun Dec 10 06:52:35 2006
    ksvcreate: Process(q002) creation failed
    Dump file c:\oracle\product\10.2.0/admin/golf/bdump\alert_golf1.log
    Sun Dec 10 06:59:01 2006
    ORACLE V10.2.0.1.0 - Production vsnsta=0
    vsnsql=14 vsnxtr=3
    Windows Server 2003 Version V5.2 Service Pack 1
    CPU : 4 - type 586, 2 Physical Cores
    Process Affinity : 0x00000000
    Memory (Avail/Total): Ph:2877M/3583M, Ph+PgF:4816M/5475M, VA:1937M/2047M
    Sun Dec 10 06:59:01 2006
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 2
    Autotune of undo retention is turned on.
    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 = 150
    __shared_pool_size = 184549376
    __large_pool_size = 4194304
    __java_pool_size = 8388608
    __streams_pool_size = 0
    spfile = +DATA/golf/spfilegolf.ora
    nls_language = KOREAN
    nls_territory = KOREA
    cluster_interconnects = 10.10.10.1:192.168.200.3
    sga_target = 1073741824
    control_files = DATA/golf/controlfile/current.260.573740937, BACKUP/golf/controlfile/current.256.573740937
    db_block_size = 8192
    __db_cache_size = 868220928
    compatible = 10.2.0.1.0
    log_archive_dest_1 = LOCATION=+BACKUP/GOLF/
    log_archive_format = ARC%S_%R.%T
    db_file_multiblock_read_count= 16
    cluster_database = TRUE
    cluster_database_instances= 2
    db_create_file_dest = +DATA
    db_recovery_file_dest = +BACKUP
    db_recovery_file_dest_size= 128849018880
    thread = 1
    instance_number = 1
    undo_management = AUTO
    undo_tablespace = UNDOTBS1
    remote_login_passwordfile= EXCLUSIVE
    db_domain =
    dispatchers = (PROTOCOL=TCP) (SERVICE=GOLFXDB)
    local_listener = GOLF1
    remote_listener =
    job_queue_processes = 10
    audit_file_dest = C:\ORACLE\PRODUCT\10.2.0\ADMIN\GOLF\ADUMP
    background_dump_dest = C:\ORACLE\PRODUCT\10.2.0\ADMIN\GOLF\BDUMP
    user_dump_dest = C:\ORACLE\PRODUCT\10.2.0\ADMIN\GOLF\UDUMP
    core_dump_dest = C:\ORACLE\PRODUCT\10.2.0\ADMIN\GOLF\CDUMP
    db_name = GOLF
    open_cursors = 300
    pga_aggregate_target = 524288000
    Cluster communication is configured to use the following interface(s) for this instance
    10.10.10.1
    Sun Dec 10 06:59:01 2006
    cluster interconnect IPC version:Oracle 9i Winsock2 TCP/IP IPC
    IPC Vendor 0 proto 0
    Version 0.0
    PMON started with pid=2, OS id=4100
    DIAG started with pid=3, OS id=4112
    PSP0 started with pid=4, OS id=4120
    LMON started with pid=5, OS id=4144
    LMD0 started with pid=6, OS id=4184
    LMS0 started with pid=7, OS id=4192
    LMS1 started with pid=8, OS id=4212
    MMAN started with pid=9, OS id=4216
    DBW0 started with pid=10, OS id=4224
    LGWR started with pid=11, OS id=4208
    CKPT started with pid=12, OS id=4236
    SMON started with pid=13, OS id=4244
    RECO started with pid=14, OS id=4252
    CJQ0 started with pid=15, OS id=4264
    MMON started with pid=16, OS id=4280
    MMNL started with pid=17, OS id=4288
    Sun Dec 10 06:59:01 2006
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    starting up 1 shared server(s) ...
    Sun Dec 10 06:59:01 2006
    lmon registered with NM - instance id 1 (internal mem no 0)
    Sun Dec 10 06:59:02 2006
    Reconfiguration started (old inc 0, new inc 4)
    List of nodes:
    0 1
    Global Resource Directory frozen
    * allocate domain 0, invalid = TRUE
    Communication channels reestablished
    * domain 0 valid according to instance 1
    * domain 0 valid = 1 according to instance 1
    Sun Dec 10 06:59:03 2006
    Master broadcasted resource hash value bitmaps
    Non-local Process blocks cleaned out
    Sun Dec 10 06:59:03 2006
    LMS 0: 0 GCS shadows cancelled, 0 closed
    Sun Dec 10 06:59:04 2006
    LMS 1: 0 GCS shadows cancelled, 0 closed
    Set master node info
    Submitted all remote-enqueue requests
    Dwn-cvts replayed, VALBLKs dubious
    All grantable enqueues granted
    Sun Dec 10 06:59:05 2006
    LMS 0: 0 GCS shadows traversed, 0 replayed
    Sun Dec 10 06:59:06 2006
    LMS 1: 0 GCS shadows traversed, 0 replayed
    Sun Dec 10 06:59:06 2006
    Submitted all GCS remote-cache requests
    Post SMON to start 1st pass IR
    Fix write in gcs resources
    Reconfiguration complete
    LCK0 started with pid=20, OS id=5164
    Sun Dec 10 06:59:06 2006
    ALTER DATABASE MOUNT
    Sun Dec 10 06:59:07 2006
    Starting background process ASMB
    ASMB started with pid=22, OS id=4920
    Starting background process RBAL
    RBAL started with pid=23, OS id=5172
    Sun Dec 10 06:59:15 2006
    SUCCESS: diskgroup DATA was mounted
    SUCCESS: diskgroup BACKUP was mounted
    Sun Dec 10 06:59:19 2006
    Setting recovery target incarnation to 2
    Sun Dec 10 06:59:19 2006
    Successful mount of redo thread 1, with mount id 2679476622
    Sun Dec 10 06:59:19 2006
    Database mounted in Shared Mode (CLUSTER_DATABASE=TRUE)
    Completed: ALTER DATABASE MOUNT
    Sun Dec 10 06:59:19 2006
    ALTER DATABASE OPEN
    Picked broadcast on commit scheme to generate SCNs
    Sun Dec 10 07:00:21 2006
    LGWR: STARTING ARCH PROCESSES
    ARC0 started with pid=27, OS id=5668
    Sun Dec 10 07:00:21 2006
    ARC0: Archival started
    ARC1 started with pid=28, OS id=5964
    Sun Dec 10 07:00:21 2006
    ARC1: Archival started
    LGWR: STARTING ARCH PROCESSES COMPLETE
    Thread 1 opened at log sequence 1855
    Current log# 2 seq# 1855 mem# 0: +DATA/golf/onlinelog/group_2.262.573740941
    Current log# 2 seq# 1855 mem# 1: +BACKUP/golf/onlinelog/group_2.258.573740941
    Sun Dec 10 07:00:22 2006
    ARC0: STARTING ARCH PROCESSES
    Sun Dec 10 07:00:22 2006
    Successful open of redo thread 1
    Sun Dec 10 07:00:22 2006
    MTTR advisory is disabled because FAST_START_MTTR_TARGET is not set
    Sun Dec 10 07:00:23 2006
    ARC1: Becoming the 'no FAL' ARCH
    Sun Dec 10 07:00:23 2006
    ARC1: Becoming the 'no SRL' ARCH
    Sun Dec 10 07:00:23 2006
    ARC2: Archival started
    ARC2 started with pid=29, OS id=5908
    Sun Dec 10 07:00:23 2006
    ARC0: STARTING ARCH PROCESSES COMPLETE
    ARC0: Becoming the heartbeat ARCH
    Sun Dec 10 07:00:24 2006
    SMON: enabling cache recovery
    Sun Dec 10 07:00:24 2006
    Successfully onlined Undo Tablespace 1.
    Sun Dec 10 07:00:24 2006
    SMON: enabling tx recovery
    Sun Dec 10 07:00:24 2006
    Database Characterset is KO16KSC5601
    replication_dependency_tracking turned off (no async multimaster replication found)
    Starting background process QMNC
    QMNC started with pid=30, OS id=6076
    Sun Dec 10 07:00:28 2006
    Completed: ALTER DATABASE OPEN
    Sun Dec 10 07:06:21 2006
    Shutting down archive processes
    Sun Dec 10 07:06:26 2006
    ARCH shutting down
    ARC2: Archival stopped
    db 접속이(client) "tns 리스너 소켓을 찾을수..." 이런 메세지만 나오며
    db 가 설치되어있는 서버에서 sql-plus 접속이 위와같은 메세지로 접속이 되지 않았습니다.
    status는 모든 인스턴스가 정상적으로 작동중이었구요..
    그래서 서버 그냥 off 시켰다가 on 시키니깐 정상으로 돌아왔는데
    불안하네요...이런문제...
    혹시 보시고 답변좀 부탁합니다.

    ALERT 내용만 보면 아래 두개의 증상과 비슷하네요.
    첫번째는 alter system set undo_retention=1800 sid='*' 명령문을 node1으로 지정해서 실행하면 모든 instance 가 행업이 걸리는 현상이 있네요. 명령문을 없애주거나 아니면 모든 sid 별로 다 실행을 해주라고 나와있네요.
    Symptoms
    3 nodes RAC system on 10.1.0.4. The command "alter system set undo_retention=1800 sid='*';" was issued on node1, immeidately all instances hang. User can not logon to instance 2 and 3. Logon to instance 1 is still OK but query hangs.Alert log on node 2 and 3 report:Timed out trying to start process J000.Timed out trying to start process q000.kkjcre1p: unable to spawn jobq slave processErrors in file /opt/oracle/admin/RAC/bdump/rac3_cjq0_4229.trc
    Cause
    This is caused by unpublished Bug.3023661 RAC INSTANCE HANGS WHEN MODIFYING UNDO_RETENTION PARAMETER(or published Bug 4220405 ALTER SYSTEM SET UNDO_RETENTION=<N> HANGS RAC INSTANCES which has been closed as base bug 3023661)Bug 4220405 ALTER SYSTEM SET UNDO_RETENTION=<N> HANGS RAC INSTANCES which has been closed as base bug 3023661)The problem is caused by deadlock between CKPT and PZ99 slave. The internal algorithm to query thecurrent value of undo_retention of each instance and modify it has problem. It does unnecessary gv$ query andlob$ update when spfile is used. It is coding problem. The bug has been fixed in 10.2 and it is not backportable to 10.1.0.x due to code structure change.
    Solution
    Workaround is to modify one instance at a time, specify the detailed SID name for alter system command, eg:alter system set undo_retention=1800 sid='RAC1';alter system set undo_retention=1800 sid='RAC2';alter system set undo_retention=1800 sid='RAC3';......until all instances are modified.

Maybe you are looking for

  • Universe - MSAS Cube

    Would like to explore pros and cons for using Business Objects Universe on top of Microsoft Analysis Service Cube...?

  • Can't install Leopard on external drive

    After speaking with someone at the Genius Bar last week, we determined that the problem I'm having with my eMac is probably due to the 4-5 year old internal hard drive finally getting ready to give up the ghost. ;-( I asked if it would make sense to

  • ITunes match do I need wifi to listen

    I just got iTunes Match and wondered the following.  Do I have to have a interenet connection to listen to my songs, if I have itunes match.  I am wondering what happens if I start iTunes match on my iPad and then go away from my wifi network, I did

  • Upgrade from OS X 10.6.8 to Mountain Lion

    Hi, my MacBook has the following specs:  2 GHx Intel Core 2 Duo, with 2 GB 667 MHz DDR2 SDRAM, with about 200 GB of available space on my hard drive, running Snow Leopard 10.6.8.  I tried to purchase and download Mountain Lion and got a message stati

  • HT201328 Face Time is not showing in Settings

    I used my iPhone 4 in Bahrain with Viva Carrier. In bahrain that Face Time is working well , but when I chenge the sim in India with Vodaphone Carreir , Face Time option is not coming in settings. Please help me to enable my Face Time With Indian Sim