Query caching issue with Toplink version 10.1.3.5.0

We are in the process of upgrading the toplink version from 9.0.4.7 to 10.1.3.5.0
We are finding an odd issue with insert statements generated for an aggregate collection mapping with addTargetForeignKeyFieldName.
We have a Table Ticket and Table Task with Table Activity as a child for both.
Table Ticket
Ticket_Key (PK)
Table B
Task_Key (PK)
Table C
Activity_Key (PK)
Task_Key (FK)
Ticket_Key(FK)
Notes
Version
Here are the mappings from
Ticket Project
AggregateCollectionMapping activitiesMapping = new AggregateCollectionMapping();
        activitiesMapping.setAttributeName("activities");
        activitiesMapping.setReferenceClass(com.common.Activity.class);
        activitiesMapping.dontUseIndirection();
activitiesMapping.privateOwnedRelationship();
        activitiesMapping.useCollectionClass(java.util.ArrayList.class);
        activitiesMapping.addTargetForeignKeyFieldName("ACTIVITY.TICKET_KEY", "TICKET.TICKET_KEY");
activitiesMapping.useBatchReading();
        descriptor.addMapping(activitiesMapping);
Task Project:
AggregateCollectionMapping activitiesMapping = new AggregateCollectionMapping();
        activitiesMapping.setAttributeName("activities");
        activitiesMapping.setReferenceClass(com.common.Activity.class);
        activitiesMapping.dontUseIndirection();
activitiesMapping.privateOwnedRelationship();
        activitiesMapping.useCollectionClass(java.util.ArrayList.class);
        activitiesMapping.addTargetForeignKeyFieldName("ACTIVITY.TASK_KEY", "TASK.TASK_KEY");
activitiesMapping.useBatchReading();
        descriptor.addMapping(activitiesMapping);
The tickets and tasks with activities gets inserted in the same transaction.
Here are the queries that what we get from the toplink version 9.x
2013-10-29 10:30:50,582  - SELECT SEQ_ACTIVITY.NEXTVAL FROM DUAL
2013-10-29 10:30:50,582  - INSERT  INTO ACTIVITY (TASK_KEY, VERSION, NOTES, ACTIVITY_KEY) VALUES (?, ?, ?, ?)
2013-10-29 10:30:50,582  - bind => [2900830, 0, Create Task, 8590870]
2013-10-29 10:30:50,926  - INSERT  INTO ACTIVITY (TICKET_KEY, VERSION, NOTES, ACTIVITY_KEY) VALUES (?, ?, ?, ?)
2013-10-29 10:30:50,926  - bind => [326450, 1, Created Ticket, 8590860]
Here are the queries generated from toplink version 10.x
2013-10-26 23:31:10,426   SELECT SEQ_ACTIVITY.NEXTVAL FROM DUAL
2013-10-26 23:31:10,430   INSERT INTO ACTIVITY (TASK_KEY, ACTIVITY_KEY,NOTES, VERSION) VALUES (?, ?, ?, ?)
2013-10-26 23:31:10,430   bind => [2900690, 8590500, Create Task, 0]
2013-10-26 23:31:10,509   INSERT INTO ACTIVITY (TASK_KEY, ACTIVITY_KEY, NOTES, VERSION) VALUES (?, ?, ?, ?)
2013-10-26 23:31:10,510   bind => [null, 8590490, Created Ticket, 1]
It appears like the new version of the toplink caching the prepared statements and it is not recognizing the targetForeignKeyFieldName mapping of the Ticket Project.
Any help in resolving this issue is appreciated.
Thanks

Hi James,
1)Yes it supports IE 8 .Please review the below link for certification details on browers :-
    http://www.oracle.com/technetwork/middleware/ias/downloads/as-certification-r2-101202-095871.html#BAJGCBEA
     Note: Oracle Application Server supports only those browsers.
2)Forms only support Windows 7 32 bit only.
    Please refer to the note:1292919.1 "Certification of Oracle Developer Suite 10g (10.1.2) on Windows 7 (32-bit)"
3)Could you provide more information of JVM because when you install 10gR2 it has JDK and JRE present in it.
Regards,
Prakash.

