Re-scheduling Propagation following an error

Hi,
Im currently testing how streams perform when there are problems at the remote database. I've shutdown the mate database and then run traffic. OEM, under the propagation tab shows that there are errors and that the propagation job will start running at xxxxxx".
How can I change the prop. process so that it starts processing immediately following a problem?
Which table holds information about the errors. i.e. how can I determine that there are errors without using OEM?
Many thanks,
Warren

If you use the functions you mention to change the schedule will the propagation process stick to this schedule? If the errors remain will the time between retries automatically increase (and at an exponential rate) irrespective of what i've set the schedule to?
The view is DBA_QUEUE_SCHEDULES. You will need to
use the DBMS_AQADM package to manipulate the schedule
with the following procedures:
ENABLE_PROPAGATION_SCHEDULE/DISABLE_PROPAGATION_SCHEDU
E
SCHEDULE_PROPAGATION/UNSCHEDULE_PROPAGATION

Similar Messages

  • 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.

  • Cant open itunes. get error message 7 followed by error message windows error 127.     i have redownloaded new updates with luck.   window xp

    cant open itunes. get error message 7 followed by error message windows error 127.     i have redownloaded new updates with luck.   window xp

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it, which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    tt2

  • I have a problem syncing iCal on my Macbook air (10.7.5) and my iPhone 4s (5.1.1) over iCloud. The following server error message comes up "The request (CalDAVAccountRefreshQueueableOperation) for account "iCloud" failed." Been to Apple - no luck. Ideas?

    I have a problem syncing iCal on my Macbook air (10.7.5) and my iPhone 4s (5.1.1) over iCloud. The following server error message comes up "The request (CalDAVAccountRefreshQueueableOperation) for account “iCloud” failed." Been to Apple Store - no luck instore, or with Super genius over the phone when with genius in store, taking data in real time via ethernet!
    I had to do a full wipe of my system because of time machine back up issues 2 weeks ago, and the error has only occured at some point since then. I only did a drag and drop of my user account folders/files into an External HDD rather than a copy of my user account (advised by the staff in store at Apple to do this) and when reimported, the Mail folders are all present but each message is in a sub-sub-sub folder that is numerically named. I do not have a mirror image of the hard disk prior to the wipe, only a time machine back up from 2 weeks prior to it being done. I am uncertain if this reinstall has caused the issue. 
    I am not happy to upgrade the software in my iPhone until I have the calendars working. I have purchased Mountain Lion, but again am concerned about upgrading until the issues are sorted.
    I have tried the other solutions on here with no luck. HELP please.
    Many Thanks.

    Progress Update.
    I made a back of what existing phtos and Videos I had on my Iplhone.  I used Image capture to do this making an entire back up of photos and videoa that were still intact on the phone.
    Image capture is god for this purpose, as it does exactly what you ask it to do without applying any rules or squishing the files back into iphote (which might also be corupted) 
    Image capture wil do the basic function of retriving the contents of the phone and save them as native files on your hard drive.
    Once I did this I erased my iphone, and re intitialised it restoring an older back up from icloud.
    As the retore was happneing - I did retreive the missing files that cuased the intial beviour as above, and I could play the videos that were missing in the above scenerio.  The wierd ting was however that even though the source files were now back on the device, the thumbnail previews were missing. Where I ahd balck thumb nails for server portions of the resotred content.
    I then went to bed as the restore is a long process.  When I woke up the library had library had cleaned itself up.  Mysteriously the prcess had deleted the files missing the their thumbnails.
    This is very perculiar and bad behavior.
    I am now repeating the process, and will attempt to download the missing content as it is restored and prior to the phone trying to fix itself.
    Here are the lessons learned.
    DO NOT rely on Photo Stream to keep back ups and synchornise videos from you IOS device. IT DOES NOT SUPPORT THIS CAPBILITY
    DO NOT rely on iCloud Back Up alone - always fd an occassional iTunes back up or more reliably still always take a back up of photos and video files using Image Capture to be doubly sure that you a have backd up any content.
    DO THIS NOW - dont wait to loose your phone ofr have your phone repaired by replacement at the apple Store.  (I did both :-(

  • Unable to load the following resource: Error: too many columns- form won't

    Hi ..
    Can you please suggest on the following error, which i am facing the issue while opening data form in Hyperion Planning 11.1.1.4 .
    Unable to load the following resource: Error: too many columns- form won't
    Regards,
    Vasu

    It is something around 256 if I am not mistaken, I dread to think what a form with 700 columns is like to work with.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Good afternoon.I have a computer with W Vista 8, Windows office home and business 2013. I recently tried to install Photoshop Elements by CD with serial number but on the desktop appears the following message: error 1 (configuration problem) try to uninst

    What's error 1 in adobe photoshop elements configuration? I have a computer with W Vista 8, Windows office home and business 2013. I recently tried to install Photoshop Elements by CD with serial number but on the desktop appears the following message: error 1 (configuration problem) try to uninstall and reinstall. I have done this but the message continues to appear

    You haven't mentioned which version of PSE. If it is PSE 13, that requires a minimum of windows 7.

  • Scheduled report failures - Unexpected error getting the HTTP response

    Getting this error when scheduled report executes:
    Unexpected error getting the HTTP response stream while generating report: http://cdmdb1c.nam.nsroot.net:4889/em/console/reports/render

    Hi..
    Thanks for the comment.
    Below is how my web.xml entry looks like.
    The requirement is to send a 404 error response and that will be handled by a servlet which inturn writes the output to the response object.
         <servlet>
              <servlet-name>ErrorPageServlet</servlet-name>
              <servlet-class>com.test.ErrorPageServlet</servlet-class>
         </servlet>
         <servlet-mapping>
              <servlet-name>ErrorPageServlet</servlet-name>
              <url-pattern>/error</url-pattern>
         </servlet-mapping>
         <error-page>
              <error-code>404</error-code>
              <location>/error</location>
         </error-page>>>
    the first option to turn off the "show friendly html error pages" works fine.
    It would be better if I can get a different solution

  • The object has been corrupted, and it's in an inconsistent state. The following validation errors happened:

    Dear Friend
    I have got below error message in the exchagne server 2013 while i tried to open the console of delegation mailbox . It was comes once i was deploy lync server 2013 in the same forest.
    warning
    The object has been corrupted, and it's in an inconsistent state. The following validation errors happened:
    The access control entry defines the ObjectType 'd819615a-3b9b-4738-b47e-f1bd8ee3aea4' that can't be resolved..
    The access control entry defines the ObjectType 'e2d6986b-2c7f-4cda-9851-d5b5f3fb6706' that can't be resolved..
    If you feel to ask to more clarification, please let  me know.
    Regards, Md Ehteshamuddin Khan All the opinions expressed here is mine. This posting is provided "AS IS" with no warranties or guarantees and confers no rights.

    Hi,
    Based on the description, you got warnings when you tried to click the mailbox delegation option of mailbox properties in EAC. Is it right?
    Did this issue affected only one user mailbox or all of them?
    From the error message, it seems that this issue is related to the corrupt permissions. Please use the
    Get-MailboxPermission cmdlet to retrieve permissions on a mailbox to check result.
    Best regards,
    Belinda Ma
    TechNet Community Support

  • Unable to install iTunes after converting from Windows Vista to Windows 7.  Am told installation was successful, then "iTunes was not installed correctly", followed by "Error 7 (Windows error 193).

    Unable to install iTunes after converting from Windows Vista to Windows 7.  Am told installation was successful, then "iTunes was not installed correctly", followed by "Error 7 (Windows error 193).  I have my iPod plugged into my computer via USB port.  What am I doing wrong?

    i have the only account on my laptop so have checked and am the account administrator
    i run windows 7 home premium
    I have the same problem and
    have followed the link uninstalling in the correct order,
    then restarted as per instructions,
    went to Apple to download itunes,
    hit download now,
    Visit the iTunes download page. Click Download Now to download the iTunes installer. When prompted, click Save (instead of Run).
    did not get a save instead of run prompt
    Right click on iTunesSetup or iTunes64Setup (the installer you downloaded in step 3).
    If you have Windows Vista, Windows 7, and Windows 8: Choose "Run as administrator."
    i can only click run as administrator from right clicking the shortcut on my desktop screen
    If iTunes fails to install or repair, it might be necessary to remove components left from a previous installation of iTunes and then reinstall.
    sick of doing this
    at least 7 or 8 times i have re installed itunes to no avail
    troubleshooting no better
    please help. pulling my hair out at this stage
    it was working fine until 2 days ago when i opened itunes it offered to update to 12.1
    not working since i clicked yes
    also i have gone to restore previous point and ffs there are no restore points before my multiple reinstalls
    really dont want to have to restore factory settings

  • Installing Adobe Reader & i get the following message "error 1324 path my documents or volume invali

    installing Adobe Reader & i get the following message "error 1324 path my documents or volume invalid". Can anybody help. I have just installed windows 8 on my lptop..

    Please share the sanpshot of error message and MSI log created.
    Just check if there is any user folder(my documents) redirected. Remove that re-direction and then try re-install
    else try installing via MSI installer present at
    ftp://ftp.adobe.com/pub/adobe/reader/win/11.x/11.0.00/en_US/

  • Need solution for the following sync error: "iTunes could not sync calendars to the iPad "iPad name" because an error occurred while sending data from the iPad"

    Need solution for the following sync error: "iTunes could not sync calendars to the iPad "iPad name" because an error occurred while sending data from the iPad"

    I want to add that I deleted all the old back-ups and created a new back-up without any issues except sync problem.

  • ORA-02068: following severe error from ....

    Hi,
    we have a dataguard setup for 10g databases on AIX platform as below.
    host1(TALON) host2(CATALINA)
    TICSPROD (PRIMARY ) TICSPROD(STANDBY)
    PLSPROD (STANDBY) PLSPROD (PRIMARY)
    We have decided to recreate PLSPROD STANDBY(because of some setup issues) this weekend and last night we just disabled the PLSPROD STANDBY.Means now only PLSPROD PRIMARY is working.
    Last night, suddenly in the PRIMARY TICSPROD alert log file we see the below error.Is it because of the dataguard issue or any other issue.Please help as we have no clue how to resolve this.
    ORA-02050: transaction 4.34.2844973 rolled back, some remote DBs may be in-doubt
    ORA-02068: following severe error from PLSPROD
    ORA-03113: end-of-file on communication channel

    We have decided to recreate PLSPROD STANDBY(because of some setup issues) this weekend and last night we just disabled the PLSPROD STANDBY.Means now only PLSPROD PRIMARY is working.
    Last night, suddenly in the PRIMARY TICSPROD alert log file we see the below error.Is it because of the dataguard issue or any other issue.Please help as we have no clue how to resolve this.
    ORA-02050: transaction 4.34.2844973 rolled back, some remote DBs may be in-doubt
    ORA-02068: following severe error from PLSPROD
    ORA-03113: end-of-file on communication channel
    What are the parameters of standby
    post
    show parameter dest_2
    show parameter state_2ORA-02050:
         transaction string rolled back, some remote DBs may be in-doubt
    Cause:      network or remote failure in 2PC.
    Action:      Notify operations; remote DBs will automatically re-sync when the failure is repaired.
    defer the destination state 2 also refer the below link
    http://www.orafaq.com/forum/t/67115/2/

  • ORA-02068: following severe error from LNK -(Prob with HS ODBC pls. help)

    HI Every one...
    Please help me out...
    Problem in d/b link using generic connectivity of oracle to connect MS Access here are the details ...
    ORACLE VERSION - Oracle8i Release 8.1.7.0.0
    OS - WINDOWS 2000 Service Pack 3
    MSAccess 2000
    I sussessfully created System DSN steps....
    ODBC Data Source Administrator -> System DSN -> ADD -> (select) Microsoft Access
    Driver [*.mdb] Version- 4.00.6200.00 -> ODBC Microsoft Access Setup (Data Source
    Name = dbq and selected the MS Access database file. and OK -> OK
    HS parameter file...
    Location .... D:\oracle\ora81\hs\admin
    Name........ initdbaccess.ora
    HS_FDS_CONNECT_INFO =dbq
    HS_FDS_TRACE_LEVEL =off
    listener.ora
    Location.... D:\oracle\ora81\network\ADMIN
    (SID_DESC =
    (SID_NAME = dbaccess)
    (ORACLE_HOME = D:\oracle\ora81)
    (PROGRAM = hsodbc)
    TNSNames.ora
    Location.... D:\oracle\ora81\network\ADMIN
    DBACCESS =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    (CONNECT_DATA =
    (SID = dbaccess)
    (HS = OK)
    I stop the listener and start it again.... then on sqlplus.....
    SQL> connect qu3/qu3@mysys
    Connected.
    SQL> create database link lnk using 'DBACCESS';
    Database link created.
    SQL> select * from t_emp_main@lnk;
    select * from t_emp_main@lnk
    ERROR at line 1:
    ORA-02068: following severe error from LNK
    ORA-03114: not connected to ORACLE
    Why this Error is comming.... any solution pls......
    Thanks in advance....
    SMG

    Help please... problem still pending ....

  • ORA-02068: following severe error from db link

    Hi,
    I have the following piece of code which gives an error.
    FOR items IN (SELECT DISTINCT item FROM ccm_items@caav_link a)
    LOOP
    itemtrans.process_item@manuf_link(items.item);
    END LOOP;
    Procedure process_item may take several hours to complete execution. Hence after processing one or two items, I get an error "ORA-02068: following severe error from caav_link
    ORA-03113: end-of-file on communication channel"
    I guess this occurs due to some timeout issue. Can you please give some pointers on why this issue occurs and how to avoid it? Also note that I need to use the same link after the loop. So a timeout could cause a problem there also.
    Thanks,
    Blesson

    May be this link will be useful:
    http://www.dba-oracle.com/t_ora_02068_following_severe_error_from_stringstring.htm

  • ORA-02068: following severe error from - How to handle the overgiven Except

    Hello again ^^,
    hope its okay to write the follwnig question into a new Thread...
    I sometimes get errors from remote dbs.
    ORA-02068: following severe error from DBLINK
    ORA-01089: immediate shutdown in progress - no operations are permitted
    ORA-02068: following severe error from DBLINK
    ORA-03113: end-of-file on communication channelThese are in one sqlerm. Is it possible to handle the second errors without string operations?
    Thanks and regards
    Edited by: user10283133 on 28.10.2008 08:33
    Try to force the headline

    The remote db is accessible from 6 am to 6 pm. When querring longer than given time span I get the Error ORA-02068. In the sqlerm for this Error is a second Errormessage from an second different Error concatenated.
    Now I will tell what I think is happening:
    I think the remote db say: >>I will go sleep now<< an throws Error A (ORA-01089 (or ORA-03113, or what else)). This Error A goes to the local db. The local db get the Error A and throw a new Error (Error B = ORA-02068). This Error B is independet from Error A. And I see a String which is "Error B + Error A"
    I recieve also three possible Errormessages:
    ORA-02068: following severe error from DBLINK
    ORA-03113: end-of-file on communication channel
    ORA-02068: following severe error from DBLINK_ODS_STBY
    ORA-01089: immediate shutdown in progress - no operations are permitted
    ORA-02068: following severe error from DBLINK_ODS_STBY
    ORA-whatelse: what elseI can handle the ORA-02068. But my questions is, can I handle the second Error (thus Error A) without string operations?
    The Relase is 10g2. Please tell me which information you still need ...
    Thank you very much.
    regrads

Maybe you are looking for