Error # 3021 - Invalid Relation. --- MS Access to Oracle APEX

Hello everybody.
I have 3 years working with Oracle APEX and now I have the need to migrate an Access database to Oracle and APEX.
I have:
- MS Access 2003 database
- Oracle SQL Developer 3.0.04.34
- Oracle 10g Database
I will try to provide all the relevant information.
I used the Access Exporter for Access 2003 tool from Oracle SQL Developer to creat both .xml (for SQL Dev) file and .sql file (for APEX) but the process show me an error mesassge that said: "Error # 3021 - Invalid Relation. No current record".
I read in OTN forum that it was because the migration tool can not access the system tables and that I need to modify permisions to allow "Read Data". I did this process and I was able to create .xml file, however if I chose Application Express to create .sql file or the option to create both files the same error shows.
I have been reading in this forum but didn't find a way to solve it.
Does any body knows how to solve this issue?
Any help is appreciated.
Thanks in advance for your help.

Hello,
I can't reproduce your issue.
Have you double-checked that the tables MSysAccessObjects, MSysACEs, MSysObjects, MSysQueries and MSysRelationships are visible and that the Admin user has at least Read Design and Read Data permission on those tables?
If that is the case, and the problem still happens, and you are able to give a copy of your .mdb file to Oracle, then I suggest to open a Service Request with Oracle Support so that the issue can be investigated.
Regards
Wolfgang