Similar Messages

  • Directory Caching issue with Cisco Jabber client for Windows

    Hi ,
    I am facing cache issue with Cisco Jabber client for Windows. If I do any change related to modification or deletion of contacts in Active Directory/ Callmanager, it does not reflect in the Jabber. Because jabber takes the contacts from the locally stored cache file in the Windows system.
    Every time I have to remove the cache file to overcome this issue, practically it's not possible to do the same with all the Widows users. As, if any employee leaves the company and still I can see his contact appears in the "Cisco Jabber client". I have not seen this issue with Android/Apple iOS.
    Is there any automated way to remove the cache file? 
    Here is the detail of CUCM,Presence and Jabber.
    CUCM version: 9.1.x
    Presence          : 9.1.X
    Jabber              : 10.5 and 10.6

    Hello
    On our environment we had to install a dedicated Microsoft Certificate Authority "just for Cisco Jabber usage" to house the
    Network Device Enrollment Service.
    Our certificate for the CUPS were generated on this Certification Authority too.
    I discussed this certificate matter with my colleagues this afternoon and nobody seems to remember how these certificates were deployed into the
    Enterprise Trust store for the users.
    But I think they asked all 400 users to accept the 3 certificates by answering "yes" to the popup instead of using a script deployed by GPO...
    I wish you success with that deployment and really hope you have a technical partner that *Knows* this subject.
    Our partner left us alone with that unfortunately.
    Florent
    EDIT: If the "Certutil script method" works, please let me know. This could be useful in our own deployment.

  • Having trouble with my Airport Utility not supporting either of my Airports Expresses or Basestation. Do i have to update Firmware of airports or is the issue with my version of Utility which i believe is the latest. Thank you.

    having trouble with my Airport Utility not supporting either of my Airports Expresses or Basestation. Do i have to update Firmware of airports or is the issue with my version of Utility which i believe is the latest. Thank you.

    AirPort Utility in Mountain Lion will not support the older versions of the AirPort Express.....model numbers A1084 and A1088. Check on the side of the Express for the model number.
    In addition, AirPort Utility in Mountain Lion will not support the older "round" or "dome" shaped versions of the AirPort Extreme.
    Can you check to see how your devices might be affected?

  • How can i get my ps 3.0 to install on my laptop ? compatibility issues with newer version of windows

    how can i get my ps 3.0 to install on my laptop ? compatibility issues with newer version of windows

    It's hopelessly outdated. It's simply not compatible.
    Mylenium

  • Issues with TopLink Cache Coordination using JMS for manual DB updates

    Hi,
    We are having 2 web application using same Database and Toplink library but 2 session objects for both the applications. We are using JMS for cache coordination. JMS propagating messages successfully between the applications and able to see the same object changes in both the applications properly. Now, we are trying to refresh cache for manual updates in Database. We are trying to refresh single object which is modified in database in one application, refreshing in one application from which refresh happened but not in other application (JMS publishing the topic but updating one).
    Our intention is refreshing in one application so that JMS should coordinate and update in others when DB manual updates. Please let us know any comments for the same.
    Database using: Oracle 11g
    Toplink Version:- 9.0.3

    See,
    http://www.coderanch.com/t/592919/ORM/databases/Toplink-Cache-coordination-JMS-manual

  • Sql query cache issue

    I am trying to see the log file in Manage sessions for the sql query in Answers. I see that if we run the same report multiple times, the sql query is showing up only the first time. Second time if I run it is not showing up. If I do a brand new report with diff columns picked it is giving me the sql then. Where do I set this option to show the sql query everytime I run a report even if it is the same report run multiple times. Is this caching issue?

    It shouldn't.... Have you unchecked the "Cache" on the physical layer for this table? If you go onto the Advanced tab, is the option "Bypass the Oracle BI cache" checked?

  • NullPointerException with Toplink version 9.0.4.4

    Dear All,
    We are using Toplink version 9.0.4.4 jar for one of our live application.
    Ours is a Java application connected to Oracle DB with the above mentioned toplink jar in the application server.
    Currently we are facing the following issue.
    java.lang.NullPointerException
    at oracle.toplink.mappings.DirectToFieldMapping.compareObjects(DirectToFieldMapping.java:154)
    at oracle.toplink.mappings.DirectToFieldMapping.compareForChange(DirectToFieldMapping.java:136)
    We are not facing this issue on all scenarios. But unable to figure our when this issue is triggered.
    From one of the forum we saw that version 9.0.4.5 might solve this issue.
    We tried replacing the jar but the result is not fruitful. We still have the issue.
    On higher end this is how our Objects are mapped.
    Database Side
    ==============
    Employee - Primary Table
    Employee Details - Secondary table with relation to Employee table.
              One to many relation with Employee
    Java Side
    ===========
    Employee.java
    EmployeeDetails.java
    Employee.java contains list of Employee Details.
    Process Flow
    ==============
    1. Read the Employee details from the Database. Employee Object is populated and the same is used to Display the details
    in the application screen
    2. User modified the Emplohyee details in the Screen
    3. Build EmployeeAmendDTO from Employee Object along with the modified data from Screen using HTTPRequest object
    4. Read the Employee Object again from the DB and register it for Update.
    5. Logic has been written in Java to check EmployeeAmendDTO against Employee Object and populate Employee Object with
    additional information from the EmployeeAmendDTO.
    6. In this process the EmployeeDetails List within the Employee Object is also set.
         Code snippet from Employee Object
         EmployeeDetailsList.add(EmployeeDetails);
         EmployeeDetails.setEmployee(this);
    7. Employee Object which is registed for update should update the records.
    The code works very fine while we comment the EmployeeDetailsList.add(EmployeeDetails); code in java.
    But this is very much required as we need to save the Employee Details as well.
    Below is the relationship maintained for Employee and EmployeeDetails in Toplink.
    In Employee the EmployeeDetails are set in one-to-many relations where Bidirectional Relationship is enabled. In the EmployeeDetails bidirectional relationship is not enabled for EmployeeHolder which is holder for the Employeeobject.
    Note:- The application is in use since 2005 and we have just modified few code here and there to include new parametes to
    the Employee and EmployeeDetails.

    Hello,
    9.0.4.x is rather old and I'd recommend trying a later version such as 10 or 11 if possible. I'd also recommend filing a support case as they will probably need to go through the old and new mappings and the details of how you are building Employee and EmployeeDetails objects from EmployeeAmendDTO, which would be difficult to look at through a forum post.
    What will be needed is the full stack, the portion of the log that shows the app first reading in Employee and then trying to commit the changes with logging on finest (if possible). The error hopefully shows the mapings involved in the problem that may issolate which objects will need to be looked at.
    Best Regards,
    Chris

  • BW 3.5, BEx Query designer issue with text of the characteristics

    Hi All,
    We are currently using BEx 3.5 Query Designer to design the queries. We have one of the ODS on which we are querying for.
    We have 3 different types of Customer in this ODS. 0Customer, 0BBP_CUSTOMER and 0GN_CUSTOMER. The problem is when we open this ODS in Query designer we see their text name on the left hand side column where it shows data fields as the same text name Customer.
    Now the our Power users have raised the issue that it is very confusing even when there are 3 different technical names for these characteristics.
    2 Questions I have.
    1) Why is something like this happening? is it some issue with the Patch or something. We will be migrating to new BI soon but in the mean time if I could resolve it that will be the best. Or does it even get resolved with new BI???
    2) what is the way in which we can resolve it?
    Thanks in advance and points will be given generously.

    HI BI Consul!
    Things like this happen, when it is called customer it could be different customers, 0customer is the standard R/3 customer and 0BBP_customer is objects from CRM and most likely 0GN_Customer might be customer from different system.
    Sure, power users should be told which customer is customer and you could also change the discription of the object, to match the definition on the other system. You could also just create z object and replace the existing confusing object with something meaningful to users.
    thanks.
    Wond

  • Using "Restrict by app" in change query causes issues with Search Results

    Hello!
    I am hoping some experienced SP admin can help me out. I am having issues with the relevance ranking for my search results web part.
    I created a Wiki (OOTB) within a site collection and on the home page of the Wiki I was looking to apply a Search Box and Search Results web part for easy searching. I wanted to ensure the search results were restricted to the scope of the pages within the
    wiki. I did the following after adding the 2 web parts:
    Entered edit mode for the page
    Started to edit the Search Results web part
    Under Properties for Search Results clicked on "Change Query"
    Navigated to BASICS and clicked "Switch to Quick Mode"
    For Select Query, picked "Wiki (System)" option
    For Restrict by app, picked "Specify a URL" and input the wiki URL "http://webapp.com/sites/sitecollection/wiki"
    Click OK
    The web part has 6 automatic results when I hit the page. These are the only 6 pages in my wiki. When I search a word or title of a page, they are not ranked in order or relevance. The ordering is static to what was being shown before the search, but the
    keywords I'm searching are bold. With out the taking the steps above, I can easily search these pages and have them ranked appropriately so I'm not too sure what I'm doing wrong. 
    Other Details
    The pages have been crawled and can be searched from anywhere else in SP.
    I am only a site collection admin for this specific site collection.
    I other than the steps above, I have not made any changes or customization to the search web parts; they are both out of the box SP.
    The SP Farm admin we unable to pin point what the root cause is either.

    Hi Mikael,
    Sorry for the wait, I was unable to post pictures, which i felt would better describe my issue.
    Could you output the query template you are ending up with?
    If you can tell me how to accomplish this, then I can provide it. Please keep in mind that I am only a site collection admin.
    Also, is the ranking/sorting for your webpart set to ranking?
    When looking at the web part settings, I didn't see an option to modify the ranking. Unfortunately, some sites in my intranet are down now so I can't even double check. Once it's back up, I will verify this as well.
    And how do you know they are ranked incorrectly?
    I wanted to display an image showing what I meant by this. As the wiki is down, I'll do my best with words. When I visit the wiki home page, I already have the search and search results web parts there. Without searching anything, the search results
    web part displays 6 pages that are available in the wiki. When I search, I expect to see the most relevant result at the top. similar to the following: 
    *Search result from another section of the intranet site.*
    What I receive instead is the same list of wiki pages, in the same order. The most relevant result
    is not moved to the top like in the image above, but I can see that the word "rush" is highlighted in bold. I hope this helps.
    If you need more of a description, please let me know.
    Thank you

  • Caching issue with VO

    Hi,
    I deployed my OAF application on the server, things work as expected. I made a change to the VO select statement. I put the VO xml, new file on the server.
    I have cleared the cache in R12 using the caching framework, bounced Apache.
    I still see the old select getting executed for the VO. I could confirm this using "About this page".
    Can someone please tell me what am I missing?

    Did you copy the *.class file for your VO over to the server? I've made that mistake many times.
    Maybe you can help me out while you're at it. Are you using a profile option to disable caching of your VOs? I'm on 11i EBS and having issues with cached VO data. Do you mind telling me how you're disabling the cache?

  • Is anyone having issues with Android version 4.3 for Galaxy III throwing in zeroes into text messages?

    I received a message on Christmas Eve that a free update was available for my Samsung Galaxy III.  I accepted the download and discovered some enhancements and fixes that I liked (finally, my voicemail icon displays the number of waiting voicemails that I have!) but I've noticed to glaring issues:
    1. When I send text messages that include numbers (a phone number for example) the OS throws in random zeroes into the number.  I have to usually touch the ENTER key and type the number on a new line and play around with it until the number stays in the message correctly.
    2. I've had occasional lockups using the media hub which, when I do a restart, causes my settings to revert to the default factory settings....kind of a pain.
    There may be other issues. 
    Q. Has anyone out there experienced this same thing?
    Q. Is Google going to fix these issues?  I noticed that on Christmas day a half dozen or so updates were made, but these to things still are a problem. 
    Q. Also, the Verizon Wireless Software Upgrade Assistant on my laptop insists that my version is not supported.  I can still access photos and music, but it's a little annoying...

        I'm sorry you're having issues with your phone after your update BigLouie1124. I recommend enabling safe mode to see if any of your apps are causing issues with your new software. If so, you can remove them. Here are the steps http://vz.to/1cD0kqT . If you continue to have issues the last step would be a factory reset to clear up some of your issues http://vz.to/JCsr33 . Please keep us posted and continue to clear unwanted message threads and clear your browser history periodically.
    KinquanaH_VZW
    Follow us on Twitter @vzwsupport

  • Issues with newer version of Acrobat Reader

    I'm not looking for advice or a fix for this problem. I'm simply posting it so that hopefully, the folks at Adobe will get a clue & take the issues with their software seriously. The real fix here is for them to quit ignoring bugs in their software and correct the code. Anyway...
    In the most recent versions of Acrobat Reader (looks like specifically to X & XI), it seems to be hit or miss as to whether Reader will open PDF attachments in Outlook email. Typically, when I double-click on a PDF attachment, nothing happens. An instance of AcroRd32.exe is created as a process (which hangs), but the PDF file doesn't open. If I make the mistake of double-clicking on the file again, another instance of AcroRd32.exe sucks up more of my system resources. This will occur for each time I double-click on the attachment. Sometimes I get lucky, and it will open the PDF file. Sometimes, if I right-click on the attachment and select open, it will do so. Most times, it just does the same thing as double-clicking.
    I've scoured the forums, searched online... Lots of people have reported this or similar problems. Solutions have been offered up, which don't work for most users. etc., etc., etc.
    It's just like the issue that Adobe has had for years with Acrobat - The software is notorious for remaining in memory as a process, long after you've closed the PDF file you opened. And likewise, for each PDF file you open, yet another instance of the software loads into & consumes memory.
    Adobe has had problems like this for years. They never have taken it seriously, they never choose to fix it.
    So, as I said in the beginning of the post - I'm not looking for a fix. I came up with my own fix - I deleted version XI, located an old copy of 9.4 & installed it.
    Nope, I'm not looking for solutions or support. I simply wanted to ***** about it.
    Doubt Adobe will even notice the post, and if they do, they'll just operate like they always have... Hope that their sloppy code just magically fixes itself.

    This is a user forum, and not the place to file bug reports to Adobe.  So you are right: your post won't be noticed by the Acrobat developers.  Nor would it give them enough information to reproduce the problem.
    P.S. I never had a problem opening Outlook attachments with Adobe Reader.  If I had, I would start by disabling Protected Mode, which is the most common cause for a multitude of problems in Adobe Reader.

  • ISSUE WITH NEW VERSION OF BLACKBERRY MESSENGER ON DIFFERENT BLACKBERRY PHONES

    Dear Madam / Sirs,
    I would like to seek assistance in resolving an issue with my BLACKBERRY TORCH 9810 I installed the new version of BLACKBERRY MESSENGER on my phone and it does not work on WIFI ONLY MODE.
    For example I traveled to Mexico and Panama and was on a WIFI ZONE with open access and tried to use my BLACKBERRY MESSENGER and it did not work...I tried to deleting the application and installing a previous version but was not possible. The same issue occurs on a different BLACKBERRY phone that it was working perfectly...but after updating to the new version of BLACKBERRY MESSENGER it did not work.
    Please help me resolve this issue.
    Thanks in advance
    Polk Marin
    E-mail: (personal info removed)@yahoo.com

    and what version do you have installed? I dont see this on ver 6.2.0.56
    Click here to Backup the data on your BlackBerry Device! It's important, and FREE!
    Click "Accept as Solution" if your problem is solved. To give thanks, click thumbs up
    Click to search the Knowledge Base at BTSC and click to Read The Fabulous Manuals
    BESAdmin's, please make a signature with your BES environment info.
    SIM Free BlackBerry Unlocking FAQ
    Follow me on Twitter @knottyrope
    Want to thank me? Buy my KnottyRope App here
    BES 12 and BES 5.0.4 with Exchange 2010 and SQL 2012 Hyper V

  • Issues with Mac Version of Adobe Captivate 6

    I am having issues with Adobe Captivate 6 for Mac.  I am missing functionality.  Specifically the advanced actions dialog box.  I get "null" value in all the fields in the dialog box.  Also when I open captivate the welcome screen is blank.  I tried uninstalling and re-installing but I am still having the same issues.  Am I missing something on the install?  Has anyone else experienced these issues?

    Hi,
    Did it worked fine previously? Can share some more information like your Mac version?
    Can you share the screenshot of the problem screens?
    Also, Try to follow these steps, to verify in case your Preferences have not gone corrupted--
    1) Close Captivate
    2) Launch Finder
    3) Go -- Go to Location
    4) ~/Library -- Go to Preference>Adobe> Adobe Captivate 6, Rename the Folder to 'Adobe Captivate 6_Old '
    5) Relaunch Captivate and verify if thing improve.
    Thanks,
    Anjaneai

  • I am having issues with new version of Final Cut Pro, is there away to download the last version so I can finish my projects?

    I am having major issues with the new version of Final Cut x, I have missing clips and my computer is locking up, I need to finish some projects so is there away to go back to the last version before the new update?

    Not unless you have saved a copy of the previous version; also, any libraries that you have updated to use in the newer version will not be usable in the older version anyway.
    Rather than going back you should try and figure out what is wrong. The current version works great for most users. Start by clearing your preferences: hold down command and option keys while starting FCP X, and confirm when asked. Many different issues can often be solved by just that.
    In case it doesn't solve, please provide more detailed information like OS version, Ram, drive and connection, etc

Maybe you are looking for