The Apply Process meet some errors when applying..

Hi all,
My OS is Win Server 2003, Oracle is 10.2.0
I were setup my streams environtment one-way. All my works were ok. But today, when I open the OEM console, at the Apply node, I recognized that Total Received is 10 but Total Applied is 4 and status is APLLYING. I open the arlert log at the source database, have some errors:
Propagation Schedule for (STRMADMIN.capture_src_bosc_q, BOCENTER.REGRESS.RDBMS.DEV.US.ORACLE.COM) encountered following error:
ORA-25307: Enqueue rate too high, flow control enabled
I use
select propagation_name,status
from dba_propagation;
*==> STATUS is ENABLE*
At the Aplly process, I set the DISABLE_ON_ERROR is N, but seem as the apply process was halt (not continue apply some change at destination database).
Have any ideas for this problem ?
Edited by: changemylife on Nov 2, 2009 8:38 AM

I had same problem too , and by increasing the Streams pool , it solved .

Similar Messages

  • Can you help me? I meet some errors when I do incomplete recovery with RMAN

    In recover step, There are following errors:
    RMAN-11001: Oracle Error: ORA-01547: warning: RECOVER succeeded but OPEN RESETLOGS would get error below
    ORA-01152: file 1 was not restored from a sufficiently old backup
    ORA-01110: data file 1: '/d/db/oradata/db01/system01.dbf'
    question:
    1. Should I restore archive log files generated on July 16th back to orignal archive directory in order to avoid to recover failure?
    2. Or Should I add the command "sql 'alter system archive log current'" in the backup script in order to avoid to recover failure?
    The following is the detail information:
    The database is ok when I try to do incomplete recovery database that was fully backed up on July,16th,2004. The database is oracle 8.1.7 and is in the archive mode:
    The following is the backup script:
    run {
    allocate channel 'dev_0' type 'sbt_tape'
    parms 'ENV=(OB2BARTYPE=Oracle8,OB2APPNAME=db01,OB2BARLIST=ora8i_online)';
    backup incremental level 0 filesperset 1
    format 'ora8i_online<db01_%s:%t:%p>.dbf'
    database
    include current controlfile
    archivelog all delete input;
    I use it to do a full backup on July 16th,17th successfully.
    And I use the following scripts to do incomplete recovery:
    run {
    allocate channel 'dev_0' type 'sbt_tape'
    parms 'ENV=(OB2BARTYPE=ORACLE8,OB2APPNAME=db01)';
    sql "alter database mount";
    set until time ='17.07.2004';
    restore database;
    recover database;
    sql "alter database open resetlogs";
    sql "alter database open";
    There script is successful in restore step. But there are some errors in recover step. The detail information is showing in following log:
    RMAN-03022: compiling command: allocate
    RMAN-03023: executing command: allocate
    RMAN-08030: allocated channel: dev_0
    RMAN-08500: channel dev_0: sid=13 devtype=SBT_TAPE
    RMAN-08526: channel dev_0: HP OpenView OmniBack II A.04.10/176
    RMAN-03022: compiling command: sql
    RMAN-06162: sql statement: alter database mount
    RMAN-03023: executing command: sql
    RMAN-03022: compiling command: set
    RMAN-03022: compiling command: restore
    RMAN-03022: compiling command: IRESTORE
    RMAN-03023: executing command: IRESTORE
    RMAN-08016: channel dev_0: starting datafile backupset restore
    RMAN-08502: set_count=2056 set_stamp=531622798 creation_time=16.07.2004
    RMAN-08089: channel dev_0: specifying datafile(s) to restore from backup set
    RMAN-08016: channel dev_0: starting datafile backupset restore
    RMAN-08502: set_count=2180 set_stamp=531623409 creation_time=16.07.2004
    RMAN-08089: channel dev_0: specifying datafile(s) to restore from backup set
    RMAN-08523: restoring datafile 00001 to /d/db/oradata/db01/system01.dbf
    RMAN-08023: channel dev_0: restored backup piece 1
    RMAN-08511: piece handle=netace_ora8i_online<db01_2180:531623409:1>.dbf tag=null params=NULL
    RMAN-08024: channel dev_0: restore complete
    RMAN-08023: channel dev_0: restored backup piece 1
    RMAN-08511: piece handle=netace_ora8i_online<db01_2212:531623994:1>.dbf tag=null params=NULL
    RMAN-08024: channel dev_0: restore complete
    RMAN-03022: compiling command: recover
    RMAN-03022: compiling command: recover(1)
    RMAN-03022: compiling command: recover(2)
    RMAN-03022: compiling command: recover(3)
    RMAN-03023: executing command: recover(3)
    RMAN-08054: starting media recovery
    RMAN-03022: compiling command: recover(4)
    RMAN-03026: error recovery releasing channel resources
    RMAN-11001: Oracle Error: ORA-01547: warning: RECOVER succeeded but OPEN RESETLOGS would get error below
    ORA-01152: file 1 was not restored from a sufficiently old backup
    ORA-01110: data file 1: '/d/db/oradata/db01/system01.dbf'
    RMAN-08031: released channel: dev_1
    RMAN-08031: released channel: dev_2
    RMAN-08031: released channel: dev_0
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure during compilation of command
    RMAN-03013: command type: recover
    RMAN-03002: failure during compilation of command
    RMAN-03013: command type: recover(4)
    RMAN-06003: ORACLE error from target database: ORA-01220: file based sort illegal before database is open
    ORA-06512: at "SYS.X$DBMS_RCVMAN", line 7220
    ORA-06512: at "SYS.X$DBMS_RCVMAN", line 5053
    ORA-06512: at line 1
    I repeat my questions:
    1. Should I restore archive log files generated on July 16th back to original archive directory in order to avoid to recover failure?
    2. Or Should I add the command "sql 'alter system archive log current'" in the backup script in order to avoid to recover failure?
    Can you help me ? Thank you.

    You are correct. In RMAN8i, you should add the "alter system archive log current; command before you backup the archive logs.
    You are running into the case where Oracle needs additional redo to make the database consistent that was located in the current online log at the time of the backup.
    If you set UNTIL TIME to an earlier time does the recover work?
    In Oracle9i, if you issue the command, "backup database plus archive logs", RMAN will automatically archive the current online log before performing the archive log backups.
    Thanks, Tammy

  • My muse updation process getting some error when i am doing update muse through adobe cloud its stop updating on 53%

    unable update muse software

    Sorry to hear that Sattar.
    One more thing you can try is create a New Admin User on your computer, and log-in using that Admin user.... Can you run the update now? If yes, then there's definitely a setting in your system somewhere that's preventing the update from happening.
    If that also fails you might need to try a full uninstall and reinstall: Run CC Cleaner Tool and reinstall...
    If the CC Cleaner Tool reports any issues, check the log file they reference and remove any things left behind manually from your system.
    For more detailed info see:
    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6

  • Error when applying a XSLT transformation: No valid XSLT pro

    Dear All,
    I am getting following error when opening the "General Supplier Data" from Pre-Select Supplier.
    Error Message: "Error message: Error when applying a XSLT transformation: No valid XSLT program supplied"
    I have already read the related threads on SDN and checked the SAP Note 883896 and others. Even tried running the program UXS_DEL_NAVIGATION_NODE and UXS_ADD_MISSING_XSLT_NAME. But not able to solve the issue.
    Kindly Help.
    Regards,
    Sagar

    Hi Masa,
    Thanks for reply. I have checked this note. As note suggests, S_DEVELOP auth object is assigned to the user. and it has value *.
    Do I need to check anything else?
    Regards,
    Sagar

  • Error when applying a XSLT transformation

    central instance
    transaction SURVEY
    Extras->Target Group Hierarchy-> Import from file
    select file
    Error when applying a XSLT transformation
    dialog instance working

    Hello Andrey Kuryanov,
    Could make sure you describe the problem more clear as much as you can so that community can help you better.
    Please provide more details with more detailed steps and actual error messge.
    Thanks
    Raja Pamireddy
    Moderator

  • Error when applying patch 3171663(11.5.9 CU2 )..

    hi..
    error when applying patch 3171663(11.5.9 CU2 )
    below error in log file:
    Assigned: file mscplan.odf on worker 1 for product msc username MSC.
    Time is: Sat May 22 2010 21:58:03
    FAILED: file mscplan.odf on worker 1 for product msc username MSC.
    Time is: Sat May 22 2010 21:58:04
    ATTENTION: All workers either have failed or are waiting:
         FAILED: file mscplan.odf on worker 1.
    ATTENTION: Please fix the above failed worker(s) so the manager can continue.
    below error in workerlog.. in adworker1
    ===============================================================================
    The table is missing the index MSC_TRADING_PARTNERS_U2
    or index MSC_TRADING_PARTNERS_U2 exists on another table.
    Create it with the statement:
    Start time for statement below is: Sat May 22 2010 21:58:04
    CREATE UNIQUE INDEX MSC.MSC_TRADING_PARTNERS_U2 ON MSC.MSC_TRADING_PARTNERS
    (SR_INSTANCE_ID, SR_TP_ID, PARTNER_TYPE, COMPANY_ID) LOGGING STORAGE
    (INITIAL 4K NEXT 40K MINEXTENTS 1 MAXEXTENTS UNLIMITED PCTINCREASE 0
    FREELIST GROUPS 4 FREELISTS 4 ) PCTFREE 10 INITRANS 11 MAXTRANS 255
    COMPUTE STATISTICS TABLESPACE MSCX
    Statement executed.
    AD Worker error:
    The index cannot be created as the table has duplicate keys.
    Use the following SQL statement to identify the duplicate keys:
    SELECT SR_INSTANCE_ID, SR_TP_ID, PARTNER_TYPE, COMPANY_ID, count(*)
    FROM MSC.MSC_TRADING_PARTNERS
    GROUP BY SR_INSTANCE_ID, SR_TP_ID, PARTNER_TYPE, COMPANY_ID
    HAVING count(*)>1
    AD Worker error:
    Unable to compare or correct tables or indexes or keys
         because of the error above
    Time when worker failed: Sat May 22 2010 21:58:04
    ====================================================================
    My application version :11.5.9
    my database version 8.1.7.4
    Regards
    Jaffer Ali

    >
    Use the following SQL statement to identify the duplicate keys:
    SELECT SR_INSTANCE_ID, SR_TP_ID, PARTNER_TYPE, COMPANY_ID, count(*)
    FROM MSC.MSC_TRADING_PARTNERS
    GROUP BY SR_INSTANCE_ID, SR_TP_ID, PARTNER_TYPE, COMPANY_ID
    HAVING count(*)>1
    >
    Pl post the output of the above statement
    HTH
    Srini

  • Error when applying opatch

    Recently upgraded from Oracle 10.2.0.1 to 10.2.0.5 & since then i cant run OEM, so oracle suggested Apply Patch 8350262 to your Oracle Home installation using OPatch.
    OS : Windows 2003 32 bit
    DB : Oracle 10.2.0.5
    I get below error when apply opatch.
    C:\oracle\product\10.2.0\db_1\OPatch>opatch apply 8350262
    Invoking OPatch 10.2.0.4.9
    Oracle Interim Patch Installer version 10.2.0.4.9
    Copyright (c) 2009, Oracle Corporation. All rights reserved.
    Oracle Home : C:\oracle\product\10.2.0\db_1
    Central Inventory : C:\Program Files\Oracle\Inventory
    from : n/a
    OPatch version : 10.2.0.4.9
    OUI version : 10.2.0.5.0
    OUI location : C:\oracle\product\10.2.0\db_1\oui
    Log file location : C:\oracle\product\10.2.0\db_1\cfgtoollogs\opatch\opatch2013-
    01-02_23-02-41PM.log
    Patch history file: C:\oracle\product\10.2.0\db_1\cfgtoollogs\opatch\opatch_hist
    ory.txt
    ApplySession applying interim patch '8350262' to OH 'C:\oracle\product\10.2.0\db
    _1'
    Running prerequisite checks...
    Prerequisite check "CheckApplicable" failed.
    The details are:
    Patch 8350262: Required component(s) missing : [ oracle.sysman.agent.core, 10.2.
    0.4.0a, higher version 10.2.0.5.0a found. ]
    ApplySession failed during prerequisite checks: Prerequisite check "CheckApplica
    ble" failed.
    System intact, OPatch will not attempt to restore the system
    OPatch failed with error code = 74
    C:\oracle\product\10.2.0\db_1\OPatch>
    Any help would be appreciated.
    Thanks,
    Vikhar

    Do you mean this "The patch is also included in 10.2.0.5 database patch 5 and 10.2.0.5.3 (PSU3)" which is quoted in (DOC ID 1222603.1), if so, i have downloaded. However, can you give me patch # for 10.2.0.5 version in order to double check , may be by mistake i download wrong version.
    Thank you,

  • HELP: Keep Getting Error When Applying Magic Bullet Looks

    get this error when applying Looks.
    "After Effects error: crash occurred while invoking effect plug-in "Looks".
    and then it says
    "After Effects error: Crash in progress. Last logged message was: <2280>
    <MCExportInfo: Destruct> <5> Destruct for 420462944"
    I try to apply Looks to another video and I get a different error saying language registry key. I apply Looks to a third video and I get the dynamiclink error. It's like different error for different video. All 3 videos shot with different cameras.

    Same problem here ! I have Vista 64 bit and Intel 4500 Mhd
    driver. The issue is Magic Bullet Misfire works fine in Adobe After
    Effects CS5 but it crashes with Magic Bullet Looks.
    Have checked OpenGL in AE CS5 which are by default OFF, that is if you open Adobe After Effects CS5 and into edit and then click 'preferences'. Under previews there is ur OpenGL info. Click OpenGL, its says need to update driver or get a better OpenGL above 2.0. I think updating to new OpenGL may fix the issue. I have made a video with Magic Bullet Misfire and it works fine but the issue is with only 'Magic Bullet Looks' presets where the AE crashes.
    So it cant be Windows 7, Vista or 32 bit or 64 bit issue. Probably a driver error or an internal Magic Bullet 1.4 or Adobe After Effects CS5 64 bit error.

  • When i download any file it start in a second but when i pause the downloading file & after some time when i open it amessage flash 'download error' source file could not be read please try again later or contact the server administrator.

    when i download any file it works frequently and downloading start in a second but when i pause the downloading file & after some time when i open it,The downloading not start proper and after some time a message flash 'download error' source file could not be read please try again later or contact the server administrator.

    I downloaded the Microsoft Autoruns package and ran it.  There are no programs in the LSA Providers tab, and Apple's Bonjour is the only program in the Winsock Providers tab.  I also did the "netsh winsock reset" and rebooted.  It didn't fix the problem.  Any more ideas?

  • REP-50159: Executed successfully but there were some errors when distribt

    Hi,
    i get this error(REP-50159: Executed successfully but there were some errors when distribute the output)
    when i distribute output using following url.
    http://myserver.com:7778/reports/rwservlet?server=rep_myserver_oracleas2+report=D:\Reports\emp.rdf+userid=abc/xyz@mydb+desformat=pdf+DESTYPE=mail+DESNAME="[email protected]"+FROM="[email protected]"
    I am working on ORA AS 10g(10.1.2.0.2),Windows Server 2003
    Please mark out suggestions.
    Regards,
    IK

    @Inol ...yea i have configrd the mail server(smtp) properties in report server,when the destype is file, the url works fine.i.e generate the file on specified location.
    but using destype mail, it fails, whether i use the url, or use the even driven api procedure..
    Running the procedure its the debugged out put with error...
    * WELCOME TO EVENT-BASED-REPORTING API *
    * API-Version : 9i *
    * (C) Oracle Corporation, 2000 - 2002 *
    * Debugging turned ON **************************
    *** Length of Paramlist : 1
    OK : Parameter added : GATEWAY=http://myserver.com:7778/reports/rwservlet
    *** Length of Paramlist : 2
    OK : Parameter added : SERVER=rep_myserver_oracleas2
    *** Length of Paramlist : 3
    OK : Parameter added : REPORT=D:\Reports\emp.rdf
    *** Length of Paramlist : 4
    OK : Parameter added : USERID=abc/xyz@mydb
    *** Length of Paramlist : 5
    OK : Parameter added : DESTYPE=mail
    *** Length of Paramlist : 6
    OK : Parameter added : DESFORMAT=PDF
    *** Length of Paramlist : 7
    OK : Parameter added : [email protected]
    Starting run_report: building url
    *** Building URL (RUN_REPORT)
    OK : URL built :
    http://myserver.com:7778/reports/rwservlet?SERVER=rep_myserver_oracleas2&REPO
    RT=D%3A%CReports%5Cemp.rdf&USERID=abc%2Fxyz%40mydb&DESTYPE=mail&D
    ESFORMAT=PDF&DESNAME=khan.emran84%40gmail.com&statusformat=xml
    *** Submitting HTTP Request
    *** using URL
    :http://myserver.com:7778/reports/rwservlet?SERVER=rep_myserver_oracleas2&REP
    ORT=D%3A%5CReports%5Cemp.rdf&USERID=abc%2Fxyz%40mydb&DESTYPE=mail&
    DESFORMAT=PDF&DESNAME=khan.emran84%40gmail.com&statusformat=xml
    OK : Request submitted - Return stream : <?xml version = '1.0' encoding =
    'ISO-8859-1' standalone = 'yes'?>
    <serverQueues>
    <error code="50159"
    component="REP" message="Executed successfully but there were some errors when
    distribute the output"/>
    <
    OK : Request submitted - Length of stream : 229
    *** XML-Parsed - Following Structure discovered :
    *** Checking elements!
    serverQueues ()
    *** Checking attributes!
    error
    *** Checking attributes!
    __code = 50159
    __component = REP
    __message = Executed successfully but there were some errors when distribute the
    output
    *** Finished Parsing XML
    Getting value for element: job
    Getting value for element: error
    *** Requesting value for Attribute error.component [REP]
    Getting value for element: error
    *** Requesting value for Attribute error.code [50159]
    Getting value for element: error
    *** Requesting value for Attribute error.message [Executed successfully but
    there were some errors when distribute the output]
    REP-50159:Executed successfully but there were some errors when distribute the
    output
    declare
    ERROR at line 1:
    ORA-20999:
    ORA-06512: at "NRSP.SRW", line 264
    ORA-06512: at "NRSP.SRW", line 799
    ORA-06512: at line 15
    --- i am stuck here...
    -- Googled the error but in vain.....

  • REP-50159: Executed successfully but there were some errors when distribute

    HI All,
    I am using Oracle 10g Rel2 application server on linux environment. I am calling oracle reports from forms i am getting REP-50159: Executed successfully but there were some errors when distribute error.
    I am using Destype :PRINTER and Desname:Printername. Please help us in resloving this issue.
    Thanks & Regards,
    Ram

    Try editing rwlpr.sh in $ORACLEHOME/bin and change the lines (at around line 172) from
    if [ ! -x $PRNCMDPATH ]
    then
    searchcommand $CMD
    fi
    to
    if [ -z $PRNCMDPATH ]
    then
    searchcommand $CMD
    fi
    It worked for me :-)

  • Have a  problem with Lightroom 5.4.  Since the program crashed yesterday it won't launch, it comes up with the message "Lightroom encountered an error when reading its preview cache and needs to quit".  "  Lightroom will attempt to fix this problem net ti

    Have a  problem with Lightroom 5.4.  Since the program crashed yesterday it won't launch, it comes up with the message "Lightroom encountered an error when reading its preview cache and needs to quit".  "  Lightroom will attempt to fix this problem next time it launches".  Except that it doesn't, I keep getting the same message and the program closes.  Does anyone know what I  can do to repair it?  Can't back up, can't do anything.

    There are dozens of threads in this forum that describe the fix

  • On my Mac, after the installation i get this error when i start - Premiere Elements 13.0 has encountered an error. [/Adobe/pre/main/MediaCore/ASL/Foundation/Make/Mac/../../Src/DirectoryRegistry.cpp-283] any ideas how to fix this

    On my Mac, after the installation i get this error when i start - "Premiere Elements 13.0 has encountered an error. [/Adobe/pre/main/MediaCore/ASL/Foundation/Make/Mac/../../Src/DirectoryRegistry.cpp-283]"
    any ideas how to fix this, i don't know or haven't faound out how to contact Adobe supporet....

    Here's the contact link for Adobe support. It's just three clicks from the site's home page.
    Contact Customer Care

  • Export the pdf from indesign some error Pop Up window (Failed to Export the PDF file). How slove the

    Export the pdf from indesign some error Pop Up window (Failed to Export the PDF file). How slove the problem
    Please some one help on this

    You need to try exporting the first half of the book.
    If that exports ok then export the other half of the book.
    Whatever half it fails on - keep dividing the book in half to find the culprit page or pages.
    For example if your book is 128 pages long:
    1. Export pages 1 - 63
    2. If these Fail to Export then
    3. try exporting1-32
    4. If these Fail to Export
    5. then try exporting1-16
    If it doesn't fail (step 2)
    Then export pages 64-128
    and 64-90 etc.
    until you find the pages causing the issues.

  • How to solve the error " The installation process encountered an error while installing Shared Technologies.

    I had bought the adobe photoshop elements 12 online and I am not able to complete my installation although i tried many times . An error "The installation process encountered an error  while installing Shared Technologies. Please restart your computer and try again" occur

    Photoshop Elements 12 fails while installing sh... | Adobe Community

Maybe you are looking for

  • Devolução de Transferência SD/MM com NF

    Prezados bom dia, Tenho o processo de transferência SD/MM (Mov 861/861) e agora me foi solicitado a criação do processo de devolução de transferência onde, segundo o fiscal, não podemos fazer simplesmente um outro PC UB para devolver a mercadoria. Pe

  • Sales Order -Valuated, non valuated

    Hi, I am getting an error while saving a sales order containing Variant Configured Material. The Error description is " Sales Order is non valuated". Where do we make the config settings regarding valuation of a Sales order?i.e.valuated or non valuat

  • Identification

    I posted a problem re all-in one printer and I find I'm listed as a tutor.  I am far from a tutor but if readers see tutor they might think my post is an answer, not a question. This question was solved. View Solution.

  • SSL Problem

    Hi, I am trying send programtic request to my apache server which is configured with SSL without CA certificate. So when I am sending request to server it is returning me following exception : javax.net.ssl.SSLHandshakeException: sun.security.validat

  • Does iSight not work in iBook?

    I bought iBook G4 in 2004. I have ordered iSight in apple store. Not yet shipped now. However today my friend told me iSight may not work in iBook. Is it right?