Propagation after switchover to standby

Hi
My DB Version=10.2.0.4
I had a stream relation that working correctly after switchover to standby in destination now in source database i got the following error in propagation:
select status,error_message from dba_propagation
DISABLED
ORA-02068: following severe error from AQHOS
ORA-01033: ORACLE initialization or shutdown in progress
ORA-06512: at "SYS.DBMS_AQADM_SYS", line 1087
ORA-06512: at "SYS.DBMS_AQADM_SYS", line 7616
ORA-06512: at "SYS.DBMS_AQADM", line 631
ORA-06512: at line 1
i corrected all tnsnames and dblink is working correctly but still i have this error.
WHAT I MUST TO DO?

Refer to metalink document _STREAMS propagation to Primary of physical Standby configuation errors with Ora-01033, Ora-02068 *[ID 359971.1]*_
You need to set SERVICE_NAMES. Hope this helps resolve your issue.
Thanks

Similar Messages

  • After switchover to standby as primary, now how to switch back

    Hello DG experts:
    I'm running Oracle 11.2 on Linux 5.8.
    I am in the process of (trying) to mimic our existing production DG environment for testing purposes.
    So far...
    I've managed to set up a primary and standby database and ensured all logs apply properly.
    My database name is DGTEST (on both primary and standby).
    My db_unique_name is DGTEST_DG1 on primary, and DGTEST_DG2 on standby.
    I performed a switchover from primary to standby, and opened the standby database as primary.
    But, first thing is that when I check the switchover_status from v$database, it says: NOT ALLOWED.
    Okay, so now what? Do I need to have another pfile to set specifically for when I am in primary or standby modes?
    Here are relevant commands I have checked already:
    on new Primary (db_unique_name = DGTEST_DG2)
    SQL> select switchover_status from v$database;
    SWITCHOVER_STATUS
    NOT ALLOWED
    SQL> select sequence#, applied from v$archived_log order by 1;
          SEQUENCE# APPLIED
                291 YES
                292 YES
                293 YES
                398 YES
                399 NO
                400 NO
                401 NO
                402 NO
    112 rows selected.
    SQL> select destination, status, error from v$archive_dest;
    DESTINATION                    STATUS    ERROR
    /arch/DGTEST/archivelogs       VALID
    /arch/DGTEST_STBY              VALID
                                   INACTIVE
                                   INACTIVE
                                   INACTIVE
    31 rows selected.
    on new Standby (db_unique_name = DGTEST_DG1)
    SQL> select switchover_status from v$database;
    SWITCHOVER_STATUS
    TO PRIMARY
    1 row selected.
    SQL> select sequence#, applied from v$archived_log order by 1;
          SEQUENCE# APPLIED
                276 YES
                277 YES
                278 YES
                397 NO
                397 YES
                398 YES
                398 NO
    231 rows selected.
    SQL>  select destination, status, error from v$archive_dest;
    DESTINATION                    STATUS    ERROR
    /arch/DGTEST                   VALID
    DGTEST_DG2                     VALID
    /arch/DGTEST_STBY              DEFERRED
                                   INACTIVE
                                   INACTIVE
                                     . . .Please keep in mind that I have made this test environment as close as possible (I think) to our production environment.
    One of the objectives is to confirm we can switchover and back in our production environment.
    So if there is something seriously wrong with this environment and it is the same in our production environment, that would be one of my primary objectives to find out about.
    Only significant difference is that we are also using DGBroker in production and I did create configuration yet until I got the switchover working manually first.

    Hi,
    Follow This Steps:
    How to Switchover from Primary to Standby Database?
    MY Configuration:
    RAC is configured on dcpdb1(node1) and dcpdb2(node2).
    DB Name: dcpdb
    db_unique_name: dcpdb
    Instance Name: dcpdb1 on node1
    Instance Name: dcpdb2 on node2
    Active Data Guard is configured on drpdb1
    DB Name: dcpdb
    db_unique_name: drpdb
    Instance Name: drpdb
    Process:
    On the primary server, check the latest archived redo log and force a log switch.
    *########### Login dcpdb1 as Oracle user #########*
    SQL> SELECT sequence#, first_time, next_time
    FROM v$archived_log
    ORDER BY next_time;
    SQL> ALTER SYSTEM SWITCH LOGFILE;
    Check the new archived redo log has arrived at the standby server and been applied.
    *########### Login drpdb1 as Oracle user #########*
    SQL> SELECT sequence#, first_time, next_time, applied
    FROM v$archived_log
    ORDER BY next_time ;
    *########### Login dcpdb2 as Oracle user #########*
    SQL> SELECT sequence#, first_time, next_time
    FROM v$archived_log
    ORDER BY next_time ;
    SQL> ALTER SYSTEM SWITCH LOGFILE;
    Check the new archived redo log has arrived at the standby server and been applied.
    *########### Login drpdb1 as Oracle user #########*
    SQL> SELECT sequence#, first_time, next_time, applied
    FROM v$archived_log
    ORDER BY next_time ;
    *########### Login dcpdb1 as Oracle user #########*
    SQL> SELECT SWITCHOVER_STATUS FROM V$DATABASE;
    SWITCHOVER_STATUS
    TO STANDBY
    *########### Login dcpdb2 as Oracle user #########*
    SQL> SELECT SWITCHOVER_STATUS FROM V$DATABASE;
    SWITCHOVER_STATUS
    TO STANDBY
    *########### Login drpdb1 as Oracle user #########*
    SQL> SELECT SWITCHOVER_STATUS FROM V$DATABASE;
    SWITCHOVER_STATUS
    NOT ALLOWED
    *########### Login dcpdb2 as Oracle user #########*
    SQL> shutdown immediate
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SQL>
    *########### Login dcpdb1 as Oracle user #########*
    SQL> ALTER DATABASE COMMIT TO SWITCHOVER TO PHYSICAL STANDBY WITH SESSION SHUTDOWN;
    Database altered.
    SQL>
    SQL> shutdown immediate
    ORA-01507: database not mounted
    ORACLE instance shut down.
    SQL>
    SQL> startup mount
    ORACLE instance started.
    Total System Global Area 1.5400E+10 bytes
    Fixed Size 2184872 bytes
    Variable Size 7751076184 bytes
    Database Buffers 7616856064 bytes
    Redo Buffers 29409280 bytes
    Database mounted.
    SQL> SELECT SWITCHOVER_STATUS FROM V$DATABASE;
    SWITCHOVER_STATUS
    TO PRIMARY
    SQL>
    *########### Login drpdb1 as Oracle user #########*
    SQL> SELECT SWITCHOVER_STATUS FROM V$DATABASE;
    SWITCHOVER_STATUS
    SESSIONS ACTIVE
    SQL> alter database commit to switchover to primary with session shutdown;
    Database altered.
    SQL> shutdown immediate
    ORA-01109: database not open
    Database dismounted.
    ORACLE instance shut down.
    SQL>
    SQL> startup
    ORACLE instance started.
    Total System Global Area 1.5400E+10 bytes
    Fixed Size 2184872 bytes
    Variable Size 7717521752 bytes
    Database Buffers 7650410496 bytes
    Redo Buffers 29409280 bytes
    Database mounted.
    Database opened.
    *########### Login dcpdb1 as Oracle user #########*
    SQL> alter database open read only;
    Database altered.
    SQL> alter database recover managed standby database using current logfile disconnect;
    Database altered.
    *########### Login dcpdb2 as Oracle user #########*
    SQL> startup mount
    ORACLE instance started.
    Total System Global Area 1.5400E+10 bytes
    Fixed Size 2184872 bytes
    Variable Size 7751076184 bytes
    Database Buffers 7616856064 bytes
    Redo Buffers 29409280 bytes
    Database mounted.
    SQL> alter database open read only;
    Database altered.
    SQL> alter database recover managed standby database using current logfile disconnect ;
    Database altered.
    SQL> SELECT SWITCHOVER_STATUS FROM V$DATABASE;
    SWITCHOVER_STATUS
    NOT ALLOWED
    SQL>
    *########### Login drpdb1 as Oracle user #########*
    SQL> SELECT SWITCHOVER_STATUS FROM V$DATABASE;
    SWITCHOVER_STATUS
    TO STANDBY
    *########### Login dcpdb1 as Oracle user #########*
    SQL> SELECT SWITCHOVER_STATUS FROM V$DATABASE;
    SWITCHOVER_STATUS
    NOT ALLOWED
    SQL>
    *########### Login dcpdb2 as Oracle user #########*
    SQL> SELECT SWITCHOVER_STATUS FROM V$DATABASE;
    SWITCHOVER_STATUS
    NOT ALLOWED
    SQL>
    *############### End of Switchover from Primary to Standby Database ##########*
    How to Switchback from New Primary(drpdb) to old Standby(drdb) Database and New Standby(dcpdb to Old Primary(dcpdb)?
    Process:
    On the New primary server, check the latest archived redo log and force a log switch.
    *########### Login drpdb1 as Oracle user #########*
    SQL> SELECT sequence#, first_time, next_time
    FROM v$archived_log
    ORDER BY next_time ;
    SQL>ALTER SYSTEM SWITCH LOGFILE;
    Check the new archived redo log has arrived at the standby server and been applied.
    *########### Login dcpdb1 as Oracle user #########*
    SQL> SELECT sequence#, first_time, next_time, applied
    FROM v$archived_log
    ORDER BY next_time ;
    *########### Login dcpdb2 as Oracle user #########*
    SQL> SELECT sequence#, first_time, next_time, applied
    FROM v$archived_log
    ORDER BY next_time ;
    *########### Login drpdb1 as Oracle user #########*
    SQL> SELECT SWITCHOVER_STATUS FROM V$DATABASE;
    SWITCHOVER_STATUS
    TO STANDBY
    *########### Login dcpdb1 as Oracle user #########*
    SQL> SELECT SWITCHOVER_STATUS FROM V$DATABASE;
    SWITCHOVER_STATUS
    NOT ALLOWED
    *########### Login dcpdb2 as Oracle user #########*
    SQL> SELECT SWITCHOVER_STATUS FROM V$DATABASE;
    SWITCHOVER_STATUS
    NOT ALLOWED
    *########### Login drpdb1 as Oracle user #########*
    SQL> ALTER DATABASE COMMIT TO SWITCHOVER TO PHYSICAL STANDBY WITH SESSION SHUTDOWN;
    Database altered.
    SQL> shutdown immediate
    ORA-01507: database not mounted
    ORACLE instance shut down.
    SQL> startup mount
    ORACLE instance started.
    Total System Global Area 1.5400E+10 bytes
    Fixed Size 2184872 bytes
    Variable Size 7717521752 bytes
    Database Buffers 7650410496 bytes
    Redo Buffers 29409280 bytes
    Database mounted.
    SQL>
    SQL> SELECT SWITCHOVER_STATUS FROM V$DATABASE;
    SWITCHOVER_STATUS
    TO PRIMARY
    SQL>
    *########### Login dcpdb2 as Oracle user #########*
    SQL> shutdown immediate
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SQL>
    *########### Login dcpdb1 as Oracle user #########*
    SQL> SELECT SWITCHOVER_STATUS FROM V$DATABASE;
    SWITCHOVER_STATUS
    SESSIONS ACTIVE
    OR
    SWITCHOVER_STATUS
    SWITCHOVER PENDING
    SQL> alter database commit to switchover to primary with session shutdown;
    Database altered.
    SQL>
    SQL> shutdown immediate
    ORA-01109: database not open
    Database dismounted.
    ORACLE instance shut down.
    SQL> startup
    ORACLE instance started.
    Total System Global Area 1.5400E+10 bytes
    Fixed Size 2184872 bytes
    Variable Size 7751076184 bytes
    Database Buffers 7616856064 bytes
    Redo Buffers 29409280 bytes
    Database mounted.
    Database opened.
    SQL>
    SQL> SELECT SWITCHOVER_STATUS FROM V$DATABASE;
    SWITCHOVER_STATUS
    TO STANDBY
    SQL>
    *########### Login dcpdb2 as Oracle user #########*
    SQL> startup
    ORACLE instance started.
    Total System Global Area 1.5400E+10 bytes
    Fixed Size 2184872 bytes
    Variable Size 7751076184 bytes
    Database Buffers 7616856064 bytes
    Redo Buffers 29409280 bytes
    Database mounted.
    Database opened.
    SQL> SELECT SWITCHOVER_STATUS FROM V$DATABASE;
    SWITCHOVER_STATUS
    TO STANDBY
    SQL>
    *########### Login drpdb1 as Oracle user #########*
    SQL> alter database open read only;
    Database altered.
    SQL> alter database recover managed standby database using current logfile disconnect;
    Database altered.
    SQL>
    *####### End of Switchback from New Primary(drpdb) to old Standby(drdb) Database and New Standby(dcpdb to Old Primary(dcpdb) #########*
    Thanks
    Solaiman
    Edited by: 876149 on Apr 1, 2013 11:56 AM

  • USB ports don't work after resuming from standby with Windows 8 on X230 tablet

    I have just done a clean install of Windows 8 on my X230 tablet.  Before installing Windows 8 I installed the most recent BIOS for this machine (version 2.50).  After installing Windows 8 I installed System Update from the Lenovo Website and downloaded all the recommended drivers and other files.  I've also installed all the latest Windows 8 updates.
    Here are the symptoms of my problem: After resuming from standby/sleep mode, my USB ports do not work.  My computer has two USB 3.0 ports and one USB 2.0 ports.  All exhibit the same behavior.  After resuming from standby mode I have tried inserting both my mouse and a USB thumbdrive, but neither are recognized.  After restarting Windows, the USB ports work again... until I resume from standby mode again.
    I hope there is a solution to this issue.  It is very frustrating.

    Thanks for the suggestion about tweaking the "Allow this computer to turn off this device" feature.  I un-checked that box for every entry I could find under "Universal Serial Bus Controllers" in the Devide Manager.  Unfortunately, the same symptoms of my problem persisted.
    I went back and looked at the README file associated with the BIOS 2.50 download on Lenvo's support site.  At the bottom of the file it gives a "Summary of Changes".  Under version 2.03 of the BIOS (the version just before version 2.50), it says:
    - (Fix) Fixed an issue where USB device might not detected when system resume from sleep mode.
    This indicates that Lenovo support was already aware of such issues.  The problem was intended to be fixed in version 2.03 of the BIOS.  However, the issue persists on my machine, even with the latest BIOS.
    Hopefully someone from Lenovo can comment here.

  • Unable to restart propagation after archiver error

    I am unable to restart oracle streams propagation after archiver error.
    05:45:26 [ga016qad10] strmadmin@PMDBQ > select capture_name, state from v$streams_capture;
    CAPTURE_NAME STATE
    PEGA_CAPTURE PAUSED FOR
    FLOW CONT
    ROL
    I followed the support note 746247.1 but still could not get the propagation started.

    SQL> col LOGMINER_ID head 'Log|ID' for 999
    SQL> select LOGMINER_ID, CAPTURE_USER, start_scn ncs, to_char(STATUS_CHANGE_TIME,'DD-MM HH24:MI:SS') change_time
    2 ,CAPTURE_TYPE,RULE_SET_NAME, negative_rule_set_name , status from dba_capture
    3 order by logminer_id
    4 /
    Log Captured Capture
    ID Capture user Start scn CHANGE_TIME Type
    Rule set Name Neg rule set Status
    61 STRMADMIN 2960358515 21-12 11:50:13 LOCAL
    RULESET$_41 ENABLED
    81 STRMADMIN 2961530984 21-12 11:50:30 LOCAL
    RULESET$_44 ENABLED
    SQL> set lines 190
    SQL> col rsname format a22 head 'Rule set name'
    SQL> col delay_scn head 'Delay|Scanned' justify c
    SQL> col delay2 head 'Delay|Enq-Applied' justify c
    SQL> col state format a24
    SQL> col process_name format a8 head 'Process|Name' justify c
    SQL> col LATENCY_SECONDS head 'Lat(s)'
    col total_messages_captured head 'total msg|Captured'
    SQL> SQL> col total_messages_enqueued head 'total msg|Enqueue'
    SQL> col ENQUEUE_MESG_TIME format a17 head 'Row creation|initial time'
    SQL> col CAPTURE_TIME head 'Capture at'
    SQL> select a.logminer_id , a.CAPTURE_NAME cap, queue_name , AVAILABLE_MESSAGE_NUMBER, CAPTURE_MESSAGE_NUMBER lcs,
    2 AVAILABLE_MESSAGE_NUMBER-CAPTURE_MESSAGE_NUMBER delay_scn,
    3 last_enqueued_scn , applied_scn las , last_enqueued_scn-applied_scn delay2
    4 from dba_capture a, v$streams_capture b where a.capture_name = b.capture_name (+)
    5 order by logminer_id
    6 ;
    SELECT c.logminer_id,
    SUBSTR(s.program,INSTR(s.program,'(')+1,4) PROCESS_NAME,
    c.sid,
    c.serial#,
    c.state,
    Log Delay Delay
    ID CAP QUEUE_NAME AVAILABLE_MESSAGE_NUMBER LCS Scanned LAST_ENQUEUED_SCN LAS Enq-Applied
    61 PEGA_CAPTURE QNAMESRC_PEGA 2963657326 2960423611 3233715 2960423611 2960423611 0
    81 SACRPT_CAPTURE QNAMESRC_SACRPT 2963657326 2963657325 1 2963650283 2963653132 -2849
    SQL> 2 3 4 5 6 to_char(c.capture_time, 'HH24:MI:SS MM/DD/YY') CAPTURE_TIME,
    7 to_char(c.enqueue_message_create_time,'HH24:MI:SS MM/DD/YY') ENQUEUE_MESG_TIME ,
    8 (SYSDATE-c.capture_message_create_time)*86400 LATENCY_SECONDS,
    c.total_messages_captured,
    9 10 c.total_messages_enqueued
    11 FROM V$STREAMS_CAPTURE c, V$SESSION s
    12 WHERE c.SID = s.SID
    13 AND c.SERIAL# = s.SERIAL#
    14 order by logminer_id ;
    -- Archive numbers
    Log Process Row creation total msg total msg
    ID Name SID SERIAL# STATE Capture at initial time Lat(s) Captured Enqueue
    61 C001 173 17930 PAUSED FOR FLOW CONTROL 11:51:12 12/21/10 01:51:54 12/21/10 52037 6000 1
    81 C002 159 14604 CAPTURING CHANGES 16:19:08 12/21/10 16:18:45 12/21/10 3 720279 904
    SQL> SQL> SQL> SQL>
    set linesize 150 pagesize 0 heading on embedded on
    SQL> SQL> col name form A55 head 'Name' justify l
    SQL> col st form A14 head 'Start' justify l
    SQL> col end form A14 head 'End' justify l
    SQL> col NEXT_CHANGE# form 9999999999999 head 'Next Change' justify c
    SQL> col FIRST_CHANGE# form 9999999999999 head 'First Change' justify c
    SQL> col SEQUENCE# form 999999 head 'Logseq' justify c
    SQL>
    SQL> select thread#, SEQUENCE# , to_char(FIRST_TIME,'MM-DD HH24:MI:SS') st,
    2 to_char(next_time,'MM-DD HH24:MI:SS') End,FIRST_CHANGE#,
    3 NEXT_CHANGE#, NAME name
    4 from ( select thread#, SEQUENCE# , FIRST_TIME, next_time,FIRST_CHANGE#,
    5 NEXT_CHANGE#, NAME name
    6 from v$archived_log order by first_time desc )
    7 where rownum <= 30
    8 /
    THREAD# Logseq Start End First Change Next Change Name
    2 18404 12-21 15:51:07 12-21 16:08:29 2963375604 2963539359 +FLASH/pmdbq/archivelog/2010_12_21/thread_2_seq_18404.2
    819.738346109
    2 18403 12-21 15:35:25 12-21 15:51:07 2963209412 2963375604 +FLASH/pmdbq/archivelog/2010_12_21/thread_2_seq_18403.2
    815.738345067
    1 20546 12-21 15:23:38 12-21 16:08:32 2963082548 2963539801 +FLASH/pmdbq/archivelog/2010_12_21/thread_1_seq_20546.4
    40.738346113
    2 18402 12-21 15:19:26 12-21 15:35:25 2962838112 2963209412 +FLASH/pmdbq/archivelog/2010_12_21/thread_2_seq_18402.1
    514.738344127
    1 20545 12-21 10:23:47 12-21 15:23:38 2962403587 2963082548 +FLASH/pmdbq/archivelog/2010_12_21/thread_1_seq_20545.3
    180.738343419
    2 18401 12-21 06:17:47 12-21 15:19:26 2961823746 2962838112 +FLASH/pmdbq/archivelog/2010_12_21/thread_2_seq_18401.3
    918.738343167
    1 20544 12-21 06:12:01 12-21 10:23:47 2961768331 2962403587 +FLASH/pmdbq/archivelog/2010_12_21/thread_1_seq_20544.2
    965.738325427
    2 18400 12-21 05:27:27 12-21 06:11:59 2961662087 2961763840 +FLASH/pmdbq/archivelog/2010_12_21/thread_2_seq_18400.3
    68.738310319
    2 18399 12-21 04:13:39 12-21 05:27:27 2961296357 2961662087 +FLASH/pmdbq/archivelog/2010_12_21/thread_2_seq_18399.2
    493.738307647
    1 20543 12-21 04:13:39 12-21 06:12:01 2961296354 2961768331 +FLASH/pmdbq/archivelog/2010_12_21/thread_1_seq_20543.2
    694.738310323
    1 20542 12-21 02:38:56 12-21 04:13:39 2960459567 2961296354 +FLASH/pmdbq/archivelog/2010_12_21/thread_1_seq_20542.2
    409.738303219
    2 18398 12-21 02:38:56 12-21 04:13:39 2960459570 2961296357 +FLASH/pmdbq/archivelog/2010_12_21/thread_2_seq_18398.1
    651.738303219
    2 18397 12-21 01:15:15 12-21 02:38:56 2960397220 2960459570 +FLASH/pmdbq/archivelog/2010_12_21/thread_2_seq_18397.1
    768.738297537
    1 20541 12-21 01:15:14 12-21 02:38:56 2960397217 2960459567 +FLASH/pmdbq/archivelog/2010_12_21/thread_1_seq_20541.2
    690.738297537
    2 18396 12-21 01:15:06 12-21 01:15:15 2960397203 2960397220 +FLASH/pmdbq/archivelog/2010_12_21/thread_2_seq_18396.9
    25.738292515
    1 20540 12-21 01:15:05 12-21 01:15:14 2960397201 2960397217 +FLASH/pmdbq/archivelog/2010_12_21/thread_1_seq_20540.3
    361.738292515
    1 20539 12-21 00:41:56 12-21 01:15:05 2960360122 2960397201 +FLASH/pmdbq/archivelog/2010_12_21/thread_1_seq_20539.2
    245.738292507
    2 18395 12-21 00:41:56 12-21 01:15:06 2960360124 2960397203 +FLASH/pmdbq/archivelog/2010_12_21/thread_2_seq_18395.2
    929.738292507
    1 20538 12-21 00:41:47 12-21 00:41:56 2960358572 2960360122 +FLASH/pmdbq/archivelog/2010_12_21/thread_1_seq_20538.2
    278.738290517
    2 18394 12-21 00:41:46 12-21 00:41:56 2960358515 2960360124 +FLASH/pmdbq/archivelog/2010_12_21/thread_2_seq_18394.3
    474.738290517
    2 18393 12-21 00:41:38 12-21 00:41:46 2960358469 2960358515 +FLASH/pmdbq/archivelog/2010_12_21/thread_2_seq_18393.3
    321.738290507
    1 20537 12-21 00:41:38 12-21 00:41:47 2960358458 2960358572 +FLASH/pmdbq/archivelog/2010_12_21/thread_1_seq_20537.3
    431.738290507
    1 20536 12-21 00:12:34 12-21 00:41:38 2960320320 2960358458 +FLASH/pmdbq/archivelog/2010_12_21/thread_1_seq_20536.3
    128.738290499
    2 18392 12-21 00:12:33 12-21 00:41:38 2960319489 2960358469 +FLASH/pmdbq/archivelog/2010_12_21/thread_2_seq_18392.3
    399.738290499
    2 18391 12-20 20:35:05 12-21 00:12:33 2960063680 2960319489 +FLASH/pmdbq/archivelog/2010_12_21/thread_2_seq_18391.2
    032.738288753
    2 18390 12-20 19:04:44 12-20 20:35:05 2959951288 2960063680 +FLASH/pmdbq/archivelog/2010_12_20/thread_2_seq_18390.1
    771.738275705
    1 20535 12-20 15:22:24 12-21 00:12:34 2959770318 2960320320 +FLASH/pmdbq/archivelog/2010_12_21/thread_1_seq_20535.3
    217.738288755
    1 20534 12-20 13:45:57 12-20 15:22:24 2959246604 2959770318 +FLASH/pmdbq/archivelog/2010_12_20/thread_1_seq_20534.3
    562.738256945
    2 18389 12-20 13:45:54 12-20 19:04:44 2959246478 2959951288 +FLASH/pmdbq/archivelog/2010_12_20/thread_2_seq_18389.1
    783.738270285
    2 18388 12-20 13:42:02 12-20 13:45:54 2959174146 2959246478 +FLASH/pmdbq/archivelog/2010_12_20/thread_2_seq_18388.3
    249.738251155
    30 rows selected.

  • DBhanging in open stage after creating physical standby database

    alter database open read only hanging after creating the standby database using rman.

    hi,
    when i starts the database in restricted mode it is asking resetlogs;
    when i openthe database using the
    alter database open resetlogs;
    it is showing following errors
    alter database open RESETLOGS
    Errors in file /oracle/app/oradev/db/tech_st/11.2.0/admin/stdby_developmentDR/diag/rdbms/stdby/stdby/trace/stdby_ora_442500.trc:
    ORA-00367: checksum error in log file header
    ORA-00338: log 1 of thread 1 is more recent than control file
    ORA-00312: online log 1 thread 1: '/dev/stage/oradev/db/apps_st/data/group_1.314.731945051'
    RESETLOGS after complete recovery through change 28393568059
    Resetting resetlogs activation ID 3821641494 (0xe3c99f16)
    Errors in file /oracle/app/oradev/db/tech_st/11.2.0/admin/stdby_developmentDR/diag/rdbms/stdby/stdby/trace/stdby_ora_442500.trc:
    ORA-00367: checksum error in log file header
    ORA-00322: log 1 of thread 1 is not current copy
    ORA-00312: online log 1 thread 1: '/dev/stage/oradev/db/apps_st/data/group_1.314.731945051'
    Thu Feb 24 20:05:42 2011
    Errors in file /oracle/app/oradev/db/tech_st/11.2.0/admin/stdby_developmentDR/diag/rdbms/stdby/stdby/trace/stdby_m000_348380.trc:
    ORA-00316: log 1 of thread 1, type 0 in header is not log file
    ORA-00312: online log 1 thread 1: '/dev/stage/oradev/db/apps_st/data/group_1.314.731945051'
    Errors in file /oracle/app/oradev/db/tech_st/11.2.0/admin/stdby_developmentDR/diag/rdbms/stdby/stdby/trace/stdby_m000_348380.trc:
    ORA-00322: log 2 of thread 1 is not current copy
    ORA-00312: online log 2 thread 1: '/dev/stage/oradev/db/apps_st/data/group_2.313.731945057'
    Errors in file /oracle/app/oradev/db/tech_st/11.2.0/admin/stdby_developmentDR/diag/rdbms/stdby/stdby/trace/stdby_m000_348380.trc:
    ORA-00322: log 3 of thread 2 is not current copy
    ORA-00312: online log 3 thread 2: '/dev/stage/oradev/db/apps_st/data/group_3.316.731945065'
    Errors in file /oracle/app/oradev/db/tech_st/11.2.0/admin/stdby_developmentDR/diag/rdbms/stdby/stdby/trace/stdby_m000_348380.trc:
    ORA-00322: log 4 of thread 2 is not current copy
    ORA-00312: online log 4 thread 2: '/dev/stage/oradev/db/apps_st/data/group_4.315.731945069'
    Errors in file /oracle/app/oradev/db/tech_st/11.2.0/admin/stdby_developmentDR/diag/rdbms/stdby/stdby/trace/stdby_ora_442500.trc:
    ORA-00367: checksum error in log file header
    ORA-00322: log 2 of thread 1 is not current copy
    ORA-00312: online log 2 thread 1: '/dev/stage/oradev/db/apps_st/data/group_2.313.731945057'
    Thu Feb 24 20:05:58 2011
    Errors in file /oracle/app/oradev/db/tech_st/11.2.0/admin/stdby_developmentDR/diag/rdbms/stdby/stdby/trace/stdby_ora_442500.trc:
    ORA-00367: checksum error in log file header
    ORA-00322: log 3 of thread 2 is not current copy
    ORA-00312: online log 3 thread 2: '/dev/stage/oradev/db/apps_st/data/group_3.316.731945065'
    Errors in file /oracle/app/oradev/db/tech_st/11.2.0/admin/stdby_developmentDR/diag/rdbms/stdby/stdby/trace/stdby_ora_442500.trc:
    ORA-00367: checksum error in log file header
    ORA-00322: log 4 of thread 2 is not current copy
    ORA-00312: online log 4 thread 2: '/dev/stage/oradev/db/apps_st/data/group_4.315.731945069'
    thanks in advance

  • Mouse stutter and UI unresponsiveness after returning from standby

    Hi guys, after upgrading to Leopard the mouse pointer on my 15" MBP stutters after returning from standby. Weird thing is that this happens only after it was in standby for awhile, maybe 5 to 10 minutes. If I return from standby after a few seconds the stutter does not happen. I can only resolve this with a restart. This did not happen in Tiger. Is there anyone else experiencing this?

    Well I had this problem. Did a fresh install of Leopard a week and a bit ago and it seemed to run much better. Set my machine up how I like it and it's back to how it was. I didn't setup my Dashboard right away so maybe your onto something. I'll have to try and force myself to not use it for a bit and see how it goes.
    We should collect a list of 3rd party widgets as I think initially with the default 4 on display it was fine.
    I've only got 4 other than the standard Apple supplied ones.
    - iStat Pro 4.2
    - TV Forecast 2.3
    - Amazon Album Art 2.12
    - Application Update 1.5.8
    Now both iStat Pro and TV Forecast claim to be Leopard compatible. Amazon Album Art also mentions improved Leopard support was added in version 2.11. Application Update doesn't claim to be but seems to work fine. However I think this was the last widget I added and a few days after the others. I think it was fine with the other three so I might try removing it and seeing what happens.
    Still I'd love to know what other Widgets you guys have. Maybe we all have the a similar one which we can narrow down to being the cause. Or maybe it's not 3rd party widgets at all but the Dashboard as a whole. Still I'm more likely to think it's a 3rd party widget.

  • The password file is getting corrupted after rebooting the standby database

    Hi,
    The password file is getting corrupted after rebooting the standby database.
    Since the databases are not in sync, I had to copy the pwfile from primary to standby to make 'em sync.
    (BUT.... the pwfile is not getting corrupted every time I reboot the standby by)
    Could somebody please explain the reason for the pwfile on the standby database getting corrupted while rebooting ?
    Env: Oracle 11g on Windows 7
    Thanks in advance

    Moderator Action:
    This thread was originally posted to the Oracle/Sun Servers HARDWARE forum.
    This is definitely not an issue related to any hardware components.
    ... it's now moved to Database General Questions, hopefully for closer topic alignment.

  • Windows 8 won't find any airport after resuming from standby

    Hi,
    I have had a windows 7 PC with both airport express (2nd and 3rd generation) working flawlessly. I bought a new Windows 8 Laptop. Initially everything worked fine, but after resuming from standby mode (closed the display and reopened) my itunes stopped working, and the airport utility software was unable to find both airport express. After shutdown and restart they both worked again until the next standby mode.
    I've read somewhere that it might be a conflict with IPv6 so I disabled it from registry, but the problem remains.....
    any thoughts
    Regards,
    German

    Did you upgrade the drivers from the wireless card manufacturer in win8 machine.. ??
    If that doesn't work.. do some more basic wireless investigation..
    1. Are wireless names SMB compliant.. ie short, no spaces and pure alphanumeric?
    2. WPA2 Personal security with a password which also conforms to the above.
    3. Test with fixed wireless channels. 11, 6, 1
    4. If none of the above work.. turn off security for a few minutes and see if that works.

  • 5.0.1 my iPhone  battery seems to be better...still showing 100% after 1 hrs standby and 15 mns usage

    5.0.1 my iPhone  battery seems to be better...still showing 100% after 1 hrs standby and 15 mns usage

    Do you have wifi syncing turned on? Is your itunes always open?
    There is a glitch with the iPad where, as long and anytime iTunes is open, it'll sync...like once an hour or some such rate.
    Originally the wifi syncing was only supposed to take place if the device is plugged into power, but that's not the case. If I have my iTunes open my iPad will try to sync almost continuously.
    So check your wifi sync and iTunes settings (my iTunes used to be set to open automatically when the device is connected, I had to change it to only open when I do it manually because in the course of an evening's surfing my iPad opened my iTunes and started to sync three different times until I turned it off)
    If you have iCloud syncing enabled that may also be contributing to your battery issues. I don't sync over iCloud, I tried it but after it ate all my contacts, I stopped using it. However, if the same glitch is present, the device trying to continually sync even when not plugged into power, that could also be part of your drain.

  • Power manager crashes after returning from standby mode.

    I have a T400 2767 WU6 running Windows 7 Pro-64bit.. After returning from standby mode, power manager crashes (version 3). All the software installed is supposed to be compatible with win7 pro 64bit.
    Any help would be greatly appreciated.

    Does this issue appear from the beginning?
    Possibly the OS was installed several time ago and now the registry entries are corrupt.
    Therefore the system busy egg timer could appear.
    Im not 100% sure it will help but possibly you should reinstall the whole OS
    On the fresh installed OS all should works much faster

  • After switchover how to redirect users to the new standby?

    Hello.
    Please, the Data Guard has been configured and now I want to know please how I can redirect the users to the primary in a timely manner?
    Thanks

    One of the core skills in administering an Oracle database is to be able to search the documentation.
    Go to http://tahiti.oracle.com, type failover=on in the search box, and select the correct.
    People refusing to work with tahiti shouldn't work as DBA.
    This is a volunteer forum, I don't get anything for doing your work, and it is 11:25 pm here.
    Sybrand Bakker
    Senior Oracle DBA

  • EM (DB console) configuration after switchover

    Hello Guys,
    I have this scenario:
    - Oracle 11.2.0.3
    - RHEL 4.6 64 bits
    - Active Data Guard
    - Broker configured
    - DBconsole configured on primary server
    Now, I have server PRIM with the primary database, and server STB with the standby server. For now, the dbconsole is configured in the PRIM server.
    When I do a switchover (to the standby on STB), EM is not configured, so I use RepManager.sh to clean the sysman user, and I use emca to recreate the dbconsole. After this, everything works.
    Once I switch back, the EM is no longer configured on PRIM, so I repeat the previous steps (repManager and emca).
    Everything is ok after this. I can access the EM on the primary normaly, and this gets information from the broker to provide basic information on the STB (like db status, apply, and so forth).
    my question is this:
    - do I have to do all these steps in case of a switchover? is there an easier way?
    - would grid control solve this situation?
    thanks guys,
    br,
    jpinela.

    Pinela wrote:
    Hello Guys,
    I have this scenario:
    - Oracle 11.2.0.3
    - RHEL 4.6 64 bits
    - Active Data Guard
    - Broker configured
    - DBconsole configured on primary server
    Now, I have server PRIM with the primary database, and server STB with the standby server. For now, the dbconsole is configured in the PRIM server.
    When I do a switchover (to the standby on STB), EM is not configured, so I use RepManager.sh to clean the sysman user, and I use emca to recreate the dbconsole. After this, everything works.
    Once I switch back, the EM is no longer configured on PRIM, so I repeat the previous steps (repManager and emca).
    Everything is ok after this. I can access the EM on the primary normaly, and this gets information from the broker to provide basic information on the STB (like db status, apply, and so forth).
    my question is this:
    - do I have to do all these steps in case of a switchover? is there an easier way?
    - would grid control solve this situation?
    thanks guys,
    br,
    jpinela.Its a Good question. While configuring EM it gathers all the information such as hostname, instance name, port number , listener and so many..
    Of course configuration is not same on primary and standby, then EM configuration file properties mismatch with services after the switchover specifically if you are monitoring redo transport , apply and status so on....
    AFAIK, you must reconfigure again whenever there is frequent changes. BTW, reconfiguring EM which takes minutes of time.

  • Switchover to Standby is it necessary to shutdown other nodes?

    Hi,
    I have installed oracle 11g r2 rac with asm in two nodes. OS is hp-Unix.
    I have installed oracle11g Active Data Guard using Single alone Database.
    Both RAc and Active Data Guard works fine.
    I have not configure Data Guard Broker.
    For testing purpose I need to make primary as standby and standby as primary.
    In node 1: I will run commend in node 1
    SQL> ALTER DATABASE COMMIT TO SWITCHOVER TO PHYSICAL STANDBY WITH SESSION SHUTDOWN ;
    Shall I need to shutdown node 2 in RAC?
    if node 2 is in shutdown then after switch over primary as standby just open the node 2 ?
    Thanks
    Solaiman

    I have installed oracle 11g r2 rac with asm in two nodes. OS is hp-Unix.
    I have installed oracle11g Active Data Guard using Single alone Database.
    Both RAc and Active Data Guard works fine.
    I have not configure Data Guard Broker.
    For testing purpose I need to make primary as standby and standby as primary.
    In node 1: I will run commend in node 1
    SQL> ALTER DATABASE COMMIT TO SWITCHOVER TO PHYSICAL STANDBY WITH SESSION SHUTDOWN ;
    Shall I need to shutdown node 2 in RAC?
    if node 2 is in shutdown then after switch over primary as standby just open the node 2 ?When you are not managing with broker, primary if you have 2 node RAC. Then prior to switchover shutdown any one of the node.
    Once you performed switch over, Your primary database will be non-RAC database[because not an clustered], So the redo threads active in only one node.
    In such case you will be having one node primary and one node standby.

  • SoundMax audio driver did not load after returning from StandBy.

    After my computer returns from StandBy, it shows me this message. "The SoundMax audio driver did not load. You may need to reinstall SoundMAX". I have downloaded and installed the latest driver that was supposed to fix this issue on Windows XP T61. Is there another solution?

    Hi,
    I wanted to confirm, that this issue occurs also to me, and started happening recently. Also the driver sometimes does not start when simply booting clean (not returning from StandBy). I'm not sure,  but I think this started happening after some driver update (I do upgrade my drivers when lenovo updates them hoping they'll fix some of the annoying glitches, but this is what I usually get...).
    My machine is: lenovo t61 7664-19G
    And I also have: windows XP
    If someone more tech-able would like to investigate this, I would be happy to supply all the details.

  • TV white noise after starting from standby

    Hi,
    Recently I have installed ShowShifter. It's a great program and very stable. Everything works as it should from excellent TV picture and sound, recording, showshifting, playback, etc  . Except one thing is not working correctly: the recording from standby  .
    When I schedule a recording and put the machine into standby it will start the recording as planned. When I then later play the recording the picture is ok, but there is a lot of white noise. Also when I select TV I get white noise. After a restart the TV programs are ok, but the recording has still the white noise.
    I did some testing and found out that when you go into standby and come back that always the white noise is present in the TV programs.
    The following drivers are installed: 4.31 NVidia Audio drivers and the latest beta TV Tuner drivers.
    Does anyone has the same problem? Did you find a solution?

    Quote
    Originally posted by Stu Online
    do you mean white noise in the sound?
    Sorry, I think I wasn't clear in this respect  . Yes, white noise in sound.
    I have found out that the MSI MS-8606 Video Capture Driver 4.102.11 from 15042004 (the new beta driver) is the one that is not working correctly. When you disable it and then enable it again then the white noise IN SOUND is gone and the tv sound is back.
    I have reinstalled the older driver from 082003. That one doesn't has the 'standby' problem, but gives me a grappy picture  . So that's a no go.
    What could happen to this beta driver during 'standby' after using ShowShifter that it is not working correct anymore  ?
    Regards,
    Rene

Maybe you are looking for