Oracle Hint not causing any change to explain plan

Hi,
I was facing a problem about ORA-00600 for using Connect by Prior query,
details of which are at -
Connect by Prior - ORA-00600: internal error code, arguments: [kkqcbydrv:1
As is documented by Oracle, workaround for this is to use /*+ NO_UNNEST */ in query.
I displayed the explain plan for original query and after putting hint in query.
There is no difference in the explain plans, I am a starter for explain plans and don't know much of it.
But shouldn't the hint cause some change in explain plan?
Even the hash values as mentioned in explain plans are same.
Thanks in advance.
Av.

Perhaps it would help if you put the query (with the hint) and the explain plan here.

Similar Messages

  • For one Urgent Change during performing the Approval(chnging the status to 'To be Tested') system does not recognize any changes using the CTS WBS BOM in the development system. The transaction is therefore incorrect or the status was reset by the system.

    For one Urgent Change while performing the one of the Approval before changing the status to 'To Be Tested'
    We are getting below error.
    The system does not recognize any changes using the CTS WBS BOM in the development system. The transaction is therefore incorrect or the status was reset by the system.
    COuld anyone please help us to know, How it can be resolved?
    We also have this below error.
    System Response
    If the PPF action is a condition check, the condition is initially considered as not met, and leads to another warning, an error message, or status reset, depending on the configuration.
    If the PPF action is the execution of a task in the task list, and the exception is critical, there is another error message in the document.
    Procedure
    The condition cannot be met until the cause is removed. Analyze all messages in the transaction application log.
    Procedure for System Administration
    Analyze any other messages in the task list application log, and the entries for the object /TMWFLOW/CMSCV
    Additional Information:
    System cancel RFC destination SM_UK4CLNT005_TRUSTED, Call TR_READ_COMM:
    No authorization to log on as a trusted system (Tr usted RC=0).
    /TMWFLOW/TU_GET_REQUEST_REMOTE:E:/TMWFLOW/TRACK_N:107
    For above error Table /TMWFLOW/REP_DATA_FLOWwas refreshed as well but still the same error.

    If you are in Test System, you can use function module AA_AFABER_DELETE to totally delete the depreciation area (tcode SE37, specify chart of depreciation and depreciation area), After that recreate your depreciation area and run AFBN. But before you do that, have you created a retirement transaction type that limits the posting on your new depreciation area? If not create one.
    Hope this helps.
    Thanks!
    Jhero

  • View Object Editor in JHS 10.1.2 does not save any changes....

    Hi,
    When I did exactly as the JHeadstart Tutorial says, I noticed that
    in JHeadstart 10.1.2 with JDeveloper 10.1.2
    JHeadstart does not save any changes I make in the View Object Editor
    of the Application Structure File Editor !!!
    For instance when I change the Width property of an Attribute from 60 to 5
    it changes to 5, but when close the View Object Editor
    and reopen it again, the Width is back to 60...
    Even when I click the button "Validate the Application Structure File" before
    closing the VO Editor....
    What do I do ??? Is the only solution to edit the XML file
    or something like that without using the VO Editor ?
    Or is there a better solution ?
    Does it maybe work in an older version of JHeadstart ?
    If so, where is the older version available for download ?
    Thanks,
    Eric Joosse

    Eric,
    How did you leave the JHeadstart VO editor?
    The changes should be saved when you click the OK button in the VO editor itself, but they are not saved if you click Cancel, or the little cross in the upper right corner, or leave it open while going back to the Application Structure File editor. That's because it's a standalone editor (you can also find it when right-mouse-clicking the VO in the Model project). The icon in the Application Structure File editor is just a quick way to get to it.
    Hope this helps,
    Sandra Muller
    JHeadstart Team
    Oracle Consulting

  • "An autonomous transaction does not see any changes made by main transact"

    Hi,
    I'm trying to reproduce the "An autonomous transaction does not see any changes made by main transaction" reffered on :
    Oracle® Database Application Developer's Guide - Fundamentals
    10g Release 2 (10.2)
    Part Number B14251-01
    chapter 2 SQL Processing for Application Developers
    Paragraph : Autonomous TransactionsI set up a simple case...
    create table emp_ as select * from emp
    begin
      update emp_ set hiredate=hiredate+100 where empno=7934;
    end;
    create or replace trigger trg_emp_
    after insert or update on emp_
    for each row
    declare
        pragma autonomous_transaction;
        emp_var emp.hiredate%type;
      begin
        select hiredate
          into emp_var
          from emp_
        where empno=:new.empno;
        dbms_output.put_line('empno: '||:new.empno);
        dbms_output.put_line('old hiredate: '||:old.hiredate);
        dbms_output.put_line('new hiredate: '||:new.hiredate);
      end;Prior to any change...
    SQL> select empno,hiredate from emp_;
    EMPNO HIREDATE
    5498 21/4/1982
    5499 11/10/1981
    5411 10/10/1981
    5410 10/10/1982
    7369 17/12/1980
    7499 20/2/1981
    7521 22/2/1981
    7566 2/4/1981
    7654 28/9/1981
    7698 1/5/1981
    7782 9/6/1981
    7788 19/4/1987
    7839 17/11/1981
    7844 8/9/1981
    7876 23/5/1987
    7900 3/12/1981
    7902 3/12/1981
    7934 23/1/1982After the change...
    SQL> begin
      2    update emp_ set hiredate=hiredate+100 where empno=7934;
      3  end;
      4  /
    empno: 7934
    old hiredate: 23/01/82
    new hiredate: 03/05/82
    PL/SQL procedure successfully completedAccording to the Oracle doc the select of the autonomous transaction should not see the change made to the hiredate column of the table in the main transaction(in the anonymous block)....
    What may i do wrong..????
    Thank you,
    Sim

    Simon:
    As Tubby pointed out, your dbms_output commands do not display the value you selected in the trigger. Your trigger based demonstration needs to be more like:
    SQL> SELECT * FROM t;
            ID DT
             1 05-SEP-2009
             2 17-JUL-2009
    SQL> CREATE TRIGGER t_ai
      2     AFTER INSERT OR UPDATE ON t
      3     FOR EACH ROW
      4  DECLARE
      5     PRAGMA AUTONOMOUS_TRANSACTION;
      6     l_dt t.dt%TYPE;
      7  BEGIN
      8     SELECT dt INTO l_dt
      9     FROM t
    10     WHERE id = :new.id;
    11     DBMS_OUTPUT.Put_Line ('ID: '||:new.id);
    12     DBMS_OUTPUT.Put_Line ('Old dt: '||:old.dt);
    13     DBMS_OUTPUT.Put_Line ('New dt: '||:new.dt);
    14     DBMS_OUTPUT.Put_Line ('Aut dt: '||l_dt);
    15  END;
    16  /
    Trigger created.
    SQL> UPDATE t SET dt = sysdate WHERE id = 2;
    ID: 2
    Old dt: 17-JUL-2009
    New dt: 25-OCT-2009
    Aut dt: 17-JUL-2009
    1 row updated.So, the automomous transaction select did not see the changed value of dt.
    I know you are just trying to understand automomous transactions here and would never do sometihg like this in production right? :-)
    Your trigger, as written, has some interesting side effects because of the automomous transaction. For example:
    SQL> INSERT INTO t VALUES(3, sysdate - 25);
    INSERT INTO t VALUES(3, sysdate - 25)
    ERROR at line 1:
    ORA-01403: no data found
    ORA-06512: at "OPS$ORACLE.T_AI", line 5
    ORA-04088: error during execution of trigger 'OPS$ORACLE.T_AI'
    SQL> UPDATE t SET id = 3 where trunc(dt) = TO_DATE('05-Sep-2009', 'dd-mon-yyyy');
    UPDATE t SET id = 3 where trunc(dt) = TO_DATE('05-Sep-2009', 'dd-mon-yyyy')
    ERROR at line 1:
    ORA-01403: no data found
    ORA-06512: at "OPS$ORACLE.T_AI", line 5
    ORA-04088: error during execution of trigger 'OPS$ORACLE.T_AI'John

  • IPhoto does not see any changes after editing a photo in Camera Raw

    Hello everyone ,
    I have some small problem with my iPhoto. I have set up Camer Raw in iPhoto as  External Editor, so when I click on edit in IPhoto,
    automatically opens my JPG in Camera Raw. After editing in Camera Raw I'm clicking on ,,Save image" then destination is ,,Save in same location" When I go back to iPhoto to the same photo, iPhoto does not show any changes I have made in Camera Raw. 
    What could it be or should I set something in iPhoto or in Camera Raw?
    Is there a chance in order to deal with this?
    I will be grateful for any assistance and
    I'm waiting for advice
    Dawid

    Any time a RAW file is edited in any 3rd party editor from within iPhoto it MUST be saved to the Desktop and imported as a new file. There's no other way to do it.  So the photos you've edited and saved are somewhere in the iPhoto Library folder system but cannot be recognized and used by iPhoto.
    The following is geared for Photoshop and Photoshop Elements but might have some info relevant for you:
    Using Photoshop CS3 or Photoshop Elements 9 as Your Editor of Choice in iPhoto.
    1 - select Photoshop as your editor of choice in iPhoto's Advanced Preference Section's under the "Edit photo:" menu.
    Click to view full size
    2 - double click on the thumbnail in iPhoto to open it in Photoshop.  When you're finished editing click on the Save button. If you immediately get the JPEG Options window make your selection (Baseline standard seems to be the most compatible jpeg format) and click on the OK button. Your done. 
    3 - however, if you get the navigation window
    Click to view full size
    that indicates that  PS wants to save it as a PS formatted file.  You'll need to either select JPEG from the menu and save (top image) or click on the desktop in the Navigation window (bottom image) and save it to the desktop for importing as a new photo.
    This method will let iPhoto know that the photo has been editied and will update the thumbnail file to reflect the edit..
    NOTE: With Photoshop Elements 9 the Saving File preferences should be configured as shown:
    Click to view full size
    s  I also suggest the Maximize PSD File Compatabilty be set to Always.  In PSE’s General preference pane set the Color Picker to Apple as shown:
    Click to view full size
    NOTE: If you want to use both iPhoto's editing mode and PS/PSE without having to go back and forth to the Preference pane, once you've selected PS as your editor of choice, reset the Preferences back to "Open in iPhoto".  That will let you either edit in iPhoto using the Edit button or Control-clicking on the thumbnail and selecting "Edit in iPhoto" or in PS/PSE by Control-clicking on the thumbnail and selecting "Edit in External Editor" in the Contextual menu.
    Click to view full size
    This way you get the best of both worlds.
    OT

  • Error: The system settings do not allow any changes

    Hi experts !!,
    I had installed SAP NetWeaver 2004s Sneak Preview-ABAP
    I am able to create database table using tcode: <b>SE11</b>
    but I get an error when I tried to create table entries
    <b>Error:</b>
    The system settings do not allow any changes
    Message no M0421
    <u><b>Diagnosis</b></u>
    The system settings (SE06 and SCC4) are such that you cannot make any changes to this table in this client
    Kindly help me to fix this issue !!
    Thanks,
    Prembabu R

    Hi,
    I had modified <b>Changes and Transports for Client-Specific Objects</b>
         -> <i>Automatic recording of changes (Option-selected)</i>
    Now I am able to add new entries to tables.
    Thanks for providing valuable information...
    ~Prembabu

  • Record about my phone (bought in Verizon store and connected to Verizon for 4 years) has been corrupted and now I can not make any changes to my data plan. Several sessions with the technical support and management have not resolved this issue. Each time

    Record about my phone (bought in Verizon store and connected to Verizon for 4 years) has been corrupted and now I can not make any changes to my data plan. Several sessions with the technical support and management have not resolved this issue. Each time technical people and top managers promised that this issue will be resolve tomorrow and they will cal me. Nothing happend!! I can not even cancel my service not just to upgrade it. Completely locked. 
    Any advice?
    Thanks.
    Alex.

    Cannot figure out what your talking about since it makes no sense.
    If you are the account owner you can go to the My Verizon web portal http://www.verizonwireless.com
    You must log in with your cell number and your my Verizon portal password. Not the account pin.
    Once there you can change your plan and services. However repeated incorrect login attempts will lock you out of the site. It a fraud prevention measure.
    1-800-922-0204 call support with your cell number and or account number and account pin and they can assist you.
    If you don't have the information then there is nothing they can do.
    If you can verify who you are they may be able to reset your account access. But only if you are the account owner.
    Good Luck

  • After years without a problem, I am suddenly unable to remote share my work computer at home.  I haven't done any updates recently and did not make any changes.  Anyone have any thoughts?

    After years without a problem, I am suddenly unable to remote share my work computer at home.  I haven't done any updates recently and did not make any changes to the setup.  It was working Monday night and stopped working Tuesday morning.  I am at a loss for what could have happened.   Anyone have any thoughts?

    it sounds like your work changed something on their network.  Try asking your IT people if they recently blocked any ports related to remote management or changed their firewall settings to block incoming connections.

  • I no longer receive notification or sound or even a badge app icon when receiving a text message, I have not made any changed to my sounds

    How do I fix this, I no longer receive notification or sound or even a badge app icon when receiving a text message, I have not made any changed to my sounds, I've checked all the settings and everything is good, I powered off the phone and restarted, I synced it and still nothing, can anyone help?

    Settings app > Notification Center > Messages (you will need to check both the INCLUDE and DO NOT INCLUDE sections). Set the alerts you wish to see.

  • Itunes is asking that I edit payment info, but will not accept any changes to allow me to purchase music? I have changed cards, reentered information, uninstalled and re-installed Itunes. Nothing is working, what do I need to do?

    Itunes is asking that I edit payment info, but will not accept any changes to allow me to purchase music? I have changed cards, reentered information, uninstalled and re-installed Itunes. Nothing is working, what do I need to do?

    See HT203206: iTunes for Windows Vista, Windows 7, or Windows 8: Fix unexpected quits or launch issues.
    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 the page in case one of them applies.
    The further information area has direct links to the current and recent builds in case you have problems downloading, need to revert to an older version or want to try the iTunes for Windows (64-bit - for older video cards) release as a workaround for installation or performance issues, or compatibility with QuickTime or third party software.
    Your library should be unaffected by these steps but there are also links to backup and recovery advice should it be needed.
    tt2

  • How to change the explain plan for currently running query?

    Hi All,
    I am using Oracle enterprise 9i edition. I have a query which frames dynamically and running in the database. I noticed a table with 31147758 rows
    in the query which has no indexes and taking more time to process. I tried to create an INdex on that table. I know the query is already running with a FULL table scan. Is it possible to change the explain plan for the current running query to consider the INDEX?
    [code]
    SELECT /*+ USE_HASH (c,e,b,a) */
    d.att_fcc extrt_prod_dim_id,
    d.att_fcc compr_prod_dim_id,
      a.glbl_uniq_id glbl_uniq_id,
      to_date(c.dit_code,'RRRRMMDD')STRT_DT,
      (to_date(c.dit_code,'RRRRMMDD')+150)END_DT,
      a.pat_nbr pat_id,
      a.rxer_id       rxer_id,
      e.rxer_geog_id  rxer_geog_id,
      a.pharmy_id pharmy_id,
      a.pscr_pack_id pscr_pack_id,
      a.dspnsd_pack_id dspnsd_pack_id,
      DENSE_RANK () OVER (PARTITION BY a.pat_nbr ORDER BY c.dit_code) daterank,
      COUNT( DISTINCT d.att_fcc ) OVER (PARTITION BY a.pat_nbr, c.dit_code) event_cnt
      DENSE_RANK () OVER (PARTITION BY a.pat_nbr,
    d.att_fcc
      ORDER BY c.dit_code) prodrank,
      DENSE_RANK () OVER (PARTITION BY a.pat_nbr,
    d.att_fcc
      ORDER BY c.dit_code DESC) stoprank
      FROM
      pd_dimitems c,
       pd_pack_attribs   d ,
        lrx_tmp_rxer_geog e,
        lrx_tmp_pat_daterank p,
        lrx_tmp_valid_fact_link     a
        WHERE c.dit_id = a.tm_id
        AND   e.rxer_id = a.rxer_id
        AND   a.glbl_uniq_id = p.glbl_uniq_id
        AND   p.daterank > 1
      AND   a.pscr_pack_id = d.att_dit_id
    [/code]
    The table lrx_tmp_pat_daterank is having that 31147758 rows. So I am wondering how to make the query to use the newly created index on the table?

    Why do you think using Indexes will improve the performance of the query? How many rows this query is returning? Optimizer might chose a Full table scan when it finds out that Index plan might not be useful. Why are you using /*+ USE_HASH (c,e,b,a) */ hint? This Hint will force oracle to use Full table scan instead of using the index. Try removing it and see if the plan changes.
    Regards,

  • LDAP sync is not updating any changes/deletion ?

    In our environment we have OIM 11.1.1.3 and we have enabled LDAP sync with OID. Any user created on OIM is getting synced to OID. The problem is when we are making any changes to the attributes of the users or deleting a user the change are not getting reflected back to OID. If someone can help or give proper pointers or guidance so that we can have a fully functional sync ?

    When you delete a user, they only get disabled.  There is a task called "Delayed Delete User" which will delete based on the value in the system configuration value "Period to Delay User Delete".  Try configuring this to 0 and then running the scheduled task to see if it deletes.
    For the attributes not being propagated, check the /db/LDAPUser file to see if the mappings exist for the attributes you are modifying.  In R1, there is the script which i have mentioned in this post, https://forums.oracle.com/message/10354064, for adding and removing mappings.
    -Kevin

  • Ipod not showing any changes in adding/deleting music

    Please help, I am so confused...I recieved an ipod from my husband this Christmas, I was given an ipod nano 2 generation 2 yrs ago. I had been doing fine w/ the other one, but now that we have been trying to get the new one I am not sure what's going on....hubby got it able to download the existing music that was already on the first ipod, but when adding on different music, or chsnging play lists around, no "changes" are seen even though it says it has sync and is finish syncing.....we got the new iPod's name added in.
    we thought we could just add on the new ipod and followed the differnt recommendations, but nothing helped....does anyone have any ideas for me? I am so frustrated...but at least I still have music on it from the other account and can use it that way....I am not very technical, so I hope this is making some sort of sense...thanks for any help you can give!

    With an average monitor what you see on-screen is already soft proofed to sRGB (or something very close to it), because that's all the monitor is capable of displaying anyway. So soft proofing to sRGB won't tell you anything. You won't see any difference.
    In Photoshop it sounds as if you assign profiles. That's not the way to do it. If you convert correctly you won't see any difference. Same principle as above: there may be clipping in the process, but what you see on screen is already clipped, so no visual on-screen difference.
    With a wide gamut monitor soft proofing becomes slightly more useful. But still you won't see any changes occurring outside Adobe RGB. You'll get a better idea by keeping an eye on the histogram. Ideally, all three channels should taper gently off towards the endpoints. If any one or two channels are backed solidly up against the endpoint, on either side, that's gamut clipping.
    If Blurb gave you a real profile, one that reflected their actual printing process, you could soft proof to that. But apparently they don't.

  • Changing color profile in Lightroom 5 Soft Proofing from ProPhotoRGB to sRGB is not showing any changes, changes in Photoshop CC are dramatic

    I am working with  the color profile ProPhoto RGB in both Lightroom 5 and Photoshop CC. In preparing for my first Blurb book I have tried to generate pictures in sRGB in Lightroom, using the Soft Proofing feature, but there are no changes at all. Then I transfer the same pictures into Photoshop, change the color profiles and the results are dramatically different.
    What can I do to achieve the same results in Lightroom

    With an average monitor what you see on-screen is already soft proofed to sRGB (or something very close to it), because that's all the monitor is capable of displaying anyway. So soft proofing to sRGB won't tell you anything. You won't see any difference.
    In Photoshop it sounds as if you assign profiles. That's not the way to do it. If you convert correctly you won't see any difference. Same principle as above: there may be clipping in the process, but what you see on screen is already clipped, so no visual on-screen difference.
    With a wide gamut monitor soft proofing becomes slightly more useful. But still you won't see any changes occurring outside Adobe RGB. You'll get a better idea by keeping an eye on the histogram. Ideally, all three channels should taper gently off towards the endpoints. If any one or two channels are backed solidly up against the endpoint, on either side, that's gamut clipping.
    If Blurb gave you a real profile, one that reflected their actual printing process, you could soft proof to that. But apparently they don't.

  • I photo8.1 not saving any changes I make to albums/events

    Since Thursday, any changes I have made in iphoto have not been saved. I've deleted lots of photos from an event (a recent holiday) and made a new album so I can share/export the photos easily.
    if i close iphoto and go back to it I find none of the changes have been made. The deleted photos are still in the event, and the album is empty. Any ideas on what I can do.
    Never had a problem before, I have just over 10000 photos in iphoto

    Sounds like your database is damaged.
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.
    Regards
    TD

Maybe you are looking for

  • Email text will not display

    I've recently noticed a problem where I can't get email text to display in my iPhone. Part of the text can be seen in the preview, but when I open the message, the entire message body is blank. When I download the email to my desktop computer or chec

  • Do Web Intelligence Support Linked Universes in BO XI 3.1 sp3

    Hi Folks! I know WebI in XIR2 doesnt support Linked Universes. So we used to build reports in Deski as we need to generate reports on liniked universe.(one core and three derived) now we are upgrading the version to Xi3.1 Sp3 and i am curious to know

  • Software restriction policy not working correctly

    Ladies and Gents, we run a windows server 2008r2 environment. we have a software restriction policy in place for quite some time now and it's been working fine until about a week ago. here's how we have it setup: Enforce = All Software files except l

  • Configuring PI during Integration of Cloud for Customer with ERP

    While trying to Integrate SAP Cloud for Customer with SAP ERP using PI, while configuring PI, we need to create a Technical and Business System in SLD for Cloud for Customer. During the Technical System configuration wizard, it asks for "Technical Sy

  • Process chain remains yellow even it is OK

    Hello, I have a process chain which contains many master data loadings. It can happen that when I log in the morning and check my process chain that have been executed during the night, I always have processes in yellow (not finished). However when I