ORA-01861 occurs when NO_INDEX hint removed

Hi all,
We've got a view that is very slow and we'd noticed it had several /* NO_INDEX (+index_name+) */ hints. Thinking this was an odd approach and may be causing the performance hit, I tested the query without the hints and, as expected, performance was vastly improved.
However, the application that uses the view queries via a DATE column on the view. When a date is specified in a query against the view, the version with the hints removed now comes up with ORA-01861. The same query against the view with the hints intact works fine (albeit very slowly).
The view references views/tables that are accessed across a database link. The source of the DATE field is originally a VARCHAR2 field that is converted to a date using TO_DATE on one of the views in the main view's FROM clause (to the DD/MM/YYYY HH24:MI:SS format).
I've tried all manner of TO_CHAR, TO_DATE (with and without TRUNC) to get the query to work without success. There is something very odd going on here.
The database is 9i.
Please help!

Many thanks for the swift responses.
The main query (I've posted the version with the hint so you can see that) is:
CREATE OR REPLACE FORCE VIEW people.xxmod_int_fp_shift_payment_v (psp_cust_id,
psp_person_id,
psp_term_date,
psp_pp_date,
psp_amt,
psp_ind,
psp_percent,
psp_hrs,
psp_pen_amt
AS
SELECT /*+ NO_INDEX(xienav.peev pay_element_entry_values_f_n50) */
xipciv.customer_id, papf.employee_number, papf.effective_end_date,
xienav.week_ending_date, NULL, NULL, NULL, NULL, NULL
FROM per_all_people_f papf,
per_all_assignments_f paaf,
pay_element_entries_f peef,
xxmod_int_ee_night_allow_v xienav,
xxmod_int_per_cust_id_v xipciv
WHERE paaf.person_id = papf.person_id
AND peef.assignment_id = paaf.assignment_id
AND xienav.element_entry_id = peef.element_entry_id
AND paaf.payroll_id = xipciv.payroll_id
AND peef.effective_start_date BETWEEN papf.effective_start_date
AND papf.effective_end_date
AND peef.effective_start_date BETWEEN paaf.effective_start_date
AND paaf.effective_end_date
UNION ALL
SELECT /*+ NO_INDEX(xienamv.peev pay_element_entry_values_f_n50) */
xipciv.customer_id, papf.employee_number, papf.effective_end_date,
xienamv.date_worked, NULL, NULL, NULL, NULL, NULL
FROM per_all_people_f papf,
per_all_assignments_f paaf,
pay_element_entries_f peef,
xxmod_int_ee_night_allow_mod_v xienamv,
xxmod_int_per_cust_id_v xipciv
WHERE paaf.person_id = papf.person_id
AND peef.assignment_id = paaf.assignment_id
AND xienamv.element_entry_id = peef.element_entry_id
AND paaf.payroll_id = xipciv.payroll_id
AND peef.effective_start_date BETWEEN papf.effective_start_date
AND papf.effective_end_date
AND peef.effective_start_date BETWEEN paaf.effective_start_date
AND paaf.effective_end_date
UNION ALL
SELECT /*+ NO_INDEX(xiesov.peev pay_element_entry_values_f_n50) */
xipciv.customer_id, papf.employee_number, papf.effective_end_date,
xiesov.date_worked, NULL, NULL, NULL, NULL, NULL
FROM per_all_people_f papf,
per_all_assignments_f paaf,
pay_element_entries_f peef,
xxmod_int_ee_shift_overtime_v xiesov,
xxmod_int_per_cust_id_v xipciv
WHERE paaf.person_id = papf.person_id
AND peef.assignment_id = paaf.assignment_id
AND xiesov.element_entry_id = peef.element_entry_id
AND paaf.payroll_id = xipciv.payroll_id
AND peef.effective_start_date BETWEEN papf.effective_start_date
AND papf.effective_end_date
AND peef.effective_start_date BETWEEN paaf.effective_start_date
AND paaf.effective_end_date;
One of the sub-view queries (they all do a similar thing) converting the data in question is:
CREATE OR REPLACE FORCE VIEW people.xxmod_int_ee_night_allow_v (element_entry_id,
early_hrs_to_2300,
late_hrs_from_2300,
pay_value,
week_ending_date
AS
SELECT /*+ NO_INDEX(peev pay_element_entry_values_f_n50) */
peev.element_entry_id, NULL, NULL, NULL,
TO_DATE (peev.screen_entry_value, 'YYYY/MM/DD HH24:MI:SS')
FROM pay_element_entry_values_f peev,
pay_input_values_f piv,
pay_element_types_f pet
WHERE piv.input_value_id = peev.input_value_id
AND piv.element_type_id = pet.element_type_id
AND pet.element_name = 'Night Allowance Non MOD'
AND piv.NAME = 'Claim Date'
AND peev.effective_start_date BETWEEN piv.effective_start_date
AND piv.effective_end_date
AND peev.effective_start_date BETWEEN pet.effective_start_date
AND pet.effective_end_date;
I've looked for erroneous data that may be contributing towards this error but I have yet to find any.

Similar Messages

  • ORA-04062 occurs when executing a form that contains a call to a DB package

    We have an application that is written in Forms 6i. We just recently deployed
    this to a test server. When trying to run forms that have calls to database
    packages that have a PL/SQL table as a parameter, we are getting an ORA-04062
    error. This does not occur on our development server. I did some research on
    Metalink and found lots of information about this error. One of which was NOTE
    73506.1. I thought this was our problem. I added the initialization parameter
    REMOTE_DEPENDENCIES_MODE = SIGNATURE to the init.ora file for the test server.
    This did not seem to help. I am at a loss as to what to do next. We actually
    have 3 servers that we are working with right now. Here is a summary of some
    tests that we did.
    Compiled Form against Database on Server 1. The form worked on Server 1 and
    Server 2. It did not work on Server 3.
    Compiled Form against Database on Server 2. The form worked on Server 1 and
    Server 2. It did not work on Server 3.
    Compiled Form against Database on Server 3. The form worked on Server 3. It did
    not work on Server 1 or Server 2.
    We had changed the init.ora file on Servers 2 & 3 to have the
    remote_dependencies_mode = signature. So I expected the form to work on those
    two servers (2 & 3) and not on server 1.
    We never had this problem when we were Forms 4.5, but we didn't have the PL/SQL
    table functionality then either.
    It appears to work on any schema on the Server that the form was compiled
    against regardless of the timestamp for the package on that schema.
    Has anyone else had this problem? Any help would be greatly appreciated. Thanks.

    After many long and frustrating days, I have finally figured out what the problem is.
    In the package that was failing, it was creating a pl/sql table that had 3 columns. Two of those columns were using a %TYPE as the declaration. The problem one was compounds.name%TYPE.
    It turned out that the server that was having the problem had this column's definition being VARCHAR2(50) on all of its schemas. The form was being compiled against a database that had this column set to VARCHAR2(30). The 30 length is the correct definition. We aren't sure how all the schema's on that server got messed up, but that is the problem. Once we dropped the table and recreated it with the correct definitons, the form that called the package worked as it should.
    I am a little confused as to why the %TYPE didn't work at runtime. I thougth that the purpose of using a %TYPE was so that if the column defintion changed after the code was compiled, that it would use whatever the definiton is at runtime. Is this not true?
    null

  • ORA-00904 OCCURS WHEN CALLING PL/SQL PACKAGED FUNCTIONS

    Hi ,
    When i try to execute
    SELECT P_GMT_FOLDER.F_GET_SEC_MTRTY_BUCKET(TO_DATE('16/04/2008','DD/MM/YYYY'),TO_DATE('16/04/2008','DD/MM/YYYY'))
              FROM DUAL
    it showing the error like in Production
    ORA-00904 invalid identifier.
    But in UAT is is working fine.
    Could anyone tell me how to fix this?
    Cheers
    Ramkannan.A

    lol!
    I'd like to say that I'd join you, but I'm sure someone would misconstrue that!
    *{;-)                                                                                                                                                                                           

  • Error : ORA-32001 & ORA-02095 occurs when trying to alter audit_trial

    Hi All,
    I am trying to alter the audit_trial parameter to 'db,extended' as need to log SQLTEXT and SQLBIND into the SYS.AUD$.
    But when I tried to alter the system parameter it gives me the below error.
    Connected to Oracle Database 11g Release 11.2.0.2.0
    Connected as SYS
    SQL> ALTER SYSTEM SET audit_trail=db,extended SCOPE=SPFILE;
    ALTER SYSTEM SET audit_trail=db,extended SCOPE=SPFILE
    ORA-32001: write to SPFILE requested but no SPFILE is in use
    SQL> ALTER SYSTEM SET audit_trail=db,extended;
    ALTER SYSTEM SET audit_trail=db,extended
    ORA-02095: specified initialization parameter cannot be modified
    SQL>
    Currently there is no server parameter file (SPFILE) in use for this database.
    Is it not possible to alter the audit_trail parameter without using SPFILE scope?
    I highly appreciate all your help to overcome this issue.
    Best Regards,
    Nipuna86

    Is it not possible to alter the audit_trail parameter without using SPFILE scope?yes,change the value in pfile (locate under $ORACLE_HOME/dbs/init<DB_NAME>.ora) and shutdown and bringup the database with this pfile.

  • ORA-20000 error when executing background jobs in BI System

    Hello Experts,
    We newly installed NW2004s System. Few BI related background jobs are showing Error no: 4 or Error no: 3 in SM50. Also few BI related background jobs are giving error "ORA-20000 occurred when executing SQL statement (parse error offset=0)". Please let me know what does Error 4 or 3 mean in SM50 and how to resolve Ora-20000 error?
    Thanks

    This may be to do with insufficient authorization for the user (for creating statistics for example). Check OSS note 963760.

  • PL/SQL: ORA-04052: error occurred when looking up remote object.

    Hi All,
    I'm getting the following error message while executing a PL/SQL Block.
    PL/SQL: ORA-04052: error occurred when looking up remote object UPLDUSER.filestatushistory@FTS
    ORA-00604: error occurred at recursive SQL level 1
    ORA-03106: fatal two-task communication protocol error
    ORA-02063: preceding line from FTSStatement
    declare
    v_coun number;
    begin
    select count(*) into v_coun
    from updluser.filestatushistory@fts;
    end;Back ground of the situation as follows,
    My DataBase version 10.2.0.3 DB Name :DB1
    Table Owner : UPLDUSER
    Table Name : FILESTATUSHISTORY
    I have a report user on the same database and I have grant all on the above table to report user
    Report User : RPT_FTS
    SQL> GRANT ALL ON FILESTATUSHISTORY_V TO RPT_FTS;Now Please find the below database details where I'm getting subjected error.
    Database version : 9.2.0.8
    DB Name : DB2
    User Name : RPT_REPORTS
    I Have create a dblink from RPT_REPORTS to RPT_FTS on DB1 and the dblink works fine. But getting the above error while running it.
    but When I do the same other 10.2.0.3 db , the above PL/SQL block works fine without any problem.
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Now the strange about this is that I have Created a new table on DB1 db like below;
    SQL> CREATE TABLE UPLDUSER.ABC AS SELECT * FROM FILESTATUSHISTORY;and retry my code on DB2 (9.2.0.8) after changing the table to ABC and it worked. Now I don't know whats wrong with a original table(FILESTATUSHISTORY).
    To over come the problem and a work-a-round method I create a view on the DB1 (RPT_FTS) like the below
    SQL> CREATE VIEW FILESTATUSHISTORY AS SELECT * FROM UPLDUSER.FILESTATUSHISTORY;and was able to run the PL/SQL block Remotely.
    Just wants To know what whould have been the cause for this .
    Cheers
    Kanchana

    Hi Kanchana,
    Perhaps following link of google search has answer to your query
    ORA-04052. The search result contains some useful articles whose URLs I shan't post in the forums.
    HTH!
    *009*

  • ORA-04052: error occurred when looking up remote obj in mapping execution

    Hi,
    While executing an OWB mapping, I am getting the following error:
    ============
    Starting Execution UII_D_MAP_SPC_INSTALLATION_SIT
    Starting Task UII_D_MAP_SPC_INSTALLATION_SIT
    ORA-04052: error occurred when looking up remote object [email protected]
    ORA-00604: error occurred at recursive SQL level 1
    ORA-02019: connection description for remote database not found
    ORA-02063: preceding 3 lines from BIP2S@BIPDRACONN
    ORA-06512: at "UII_ODS_OWNER.UII_D_MAP_SPC_INSTALLATION_SIT", line 73
    ORA-06512: at "UII_ODS_OWNER.UII_D_MAP_SPC_INSTALLATION_SIT", line 1672
    ORA-06512: at "UII_ODS_OWNER.UII_D_MAP_SPC_INSTALLATION_SIT", line 2353
    ORA-06512: at "UII_ODS_OWNER.UII_D_MAP_SPC_INSTALLATION_SIT", line 6838
    ORA-06512: at line 1
    Completing Task UII_D_MAP_SPC_INSTALLATION_SIT
    Completing Execution UII_D_MAP_SPC_INSTALLATION_SIT
    ============
    Actually, here UII_ODS_OWNER itself is the target schema and <<UIIVS.DEVENV1.BT.CO.UK>> is the database in which this schema exists. And the mapping "UII_D_MAP_SPC_INSTALLATION_SIT" is being executed in the same target schema UII_ODS_OWNER.
    I am not sure why this above error is coming because such a dblink 'UIIVS.DEVENV1.BT.CO.UK' does not exist in the OWB generated package code. And the 2nd dblink 'BIP2S@BIPDRACONN' does not exist in the code, intead it exists as "BIP2S.DEVENV1.BT.CO.UK@BIPDRACONN" in the package code which is correct (as per OWB configuration & database).
    Same error also comes when I try to execute the same mapping from the OWB DEPLOYMENT MANAGER.
    Thanks & Regards,
    lenin

    Good morning Lenin,
    Have you checked the implementation of the connectors and are your locations well registered?
    Has a similar setup ever worked well?
    Can you access the source table using SQL (e.g. with SQL*Plus or TOAD)?
    Regards, Patrick

  • ORA-04052: Error occurs when execute the block

    I'm trying to run one block and his query definition uses an active public database link. When I ran the script to block I get the following message:
    ERROR in line 1:
    ORA-04052: error occurred when looking up remote object
    SQ_DSV.temp_tipo_contr@SQ_DSV tc
    ORA-00604: error occurred at recursive SQL level 1
    But when I execute his definition query all is ok, the query works fine.
    I mean, I'm using the following sentence to block:
    declare
    Cursor Tipo_Contr is
    Select tc.rec_id, tc.tipo_contr from SQ_DSV.temp_tipo_contr@SQ_DSV tc;
    begin
    For Reg_Tipo_Contr in Tipo_Contr Loop
    Begin
    Update recursos Set tpcontr_id = Reg_Tipo_Contr.tipo_contr
    where rec_id = Reg_Tipo_Contr.rec_id;
    exception when others then
    dbms_output.put_line(Reg_Tipo_Contr.rec_id || ' Not find');
    end;
    end loop;
    -- Commit;
    end;
    I checked for the GLOBAL_NAMES parameter and it is set to FALSE. Please help me, How can I fix this problem ?
    I'm using Oracle8i Enterprise Edition Release 8.1.7.0.0 - Production running over Win XP for run block.
    Thanks you, Paulo.

    ORA-04052 error occurred when looking up remote object stringstringstringstringstring
    Cause: An error has occurred when trying to look up a remote object.
    Action: Fix the error. Make sure the remote database system has run KGLR.SQL to create necessary views used for querying/looking up objects stored in the database.
    Regards
    Marcio Paiva

  • FRM-40735: When-Validate-Item trigger raised unhandled exception ORA-01861

    Dear all, I runned a form designed by Developer 2000 version 4.5 and encountered a puzzling problem. The same program could be runned on one computer but not in another one. The error message is as below: FRM-40735: When-Validate-Item trigger raised unhandled exception ORA-01861. The OS of both computers are windows 2000 professional. The only difference between two computers is the patch files didn't installed on one of them. I don't know if it is the key point. Could you tell me why?
    Thank you!!!

    I sure wish people would post the entire text of the error message. "ORA-01861: literal does not match format string."
    What kind of field are you trying to validate? This message is usually due to a date format error. If you are trying to convert text into a date without using TO_DATE('some text','date-format'), then that is the problem. It sounds like you are, and the database default date format is different between the two systems.

  • ORA-04052: error occurred when looking up remote object SYS.DBMS_UTILITY@..

    Hello,
    I'm trying to import data van 10XE version to new 11XE version over db_link.
    When using the method I run into following error:
    ORA-04052: error occurred when looking up remote object SYS.DBMS_UTILITY@<<db_link_name>>
    This seems to be a bug in 10.2.0.1 fixed in later 10.2 versions, according to the database general forum. "upgrade to newer version"
    But how do i fix this bug in 10XE? Or is the only way around to use the 'old-fashioned' way of exporting data from 10XE to a file, transfer the file and import it in 11XE?
    Best regards,
    Jan.

    No, you cannot apply a patch to XE. Basically the XE internal code is the same as for any other edition. That means is there a bug, you have it in XE,too. To get patches you need a licence for metalink/My Oracle Support. But even you would have one, it wouldn't help you, because Oracle does not provide patches for XE.
    That's the 'price' you have to pay for this free edition.
    Werner

  • ORA-04052: error occurred when looking up remote object SYS.DBMS_SNAPSHOT

    Hello everyone,
    When I tried to create a materialized view with refresh fast mode, I encountered following error message.
    The MV log has been created on my_table like this:
    create materialized view log on my_table
    tablespace data3
    with rowid, sequence
    including new values;
    The database link has been created like this:
    CREATE PUBLIC DATABASE LINK my_db
    CONNECT TO myname
    IDENTIFIED BY mypassword
    USING 'my_db';
    Could anybody please let me know why I can not create MV with refresh fast? What I did wrong?
    Thanks in advance!!!
    MYDB>select count(*) from my_table@my_db;
    COUNT(*)
    5
    Elapsed: 00:00:00.01
    MYDB>create materialized view my_mv
    2 tablespace data4
    3 build immediate
    4 refresh fast with rowid
    5 as
    6 select * from my_table@my_db
    select * from my_table@my_db
    ERROR at line 6:
    ORA-04052: error occurred when looking up remote object SYS.DBMS_SNAPSHOT@my_db
    ORA-00604: error occurred at recursive SQL level 2
    ORA-06544: PL/SQL: internal error, arguments: [55916], [], [], [], [], [], [], []
    ORA-06553: PLS-801: internal error [55916]
    ORA-02063: preceding 2 lines from my_db
    Elapsed: 00:00:00.29
    MYDB>create materialized view my_mv
    2 tablespace data4
    3 build immediate
    4 as
    5 select * from my_table@my_db;
    Materialized view created.
    Elapsed: 00:00:00.20

    No, you cannot apply a patch to XE. Basically the XE internal code is the same as for any other edition. That means is there a bug, you have it in XE,too. To get patches you need a licence for metalink/My Oracle Support. But even you would have one, it wouldn't help you, because Oracle does not provide patches for XE.
    That's the 'price' you have to pay for this free edition.
    Werner

  • ORA-04052: error occurred when looking up remote object

    Hi, Basically I want to setup Replication between two servers, 'ZEN2K7' & 'DB' (Advanced master-to-master replication, Sync).
    This is what i had done so far.(Both server having ver 10.1.0.2.0)
    At Server 'ZEN2K7'
    CONNECT system/manager@ZEN2K7
    CREATE USER repadmin IDENTIFIED BY repadmin;
    ALTER USER repadmin DEFAULT TABLESPACE POOL_DATA;
    ALTER USER repadmin TEMPORARY TABLESPACE TEMP;
    GRANT connect, resource TO repadmin;
    EXECUTE dbms_repcat_admin.grant_admin_any_schema('repadmin');
    GRANT comment any table TO repadmin;
    GRANT lock any table TO repadmin;
    EXECUTE dbms_defer_sys.register_propagator('repadmin');
    GRANT execute any procedure TO repadmin;
    CREATE PUBLIC DATABASE LINK DB USING 'DB';
    CONNECT repadmin/repadmin@ZEN2K7
    CREATE DATABASE LINK DB CONNECT TO repadmin IDENTIFIED BY repadmin;
    At Server 'DB'
    CONNECT system/manager@DB
    CREATE USER repadmin IDENTIFIED BY repadmin;
    ALTER USER repadmin DEFAULT TABLESPACE POOL_DATA;
    ALTER USER repadmin TEMPORARY TABLESPACE TEMP;
    GRANT connect, resource TO repadmin;
    EXECUTE dbms_repcat_admin.grant_admin_any_schema('repadmin');
    GRANT comment any table TO repadmin;
    GRANT lock any table TO repadmin;
    EXECUTE dbms_defer_sys.register_propagator('repadmin');
    GRANT execute any procedure TO repadmin;
    CREATE PUBLIC DATABASE LINK ZEN2K7 USING 'ZEN2K7';
    CONNECT repadmin/repadmin@DB
    CREATE DATABASE LINK ZEN2K7 CONNECT TO repadmin IDENTIFIED BY repadmin;
    After this, Create master replication group on ZEN2K7
    CONNECT repadmin/repadmin@ZEN2K7
    BEGIN
    DBMS_REPCAT.CREATE_MASTER_REPGROUP(
    gname => '"REPTEST"',
    qualifier => '',
    group_comment => '');
    END;
    Then at 'ZEN2K7', when i executing
    BEGIN
    DBMS_REPCAT.ADD_MASTER_DATABASE(
    gname => '"REPTEST"',
    master => 'DB',
    use_existing_objects => TRUE ,
    copy_rows => TRUE ,
    propagation_mode =>'SYNCHRONOUS');
    END;
    I got following error
    ORA-04052: error occurred when looking up remote object REPADMIN.SYS@DB
    ORA-00604: error occurred at recursive SQL level 2
    ORA-12154: TNS:could not resolve the connect identifier specified
    ORA-06512: at "SYS.DBMS_REPCAT_UTL", line 4262
    ORA-06512: at "SYS.DBMS_REPCAT_MAS", line 2156
    ORA-06512: at "SYS.DBMS_REPCAT", line 146
    ORA-06512: at line 2
    I had already execute the 'catrpc.sql' on both server.
    I had already check the connection at 'ZEN2K7' side, means I can connect to 'DB' within SQL* Plus at 'ZEN2K7' side.
    What else need to do???
    Thanks.
    Gurpreet S. Gill

    ORA-12154: TNS:could not resolve the connect identifier specified
    This means that you server is unable to resolve DB alias.
    Check you SQL*Net settings.
    On ZEN2K7 try tnsping db. If tnsping return error that add db alias to tnsnames.ora if you use tnsnames as one of resolving mechanism (check sqlnet.ora for NAMES.DIRECTORY_PATH)

  • ORA-04052: error occurred when looking up remote object REPADMIN.SYS@CEL2.W

    Hi,
    on 10gR2 , on WIN 2003 server :
    C:\>sqlplus repadmin/***@CEL2.WORLD
    SQL*Plus: Release 10.2.0.4.0 - Production on Tue Jun 22 09:54:18 2010
    Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing optionsAnd then :
    CONNECT repadmin/******@CEL1.WORLD
    BEGIN
       DBMS_REPCAT.ADD_MASTER_DATABASE (
          gname => 'REPG',
          master => 'CEL2.WORLD',
          use_existing_objects => TRUE,
          copy_rows => FALSE,
          propagation_mode => 'ASYNCHRONOUS');
    END;
    BEGIN
    ERROR at line 1:
    ORA-04052: error occurred when looking up remote object [email protected]
    ORA-00604: error occurred at recursive SQL level 2
    ORA-12545: Connect failed because target host or object does not exist
    ORA-06512: at "SYS.DBMS_REPCAT_UTL", line 4271
    ORA-06512: at "SYS.DBMS_REPCAT_MAS", line 2156
    ORA-06512: at "SYS.DBMS_REPCAT", line 146
    ORA-06512: at line 2Thank for help.

    Thank you. I think it is a problem with dB_LINK.
    SQL> select db_link from dba_db_links;
    DB_LINK
    CEL2.WORLD
    CEL2.WORLD
    SQL> select count(*) from [email protected];
    select count(*) from [email protected]
    ERROR at line 1:
    ORA-12505: TNS:listener does not currently know of SID given in connect
    descriptor
    SQL> select count(*) from SCOTT.EMP@CEL2;
    select count(*) from SCOTT.EMP@CEL2
    ERROR at line 1:
    ORA-02019: connection description for remote database not foundI can not see how to correct it ?
    Thanks.

  • ORA-04052: error occurred when looking up remote object STRMADMIN.DBMS_AQAD

    ORA-04052: error occurred when looking up remote object STRMADMIN.DBMS_AQADM@PROD
    ORA-00604: error occurred at recursive SQL level 4
    ORA-12170: TNS:Connect timeout occurred
    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
    my capture and apply proccess are enable.but the propagation gives the above error
    how could i sole this?

    Compliant to global_name ? Please browse a bit this forum, global name issue arise every 2 days.
    STRMADMIN.DBMS_AQADM@PROD

  • [svn:fx-trunk] 8825: Normalizing URLs to remove [[DYNAMIC]] from LoaderInfo .url information which occurs when linking against RSLs.

    Revision: 8825
    Author:   [email protected]
    Date:     2009-07-27 11:51:15 -0700 (Mon, 27 Jul 2009)
    Log Message:
    Normalizing URLs to remove [[DYNAMIC]] from LoaderInfo.url information which occurs when linking against RSLs. This fixes RPC services trying to resolve a fully qualified URL for relative resources.
    QE: Yes, please ensure RPC tests that make use of relative paths are compiled with RSLs.
    Doc: No
    Checkintests: Pass
    Reviewer: Darrell
    Bugs:
    FB-21713 - HTTPService to relative file in CF project fails due to incorrectly re-written URL
    SDK-22362 - RemoteObject method calls for invoking php code fails when relative URL is given for endpoint
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FB-21713
        http://bugs.adobe.com/jira/browse/SDK-22362
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/systemClasses/ChildManager.a s
        flex/sdk/trunk/frameworks/projects/framework/src/mx/messaging/config/LoaderConfig.as

    Revision: 8825
    Author:   [email protected]
    Date:     2009-07-27 11:51:15 -0700 (Mon, 27 Jul 2009)
    Log Message:
    Normalizing URLs to remove [[DYNAMIC]] from LoaderInfo.url information which occurs when linking against RSLs. This fixes RPC services trying to resolve a fully qualified URL for relative resources.
    QE: Yes, please ensure RPC tests that make use of relative paths are compiled with RSLs.
    Doc: No
    Checkintests: Pass
    Reviewer: Darrell
    Bugs:
    FB-21713 - HTTPService to relative file in CF project fails due to incorrectly re-written URL
    SDK-22362 - RemoteObject method calls for invoking php code fails when relative URL is given for endpoint
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FB-21713
        http://bugs.adobe.com/jira/browse/SDK-22362
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/systemClasses/ChildManager.a s
        flex/sdk/trunk/frameworks/projects/framework/src/mx/messaging/config/LoaderConfig.as

Maybe you are looking for

  • DVD +R  will play on computer but not on DVD player, what happened?

    Hi, I burned a dvd on using DVDSP and it will not play on our dvd player but will play on the macbook pro dvd player. Should I try a DVD-R or are there other considerations that I should be aware of? Thanks, Andy

  • How can i open pdf on safari with reader 11,0,07

    i've got Imac with OSX 10,9,4 and adobe reader 11,0,07. i can't read pdf on website. i've got this error message : Before proceeding you must first launch Adobe Acrobat and accept the End User License Agreement. but i don't know where i can accept th

  • ITunes keeps wiping my library.

    This is the 4th time this has happened. I have several playlists and albums, along with many songs from CDs and some LEGALLY downloaded for free from Nico Nico Douga (it has a sister site that allows you to download their videos as MP3s.) What happen

  • Due Date in Invoice

    HI All, when i am adding an invoice with posting date - 03-03-2010 and due date - 03-04-2010 system is not allow to add it please tell me the solution. postinge period defined as: FY09-10 posting date : 01-04-09 to 31-03-2010 due date   : 01-04-09 to

  • Unable to start IB and IR XI 3.0 Unix

    I attempt to run Repository and get the following error when starting Java Web start...the following is from Java Web start log: (run on unix) An error occurred while launching/running the application. Title: Integration Builder Vendor: SAP AG Catego