Similar Messages

  • Error 3021 - Invalid relation. No current record

    I'm trying to import a Microsoft Access database into Oracle 10g Express using SQL developer Microsoft Access Exporter and I get the above error. How can I find out what it's talking about so I can fix it?

    Hi,
    As part of your pre-export steps, did you run the MS Access Documenter facility, which can assist in identifying any erroneous or invalid objects within your MDB file? This facility is available via the Tools > Analyze > Documenter menu item. When running that tool, ensure that you have selected the "Relationships" checkbox on the "All Object Types" tab. You should resolve/remove any erroneous objects prior to running the Exporter tool. If you have done so, but still experience issues with your export, please let me know.
    Regards,
    Hilary

  • Form Error Message: Invalid relation attribute on pageSet xfa

    Hi,
    I've developed a form that many folks are using without any issues. However, I do have a small number of users that get the following error message when opening the form.
    Error Message:  Invalid relation attribute on pageSet xfa[0].template[0].form1[0].#pageSet[0]
    This error only appears to come up if they are using Adobe Acrobat Pro Version 8. No issues on versions 9 or 10 (X). The form is suppose to be compatible back to version 7.
    My main form is called (form1). Then there are 4 major sub forms under (form1), The top drop down (on the masterpage) hides or displays one of the major sub forms based on user selection.
    I have a hunch that something with the generated code not jiving well with Acrobat 8.
    Here's a snippet of the code if you'd like to look through it.
    form1.#pageSet[0].MasterPage1.FormActionDropDown::change - (JavaScript, client)
    //+ GENERATED - DO NOT EDIT (ID:D2FF16C4-6D1F-45D4-ACB7-0DB7CE14229F CRC:3650232787)
    //+ Type: Action
    //+ Result4: SetPresence("$Node5","hidden")
    //+ Result3: SetPresence("$Node4","visible")
    //+ Result2: SetPresence("$Node3","hidden")
    //+ Result1: SetPresence("$Node2","hidden")
    //+ Node5: form1[0].ChangePAForm[0]
    //+ Node4: form1[0].Non-PAForm[0]
    //+ Node3: form1[0].DeletePAForm[0]
    //+ Node2: form1[0].PAForm[0]
    //+ Node1: form1[0].#pageSet[0].MasterPage1[0].FormActionDropDown[0]
    //+ Condition1: ListField("$Node1","textselected","ADD NON-PA User")
    //+ ActionName: DropDown.change.NonPA
    if ($.boundItem(xfa.event.newText) == "ADD NON-PA User") {
      this.resolveNode("PAForm").presence = "hidden";
      this.resolveNode("DeletePAForm").presence = "hidden";
      this.resolveNode("Non-PAForm").presence = "visible";
      this.resolveNode("ChangePAForm").presence = "hidden";
    //+ GENERATED - DO NOT EDIT (ID:662A28BD-A30A-4E6D-92CD-6FF22B0EFB5D CRC:2945493746)
    //+ Type: Action
    //+ Result4: SetPresence("$Node5","hidden")
    //+ Result3: SetPresence("$Node4","hidden")
    //+ Result2: SetPresence("$Node3","visible")
    //+ Result1: SetPresence("$Node2","hidden")
    //+ Node5: form1[0].ChangePAForm[0]
    //+ Node4: form1[0].Non-PAForm[0]
    //+ Node3: form1[0].DeletePAForm[0]
    //+ Node2: form1[0].PAForm[0]
    //+ Node1: form1[0].#pageSet[0].MasterPage1[0].FormActionDropDown[0]
    //+ Condition1: ListField("$Node1","textselected","DELETE EXISTING PA")
    //+ ActionName: DropDown.change.DeletePA
    if ($.boundItem(xfa.event.newText) == "DELETE EXISTING PA") {
      this.resolveNode("PAForm").presence = "hidden";
      this.resolveNode("DeletePAForm").presence = "visible";
      this.resolveNode("Non-PAForm").presence = "hidden";
      this.resolveNode("ChangePAForm").presence = "hidden";
    //+ GENERATED - DO NOT EDIT (ID:66B7091F-75C5-4A73-8ACA-885AE42D0308 CRC:2169512649)
    //+ Type: Action
    //+ Result4: SetPresence("$Node5","visible")
    //+ Result3: SetPresence("$Node4","hidden")
    //+ Result2: SetPresence("$Node3","hidden")
    //+ Result1: SetPresence("$Node2","hidden")
    //+ Node5: form1[0].ChangePAForm[0]
    //+ Node4: form1[0].Non-PAForm[0]
    //+ Node3: form1[0].DeletePAForm[0]
    //+ Node2: form1[0].PAForm[0]
    //+ Node1: form1[0].#pageSet[0].MasterPage1[0].FormActionDropDown[0]
    //+ Condition1: ListField("$Node1","textselected","CHANGE / MODIFY EXISTING PA")
    //+ ActionName: DropDown.change.ChangePa
    if ($.boundItem(xfa.event.newText) == "CHANGE / MODIFY EXISTING PA") {
      this.resolveNode("PAForm").presence = "hidden";
      this.resolveNode("DeletePAForm").presence = "hidden";
      this.resolveNode("Non-PAForm").presence = "hidden";
      this.resolveNode("ChangePAForm").presence = "visible";
    //+ GENERATED - DO NOT EDIT (ID:C87B58DB-765D-426C-81BB-5A7ECFF42B63 CRC:2949030955)
    //+ Type: Action
    //+ Result4: SetPresence("$Node5","hidden")
    //+ Result3: SetPresence("$Node4","hidden")
    //+ Result2: SetPresence("$Node3","hidden")
    //+ Result1: SetPresence("$Node2","visible")
    //+ Node5: form1[0].ChangePAForm[0]
    //+ Node4: form1[0].Non-PAForm[0]
    //+ Node3: form1[0].DeletePAForm[0]
    //+ Node2: form1[0].PAForm[0]
    //+ Node1: form1[0].#pageSet[0].MasterPage1[0].FormActionDropDown[0]
    //+ Condition1: ListField("$Node1","textselected","CREATE NEW PA")
    //+ ActionName: DropDown.change.NewPA
    if ($.boundItem(xfa.event.newText) == "CREATE NEW PA") {
      this.resolveNode("PAForm").presence = "visible";
      this.resolveNode("DeletePAForm").presence = "hidden";
      this.resolveNode("Non-PAForm").presence = "hidden";
      this.resolveNode("ChangePAForm").presence = "hidden";

    You should post this question in the LiveCycle Designer forum here. This forum is for forms created in Acrobat (Acroforms).

  • Error Message: Invalid relation attribute on pageSet xfa

    Hi,
    Searching through the forums and on the net, I cannot seem to locate an answer to this problem so I'm trying here...
    I've developed a form that many folks are using without any issues. However, I do have a small number of users that get the following error message when opening the form.
    Error Message:  Invalid relation attribute on pageSet xfa[0].template[0].form1[0].#pageSet[0]
    This error only appears to come up if they are using Adobe Acrobat Pro Version 8. No issues on versions 9 or 10 (X). The form is suppose to be compatible back to version 7.
    My main form is called (form1). Then there are 4 major sub forms under (form1), The top drop down (on the MasterPage1) hides or displays one of the major sub forms based on user selection.
    I have a hunch that something with the generated code not jiving well with Acrobat 8.
    Here's a snippet of the code if you'd like to look through it.
    form1.#pageSet[0].MasterPage1.FormActionDropDown::change - (JavaScript, client)
    //+ GENERATED - DO NOT EDIT (ID:D2FF16C4-6D1F-45D4-ACB7-0DB7CE14229F CRC:3650232787)
    //+ Type: Action
    //+ Result4: SetPresence("$Node5","hidden")
    //+ Result3: SetPresence("$Node4","visible")
    //+ Result2: SetPresence("$Node3","hidden")
    //+ Result1: SetPresence("$Node2","hidden")
    //+ Node5: form1[0].ChangePAForm[0]
    //+ Node4: form1[0].Non-PAForm[0]
    //+ Node3: form1[0].DeletePAForm[0]
    //+ Node2: form1[0].PAForm[0]
    //+ Node1: form1[0].#pageSet[0].MasterPage1[0].FormActionDropDown[0]
    //+ Condition1: ListField("$Node1","textselected","ADD NON-PA User")
    //+ ActionName: DropDown.change.NonPA
    if ($.boundItem(xfa.event.newText) == "ADD NON-PA User") {
      this.resolveNode("PAForm").presence = "hidden";
      this.resolveNode("DeletePAForm").presence = "hidden";
      this.resolveNode("Non-PAForm").presence = "visible";
      this.resolveNode("ChangePAForm").presence = "hidden";
    //+ GENERATED - DO NOT EDIT (ID:662A28BD-A30A-4E6D-92CD-6FF22B0EFB5D CRC:2945493746)
    //+ Type: Action
    //+ Result4: SetPresence("$Node5","hidden")
    //+ Result3: SetPresence("$Node4","hidden")
    //+ Result2: SetPresence("$Node3","visible")
    //+ Result1: SetPresence("$Node2","hidden")
    //+ Node5: form1[0].ChangePAForm[0]
    //+ Node4: form1[0].Non-PAForm[0]
    //+ Node3: form1[0].DeletePAForm[0]
    //+ Node2: form1[0].PAForm[0]
    //+ Node1: form1[0].#pageSet[0].MasterPage1[0].FormActionDropDown[0]
    //+ Condition1: ListField("$Node1","textselected","DELETE EXISTING PA")
    //+ ActionName: DropDown.change.DeletePA
    if ($.boundItem(xfa.event.newText) == "DELETE EXISTING PA") {
      this.resolveNode("PAForm").presence = "hidden";
      this.resolveNode("DeletePAForm").presence = "visible";
      this.resolveNode("Non-PAForm").presence = "hidden";
      this.resolveNode("ChangePAForm").presence = "hidden";
    //+ GENERATED - DO NOT EDIT (ID:66B7091F-75C5-4A73-8ACA-885AE42D0308 CRC:2169512649)
    //+ Type: Action
    //+ Result4: SetPresence("$Node5","visible")
    //+ Result3: SetPresence("$Node4","hidden")
    //+ Result2: SetPresence("$Node3","hidden")
    //+ Result1: SetPresence("$Node2","hidden")
    //+ Node5: form1[0].ChangePAForm[0]
    //+ Node4: form1[0].Non-PAForm[0]
    //+ Node3: form1[0].DeletePAForm[0]
    //+ Node2: form1[0].PAForm[0]
    //+ Node1: form1[0].#pageSet[0].MasterPage1[0].FormActionDropDown[0]
    //+ Condition1: ListField("$Node1","textselected","CHANGE / MODIFY EXISTING PA")
    //+ ActionName: DropDown.change.ChangePa
    if ($.boundItem(xfa.event.newText) == "CHANGE / MODIFY EXISTING PA") {
      this.resolveNode("PAForm").presence = "hidden";
      this.resolveNode("DeletePAForm").presence = "hidden";
      this.resolveNode("Non-PAForm").presence = "hidden";
      this.resolveNode("ChangePAForm").presence = "visible";
    //+ GENERATED - DO NOT EDIT (ID:C87B58DB-765D-426C-81BB-5A7ECFF42B63 CRC:2949030955)
    //+ Type: Action
    //+ Result4: SetPresence("$Node5","hidden")
    //+ Result3: SetPresence("$Node4","hidden")
    //+ Result2: SetPresence("$Node3","hidden")
    //+ Result1: SetPresence("$Node2","visible")
    //+ Node5: form1[0].ChangePAForm[0]
    //+ Node4: form1[0].Non-PAForm[0]
    //+ Node3: form1[0].DeletePAForm[0]
    //+ Node2: form1[0].PAForm[0]
    //+ Node1: form1[0].#pageSet[0].MasterPage1[0].FormActionDropDown[0]
    //+ Condition1: ListField("$Node1","textselected","CREATE NEW PA")
    //+ ActionName: DropDown.change.NewPA
    if ($.boundItem(xfa.event.newText) == "CREATE NEW PA") {
      this.resolveNode("PAForm").presence = "visible";
      this.resolveNode("DeletePAForm").presence = "hidden";
      this.resolveNode("Non-PAForm").presence = "hidden";
      this.resolveNode("ChangePAForm").presence = "hidden";

    You should post this question in the LiveCycle Designer forum here. This forum is for forms created in Acrobat (Acroforms).

  • Installation error  : You have read-only access to oracle inventory

    Hi guys,
    In some versions of Linux eg. Fedora, Ubuntu .. whenever I am installing Hyperion products I get this error " You have read-only access to oracle inventory". and also the thing worth noticing is, if this error comes Oracle doesn't install " OpenLDAP" which is required to run shared services.
    With Oracle Enterprise Linux, and everything seems to be fine. and I didn't got the above error also OpenLDAP gets installed.
    any help would be appreciated. attached is the screen shot for the error.
    [https://docs.google.com/leaf?id=0BwB5xiYJ_HGwMDZkNjQ1OTEtMDg4Zi00NGM3LTk5NDAtYzE1ZmJkZTcyMzU0&hl=en]
    Thanks

    HI,
    1. This would be handy
    http://www.oracle.com/technology/products/bi/hyperion-supported-platforms.html
    2. In case OS is not supporting , you ll end up spending lot of time , and am sure openLDAP will trip time and again.
    Sandeep Reddy Enti
    HCC
    http://hyperionconsultancy.com/

  • Migration MS ACCESS to Oracle ApEX

    Hi All,
    We have just started with migration MS ACCESS 2000 based application to Oracle Database(10...),front end being ApEX 3.0 now.
    After first migration of application today i noticed that All Queries(129 total) are invalid.Analysys shows that Query coming to Oracle is similar to that in MS ACCESS and no views have been created e.g.:
    MS ACCESS query:
    SELECT [ClientPricing_History].[ClientID], [Client List].[ClientAbbrev], Last([ClientPricing_History].[EffectiveStart]) AS LastOfEffectiveStart, Last([ClientPricing_History].[EffectiveEnd]) AS LastOfEffectiveEnd
    FROM ClientPricing_History INNER JOIN [Client List] ON [ClientPricing_History].[ClientID]=[Client List].[ClientID]
    GROUP BY [ClientPricing_History].[ClientID], [Client List].[ClientAbbrev];
    The same query comes in Oracle,as we know that symbols like '[' or ']' are not supported by Oracle.
    Secondly no views have been created and thridly many MS ACCES funciton like 'LAST()' are not supported in Oracle.
    Can some one Give the initial inputs that how to correct them automatically rhater thna taking Manual steps to correct each of the 129 queris manually.?
    Many thx....

    Hi
    In the Migration work bench log file we see the following errors,resulting in failure of migration of access queries into Oracle views:
    Failed To Convert View qProposalMaintenance_DeleteScenario > 2008-BLUEBOOK-db-2.qProposalMaintenance_DeleteScenario:unexpected AST node: EXEC_PARAM_LIST: Line -1 Column -1
    Failed To Convert View qPricePoint_StdTierPrices_Filter > 2008-BLUEBOOK-db-2.qPricePoint_StdTierPrices_Filter:unexpected end of subtree: Line 0 Column 0
    Failed To Convert View qDictionary_2004_CPI_Update > 2008-BLUEBOOK-db-2.qDictionary_2004_CPI_Update:Can't find template TSQL_insertStatement.st
    Translation limitation 'Forms' encountered on View 2008-BLUEBOOK-db-2.qProposalDev_Offerings line 2 column 50

  • The java class is not found:  oracle.apex.APEXExport

    Hi,
    when i run java oracle.apex.APEXExport
    i have the error
    The java class is not found: oracle.apex.APEXExport
    CLASSPATH=/opt/ora/admin/Apex_Backup/class/classes12.zip:/opt/ora/admin/Apex_Backup/APEXExport.class
    also
    CLASSPATH=/opt/ora/admin/Apex_Backup/class/classes12.zip
    causes the error
    Can somebody help he out of this?

    Hello,
    Take a look at my blog post on Backing Up Your Applications, available here -
    http://jes.blogs.shellprompt.net/2006/12/12/backing-up-your-applications/
    I run through all the steps you need to do to get it working.
    Hope this helps,
    John.
    Blog: http://jes.blogs.shellprompt.net
    Work: http://www.apex-evangelists.com
    Author of Pro Application Express: http://tinyurl.com/3gu7cd
    REWARDS: Please remember to mark helpful or correct posts on the forum, not just for my answers but for everyone!

  • Migration Error from Access to Oracle through SQL Developer.

    Hi,
    Actually I am trying to migrate data from MS Access 2002 to Oracle 9i database through the SQL Developer. But Whenever I go to Capture Database from Access it will show me an error.... Invalid procedure Call and then it shows an error message... >>>>>>
    ShowSplashScreen("_OracleSplashScreen",3)
    after that i wont be able to do this task anymore..... So please help me get out of it... How Cam I Maigrate data from Access to Oracle 9i...
    Is any other tool i use or you can help me for this tool to migrate date...
    Please tell me..
    If yu can send me a mail then mail me on [email protected]
    regards,
    Vishal

    Hi Vishal,
    I have responded to your related thread on the Migration Workbench forum - Migration Error from Access to Oracle through SQL Developer.
    Regards,
    Hilary

  • Error after accessing to Oracle BI Spreadsheet Add-in

    Dear all,
    I downloaded Oracle Database 10g Express Edition (version 10.2.0.1. Beta) and I installed it successfully. I created a new account. Then I downloaded Oracle Business Intelligence Spreadsheet Add-in (version 10.1.2.1) and I installed it successfully as well (both on my PC).
    Now I would like to run Oracle Business Intelligence Spreadsheet Add-in but I don't know the way of running it. I click "New query". Then I go to the "Connection editor". There are four boxes.
    "Description box" is clear. I write 127.0.0.1 or k219 (it's the name of my computer) into the "Host name box". As the "Port Number box" I use 1521. Then I write xe into the "SID box".
    Then I return to the "OLAP connection tab". There are items: user name and password. I try to write user name and password created in Oracle Database 10g Express Edition. And the result is an error:
    Faild to connect to OLAP service
    BIB-10701 An error occured during connecting to metadata
    oracle.dss.metadataManager.common.MetadataManagerException: BIB-10701 An error occured during connecting to the database
    oracle.dss.connection.common.ConnectionException: BIB-16627 It's not possible to connect to the databse
    java.sql.SQLException: ORA-06550: line 1, column 13:
    PLS-00201: identifier 'OLAPIBOOTSTRAP' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    I went through other questions related to BI Spreadsheet Add-In and I could see that people were talking about another programs and modules needed for successfull running.
    So should I install another modules e.g. Warehouse Builder?
    Please, is there anyone who can help me?
    Your user Frank

    Hello,
    I went through the same process as user484588, and received the same results.
    I have some Access/Excel VBA programs that I use to verify the results of an Essbase cube. Having worked with Oracle products quite a bit in the past, I am reviewing Oracle XE to possibly replace them. The database and forms writer components of XE looks pretty cool, but I need a lot more in the way of report writer.
    I have connected Excel to the XE database using Data/Import External Data, but that's no better than my current Access/Excel implementation.
    Are there any other reporting tools available for use with XE?
    Bill

  • Error: cannot access class oracle.security.jazn.realm.RealmUser

    Hi,
    I try to compile this simple jsp, which use jpdkv2, with jdeveloper 9i.
    But I obtain this error:
    Error: cannot access class oracle.security.jazn.realm.RealmUser; file oracle\security\jazn\realm\RealmUser.class not found
    Someone has an idea ?
    Source code of my jsp:
    <%@ page contentType="text/html;charset=windows-1252"%>
    <%@page import = "oracle.portal.provider.v2.render.PortletRenderRequest" %>
    <%@page import = "oracle.portal.provider.v2.http.HttpCommonConstants" %>
    <%
    PortletRenderRequest portletRequest = (PortletRenderRequest)
    request.getAttribute(HttpCommonConstants.PORTLET_RENDER_REQUEST);
    %>
    <HTML>
    <HEAD>
    <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-1252">
    <TITLE>
    Hello World
    </TITLE>
    </HEAD>
    <BODY>
    <H2>
    The current time is:
    </H2>
    <P>
    <% out.println((new java.util.Date()).toString()); %>
    </P>
    <P>Hello: <%= portletRequest.getUser().getName() %></P>
    </BODY>
    </HTML>

    Please check if jazn.jar is available under your <YOUR_OC4J_PATH>\j2ee\home folder.
    This library files contains all the security related classes required by jpdkv2 providers.

  • Access Migration Failure: Error 3021 Method 'Run' of object

    I am doing a proof-of-concept to migrate and convert some Access applications.
    I downloaded the migration tool and then tried the Northwind mdb to verify it worked and all went as planned with a SQL output file.
    When I run it against a working copy of the production mdb it gives this error and produces no output.
    Error #3021 – XMLExporter – Method ‘Run’ of object ‘_Application failed *access.mdb” Database Schema Export did not complete successfully.
    I conjecture it is trying to 'Run' the object and not finding it. How can I work around this or fix the error. I am not an Access expert so any ideas are appreciated.
    slavanaway
    Message was edited by:
    slavanaway

    Hi Ian,
    Thanks for the detailed posting, it's very helpful.
    If you are receiving error #2501, it would appear that there's an issue in opening a report in your MS Access database.
    When you open the MS Access database to be exported, can you successfully view your report(s) or do you receive the #2501 error even then? If you receive this error when accessing the reports, I believe it's relating to the printer setup on the machine. The default printer on the machine you are using may be "imcompatible" with the format of your MS Access report. Try to select another printer on your network as the default, or even try re-installing the default printer. If this does not resolve your issue, please let me know.
    I hope this helps.
    Regards,
    Hilary

  • Error in Transformation from Access to Oracle

    I am getting following error while fetching data from Access in Load data.
    java.lang.ClassCastException: java.lang.Integer cannot be cast to [B
         at oracle.jdbc.driver.OraclePreparedStatement.setObjectCritical(OraclePreparedStatement.java:7839)
         at oracle.jdbc.driver.OraclePreparedStatement.setObjectInternal(OraclePreparedStatement.java:7555)
         at oracle.jdbc.driver.OraclePreparedStatement.setObject(OraclePreparedStatement.java:8028)
         at oracle.jdbc.driver.OraclePreparedStatementWrapper.setObject(OraclePreparedStatementWrapper.java:238)
         at com.sunopsis.sql.SnpsQuery.updateExecStatement(SnpsQuery.java:2027)
         at com.sunopsis.sql.SnpsQuery.addBatch(SnpsQuery.java:122)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.executeUpdate(SnpSessTaskSql.java:3034)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execCollOrders(SnpSessTaskSql.java:729)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java:2815)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java:2515)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatAttachedTasks(SnpSessStep.java:534)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java:449)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:1954)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$2.doAction(StartSessRequestProcessor.java:322)
         at oracle.odi.core.persistence.dwgobject.DwgObjectTemplate.execute(DwgObjectTemplate.java:224)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.doProcessStartSessTask(StartSessRequestProcessor.java:246)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.access$0(StartSessRequestProcessor.java:237)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$StartSessTask.doExecute(StartSessRequestProcessor.java:794)
         at oracle.odi.runtime.agent.processor.task.AgentTask.execute(AgentTask.java:114)
         at oracle.odi.runtime.agent.support.DefaultAgentTaskExecutor$2.run(DefaultAgentTaskExecutor.java:82)
         at java.lang.Thread.run(Thread.java:662)
    Unable to understand Error.
    What this error is about and whoat would i have to Do to remove it ?
    Details:-
    LKM:- SQL to Oracle (Only this is refered in this step)
    IKM:- IKM SQL Incremet Update .(It would not be refered in this step)
    Edited by: MaheshGx on Jan 9, 2012 6:24 PM

    Posting Code:-
    Source Code:-
    select     
         MTP_CONVERSION."MTP#"     as C9_MTP_,
         MTP_CONVERSION."MTP#"     as C14_MTP_,
         MTP_CONVERSION."MTP#"     as C37_MTP_,
         MTP_CONVERSION."MTP#"     as C38_MTP_,
         TABLE_BCAT_SALES."Budg_Cat_Sales"     as C2_BUDG_CAT_SALES,
         TABLE_PATTERN."Pattern"     as C7_PATTERN,
         TABLE_BCAT_SALES."Budg_Cat_Sales"     as C11_BUDG_CAT_SALES,
         TABLE_SIZE."Size_Designation"     as C24_SIZE_DESIGNATION,
         TABLE_INFL_TYPE."Infl_Type_Abr"     as C26_INFL_TYPE_ABR,
         WARRANTY."MTP_Warr"     as C27_MTP_WARR,
         TABLE_CUSTOMER."Customer"     as C30_CUSTOMER,
         MTP_CONVERSION."Year"     as C31_YEAR,
         VEHICLE."Vehicle"     as C34_VEHICLE,
         MTP_CONVERSION.IPC     as C6_IPC,
         MTP_CONVERSION.IPC     as C8_IPC,
         TABLE_BCAT_SALES."Budg_Group_Sales"     as C12_BUDG_GROUP_SALES,
         TABLE_BCAT."Brand"     as C25_BRAND,
         TABLE_LOAD_CAT.PR     as C29_PR,
         MTP_CONVERSION.IPC     as C36_IPC,
         MTP_CONVERSION.IPC     as C41_IPC,
         MTP_CONVERSION.BPC     as C5_BPC,
         TABLE_SIZE."Width"     as C18_WIDTH,
         TABLE_SIZE."Width"     as C19_WIDTH,
         TABLE_SIZE."Width"     as C32_WIDTH,
         MTP_CONVERSION."LineUp_Ind"     as C1_LINEUP_IND,
         TABLE_SIZE."Series"     as C16_SERIES,
         TABLE_SIZE."Series"     as C17_SERIES,
         TABLE_CUSTOMER.OE     as C23_OE,
         TABLE_SIZE."Series"     as C33_SERIES,
         MTP_LINEUP."Load_Single"     as C13_LOAD_SINGLE,
         TABLE_SIZE."Rim"     as C28_RIM,
         MTP_CONVERSION."Product_Description"     as C10_PRODUCT_DESCRIPTION,
         MTP_LINEUP."Load_Dual"     as C15_LOAD_DUAL,
         MTP_CONVERSION."Product_Description"     as C20_PRODUCT_DESCRIPTION,
         MTP_LINEUP."Speed"     as C3_SPEED,
         TABLE_PATTERN."Winter"     as C21_WINTER
    from     ."MTP_Conversion" as MTP_CONVERSION, ."MTP_LineUp" as MTP_LINEUP, ."Vehicle" as VEHICLE, ."Warranty" as WARRANTY, ."Table_Pattern" as TABLE_PATTERN, ."Table_BCAT_Sales" as TABLE_BCAT_SALES, ."Table_Customer" as TABLE_CUSTOMER, ."Table_BCAT" as TABLE_BCAT, ."Table_Size" as TABLE_SIZE, ."Table_Infl_Type" as TABLE_INFL_TYPE, ."Table_Load_Cat" as TABLE_LOAD_CAT
    where     (1=1)
    And (MTP_LINEUP."Infl_Type_Code"=TABLE_INFL_TYPE."Infl_Type_Code")
    AND (MTP_LINEUP."Customer_Code"=TABLE_CUSTOMER."Customer_Code")
    AND (MTP_LINEUP."BCATS_Code"=TABLE_BCAT_SALES."BCATS_code")
    AND (MTP_CONVERSION."MTP#"=WARRANTY."MTP#")
    AND (MTP_LINEUP."Pattern_Code"=TABLE_PATTERN."Pattern_Code")
    AND (MTP_LINEUP."Load_Cat_Code"=TABLE_LOAD_CAT."Load_Cat_Code")
    AND (MTP_LINEUP."BCAT_Code"=TABLE_BCAT."BCAT_code")
    AND (MTP_CONVERSION."MTP#"=MTP_LINEUP."MTP#")
    AND (MTP_CONVERSION."MTP#"=VEHICLE."MTP#")
    AND (MTP_LINEUP."Size_Code"=TABLE_SIZE."Size_Code")
    Target Code:-
    insert into OMPODI.C$_0NEWBSMASTERTYRE
         C9_MTP_,
         C14_MTP_,
         C37_MTP_,
         C38_MTP_,
         C2_BUDG_CAT_SALES,
         C7_PATTERN,
         C11_BUDG_CAT_SALES,
         C24_SIZE_DESIGNATION,
         C26_INFL_TYPE_ABR,
         C27_MTP_WARR,
         C30_CUSTOMER,
         C31_YEAR,
         C34_VEHICLE,
         C6_IPC,
         C8_IPC,
         C12_BUDG_GROUP_SALES,
         C25_BRAND,
         C29_PR,
         C36_IPC,
         C41_IPC,
         C5_BPC,
         C18_WIDTH,
         C19_WIDTH,
         C32_WIDTH,
         C1_LINEUP_IND,
         C16_SERIES,
         C17_SERIES,
         C23_OE,
         C33_SERIES,
         C13_LOAD_SINGLE,
         C28_RIM,
         C10_PRODUCT_DESCRIPTION,
         C15_LOAD_DUAL,
         C20_PRODUCT_DESCRIPTION,
         C3_SPEED,
         C21_WINTER
    values
         :C9_MTP_,
         :C14_MTP_,
         :C37_MTP_,
         :C38_MTP_,
         :C2_BUDG_CAT_SALES,
         :C7_PATTERN,
         :C11_BUDG_CAT_SALES,
         :C24_SIZE_DESIGNATION,
         :C26_INFL_TYPE_ABR,
         :C27_MTP_WARR,
         :C30_CUSTOMER,
         :C31_YEAR,
         :C34_VEHICLE,
         :C6_IPC,
         :C8_IPC,
         :C12_BUDG_GROUP_SALES,
         :C25_BRAND,
         :C29_PR,
         :C36_IPC,
         :C41_IPC,
         :C5_BPC,
         :C18_WIDTH,
         :C19_WIDTH,
         :C32_WIDTH,
         :C1_LINEUP_IND,
         :C16_SERIES,
         :C17_SERIES,
         :C23_OE,
         :C33_SERIES,
         :C13_LOAD_SINGLE,
         :C28_RIM,
         :C10_PRODUCT_DESCRIPTION,
         :C15_LOAD_DUAL,
         :C20_PRODUCT_DESCRIPTION,
         :C3_SPEED,
         :C21_WINTER
    )

  • Error while migrating from ms access 2003 db to oracle 10g in sqldeveloper

    Hello,
    i am working on migration project from MS access 2003 to Oracle 10g on windows XP sp2 plateform using SQL developer.
    it went quit smoothly till the "capture microsoft access" .so in this step the sql developer opens the access db in background... but while opening the file in background it gives error
    Object library not registered i tried many workaround but of no use..
    anybody's help in this regard would be well appreciated.
    thanks.

    Hi,
    Did you follow all the steps in the SQL*Developer documentation about preparing the Access database for migration -
    Oracle® SQL Developer User’s Guide Release 3.0 -
    2.2.4.3 Before Migrating From Microsoft Access
    and -
    Oracle® SQL Developer Supplementary Information for Microsoft Access Migrations Release 3.0
    2.4 Preparing the Microsoft Access Database for Capture
    The error also indicates there may be a problem with your Access installation so could you check that everything is okay with that ? I have found references that indicate a re-install of Office/Access will prevent the error.
    Regards,
    Mike

  • Error: ORA-00920: invalid relational operator (WWV-16016)

    Hi,
    When I try to query in the form, I'm getting the following error
    An unexpected error occurred: ORA-00920: invalid relational operator (WWV-16016).
    The form has a field of type varchar2 with lov attached to it. This error is happening only if I enter characters more than 40 or select a value which has more than 40 characters from the lov.
    Anbody had this problem?..Is there a solution for this?..Help would be appreciated.
    Thanks
    PJ

    I figured out the problem and it seems like if the value has any 'IN' or 'BETWEEN' and try to query this error is happening and it's not because of character length. I think Portal assumes that relational operator is entered and tries to query based on those words. Is it a bug in the Portal?..
    Thanks
    PJ

  • Error: (0) cannot access directory oracle\jbo\common\appmgr; verify that directory is

    Help!
    Error: (0) cannot access directory oracle\jbo\common\appmgr; verify that directory is reachable from classpath and/or sourcepath.
    hi,
    I am Yun Dai P.R.China nanchang
    [email protected]
    when I compile the *.jsp, I always get this error message,
    My software settings:
    Jdeveloper 3.1;
    Oracle 8i RDBMS;
    Win2000 server (sp1);
    how can I solve this problem?
    featureBean.java and feature.jsp:
    feature.jsp:
    <%@ page contentType="text/html;charset=WINDOWS-1252"%>
    <%@ page language = "java" errorPage="errorpage.jsp" import = "java.util.*, oracle.jbo.*, javax.naming.*, oracle.jdeveloper.html.*, oracle.jbo.common.appmgr.*, oracle.jbo.html.databeans.*" %>
    <%
    // make sure the application is registered
    oracle.jbo.html.jsp.JSPApplicationRegistry.registerApplicationFromPropertyFile(session, "package1_Package1Module");
    %>
    <html>
    <head>
    <LINK REL=STYLESHEET TYPE="text/css" HREF="<%=session.getValue("CSSURL")%>">
    <title>Welcome to JDeveloper Auctions</title>
    </head>
    <body bgcolor="#FFFFFF" TEXT="black" BGCOLOR="#FFFFFF" LINK="#336699" ALINK="#6699CC" >
    <p><br>
    <table BORDER=0 CELLSPACING=0 CELLPADDING=4 WIDTH="100%" >
    <tr><td BGCOLOR="#336699"><b><font face="Arial" color="#FFFFFF" >Today's Featured Items</font></b></td></tr>
    </table>
    <br>
    <center>
    <!-- Features Begin -->
    <jsp:useBean class="auctionbeans.featureBean" id="features" scope="request" >
    <%
    features.initialize(application,session, request,response,out,"package1_Package1Module.srchItemsView");
    features.render();
    %>
    </jsp:useBean>
    <!-- Features End -->
    </center>
    </body> </html>
    featureBean.java
    package auctionbeans;
    import java.io.*;
    import oracle.jbo.*;
    import oracle.jdeveloper.html.*;
    public class featureBean extends oracle.jdeveloper.html.DataWebBeanImpl {
    public void render() {
    try
    out.println( "<td> <!-- left panel featured items -->");
    out.println( "");
    out.println( "<font face=verdana,arial,helvetica size=-1><b>Today's Featured Items...</b></font>");
    out.println( "<br clear=left>");
    out.println( "");
    out.println( "");
    out.println( "<!-- item 1 -->");
    out.println( "");
    out.println( "<p>");
    out.println( "<A href=\"srch_results.jsp?QRY=cat_id=10\">");
    out.println( "<font face=verdana,arial,helvetica size=-1><b>In Software</b></font><br>");
    out.println( "</a>");
    out.println( "<strong><font face=verdana,arial,helvetica color=#cc6600> Oracle JDeveloper 3.0</font></strong><br>");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "<table border=0 align=left cellpadding=0 cellspacing=0>");
    out.println( "<tr>");
    out.println( "<td>");
    out.println( "<A href=\"BidsView_Browse.jsp?ITEMROWINDEX=39\">");
    out.println( "<IMG border=0 src=\"/bc4jauctions/webapp/images/jdevlogo.gif\"></a>");
    out.println( "</td></tr><tr><td><center><font face=verdana,arial,helvetica size=-2>");
    out.println( "");
    out.println( "<A href=\"BidsView_Browse.jsp?ITEMROWINDEX=39\">Details</a>");
    out.println( "");
    out.println( "</font></center>");
    out.println( "</td></tr></table>");
    out.println( "");
    out.println( "<b>Oracle JDeveloper Suite 3.0</b> provides a complete and integrated Java development and deployment environment for");
    out.println( "creating enterprise-scale, high performance e-bus iness applications.");
    out.println( "<br>");
    out.println( "<br>");
    out.println( "Go to <A href=\"srch_results.jsp?QRY=cat_id=10\">Software</a>");
    out.println( "<br clear=left>");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "<!-- item 3 --></p>");
    out.println( "<p>");
    out.println( "<font face=verdana,arial,helvetica size=-1><b>");
    out.println( "<A href=\"srch_results.jsp?QRY=cat_id=1\">");
    out.println( "In");
    out.println( " Automotive</b></font><br></A>");
    out.println( "<strong><font face=verdana,arial,helvetica color=#cc6600> 2000 BMW Z8</font></strong><br>");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "<table border=0 align=left cellpadding=0 cellspacing=0><tr><td>");
    out.println( "<A href=\"BidsView_Browse.jsp?ITEMROWINDEX=1\">");
    out.println( "<IMG alt=\"\" border=0 src=\"/bc4jauctions/webapp/images/z8-sm.gif\" ></a>");
    out.println( "</td></tr><tr><td><center><font face=verdana,arial,helvetica size=-2>");
    out.println( "");
    out.println( "<A href=\"BidsView_Browse.jsp?ITEMROWINDEX=1\">Details</a>");
    out.println( "");
    out.println( "</font></center>");
    out.println( "</td></tr></table> <b>A 2000 BMW Z8 Featured in the new James Bond Thriller,");
    out.println( "<a href=\"BidsView_Browse.jsp?ITEMROWINDEX=14\">'The World is Not Enough'</a></b> is now available! Are you looking for the");
    out.println( " quintessence, the ultimate passion for driving? The");
    out.println( " answer to this is: The BMW 8 Series coup? This");
    out.println( " exquisite sports coupe turns mobility into an exhilarating");
    out.println( " experience. The 8 Series is fascinating as a design");
    out.println( " object, and is an impressive carrier of state-of-the-art");
    out.println( " technology.</p>");
    out.println( "<p>");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "Go to <A href=\"srch_results.jsp?QRY=cat_id=1\">Automotive</a>");
    out.println( "<br clear=left>");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "<!-- item 3 --></p>");
    out.println( "<p>");
    out.println( "<font face=verdana,arial,helvetica size=-1><b>");
    out.println( "<A href=\"srch_results.jsp?QRY=cat_id=1\">");
    out.println( "In");
    out.println( " Automotive</b></font><br></A>");
    out.println( "<strong><font face=verdana,arial,helvetica color=#cc6600> 1998 Acura NSX</font></strong><br>");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "<table border=0 align=left cellpadding=0 cellspacing=0><tr><td>");
    out.println( "<A href=\"BidsView_Browse.jsp?ITEMROWINDEX=2\">");
    out.println( "<IMG alt=\"BidsView_Browse.jsp?ITEMROWINDEX=2\" border=0 src=\"/bc4jauctions/webapp/images/acura-sm.jpg\" ></a>");
    out.println( "</td></tr><tr><td><center><font face=verdana,arial,helvetica size=-2>");
    out.println( "");
    out.println( "<A href=\"BidsView_Browse.jsp?ITEMROWINDEX=2\">Details</a>");
    out.println( " ");
    out.println( "</font></center>");
    out.println( "</td></tr></table><b>A 1998 Acura NSX");
    out.println( " has been put up for auction!</b> <br>A vehicle like the NSX comes along perhaps once in a generation. It");
    out.println( "represents everything that motivates a passionate driver to get into cars.");
    out.println( "It's the chance to design an exotic car from the ground up.</p>");
    out.p rintln( "<p> ");
    out.println( " ");
    out.println( " ");
    out.println( "");
    out.println( "Go to <A href=\"srch_results.jsp?QRY=cat_id=1\">Automotive</a>");
    out.println( "<br clear=left>");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "<!-- item 2 --></p>");
    out.println( "");
    out.println( "<p>");
    out.println( "<A href=\"srch_results.jsp?QRY=cat_id=12\">");
    out.println( "<font face=verdana,arial,helvetica size=-1><b>In Miscellaneous</b></font><br>");
    out.println( "</a>");
    out.println( "<strong><font face=verdana,arial,helvetica color=#cc6600> Lion King BroadWay Show Tickets</font></strong><br>");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "<table border=0 align=left cellpadding=0 cellspacing=0><tr><td>");
    out.println( "<A href=\"BidsView_Browse.jsp?ITEMROWINDEX=45\">");
    out.println( "<IMG alt=\"\" border=0 src=\"/bc4jauctions/webapp/images/lking-sm.jpg\" ></a>");
    out.println( "</td></tr><tr><td><center><font face=verdana,arial,helvetica size=-2>");
    out.println( "");
    out.println( "<A href=\"BidsView_Browse.jsp?ITEMROWINDEX=45\">Details</a>");
    out.println( "");
    out.println( "</font></center>");
    out.println( "</td></tr></table><b>Act now to get Lion King BroadWay Show Tickets!</b> <br>We have Lion King broadway tickets for the orchestra, mezzanine and balcony sections available");
    out.println( " for delivery today! The lion king has been the hottest broadway show ticket since it opened, and");
    out.println( " the demand has not let down since winning six Tony award nominations. The lion king on");
    out.println( " broadway is a fantastic show that you must see to appreciate.");
    out.println( "");
    out.println( "<p>");
    out.println( "Go to <A href=\"srch_results.jsp?QRY=cat_id=12\"><U><FONT");
    out.println( " color=#0000ff>Miscellaneous</FONT></U></a>");
    out.println( "<br clear=left>");
    out.println( "");
    out.println( "");
    out.println( "<br>");
    out.println( "<br>");
    out.println( "<center>");
    out.println( "<img src=\"/bc4jauctions/webapp/images/bc4jvisa.gif\">");
    out.println( "</center>");
    out.println( "<br>");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "</td>");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "");
    out.println( "<!-- Left panel end -->");
    out.println( "");
    } catch(Exception ex)
    throw new RuntimeException(ex.getMessage());
    null

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by sarantos:
    I had the same problem!What you have to do is to remove this statement from the import of every jsp (in the very first tag).<HR></BLOCKQUOTE>
    I tried to do what you propose, it been compiled, but works not properly
    null

Maybe you are looking for