Migrating with RMAN from 10g to 11g

Hi gurus,
I am following the following procedure to migrate database from 10g to 11g using rman
Source side:
RMAN>connect target
RMAN>backup database;
RMAN>backup archivelog all;
RMAN>backup current controlfile;
SQL> create pfile from spfile;
Copied datafile, archivelog backup files and pfile and password files to target side. i.e. on 11g server side
Target side:
Set proper parameters for 11g
SQL>startup nomount;
RMAN>connect target
RMAN>set dbid=<source database id>
RMAN>catalog start with '<rman backup file location';
RMAN>restore controlfile;
RMAN>run
set newname for datafile 1 to '<target datafiles location with file name';
restore database;
switch datafile all;
finished
upto now it's success full when i am trying to recover
RMAN>recover database;
it is saying
rman 00571
rman 00569
rman 00571
rman 03002
ora - 19698
can you please suggest the solution for this.
thanks a lot.

I'm not sure what you're doing is supported.
You are taking a 10g database and restore and recover it using 11g software.
I think you are allowed to do that with 10g software only.

Similar Messages

  • Migrating discoverer queries from 10g to 11g

    We are thinking about upgrading Discoverer 10G to 11G. Is there any type of query migration process necessary? Or will the 10G queries run just fine in 11G?
    Thanks!

    They should run fine for the most part - perform the upgrade in test instance and then verify.
    http://download.oracle.com/docs/cd/E17904_01/upgrade.1111/e10130/toc.htm
    HTH
    Srini

  • Migrating BPEL process from 10g to 11g

    Hi All,
    I am trying to migrate 10.1.3.4 BPEL process to 11g. When I try to migrate the process in 11g Jdeveloper it gives me the below error in the logs and the migration is unsuccessful.
    Oct 5, 2009 6:01:13 PM oracle.viewgen.plugin.workflow.WorkflowBPELProcessUpgrader debug
    INFO: No more than one .task file in the upgrade source directory and hence not upgrading the bpel src
    Oct 5, 2009 6:01:13 PM oracle.viewgen.componentType.bpel.BpelDDUtil checkAndUpdateBPELDD
    INFO: UPGBPEL-02041: Retrieving wsdl for partnerLink "SyncItemListAgileReqABCS" from "http://localhost:7857/orabpel/default/SyncItemListAgileReqABCS/SyncItemListAgileReqABCS?wsdl". This wsdl location can be used later for any manual setup of composite reference binding, if the upgrade plan includes using 1013x endpoints for the interim.
    Oct 5, 2009 6:01:19 PM oracle.viewgen.ViewGenerator main
    SEVERE: Upgrade failed. Check the logs for any exceptions. Ensure that appropriate servers are reachable and valid 10.1.3.x code source is used for upgrade. Before re-attempting upgrade, restore the original code src from the backup directory.
    java.lang.NullPointerException
         at oracle.viewgen.plugin.bpel.BPELPlugin.createComponentType(BPELPlugin.java:172)
         at oracle.viewgen.ViewGenerator.main(ViewGenerator.java:212)
    Caused by: java.lang.NullPointerException
         at java.util.Hashtable.put(Hashtable.java:394)
         at oracle.viewgen.componentType.bpel.BpelDDUtil.processDefinition(BpelDDUtil.java:576)
         at oracle.viewgen.componentType.bpel.BpelDDUtil.checkAndUpdateBPELDD(BpelDDUtil.java:473)
         at oracle.viewgen.plugin.bpel.BPELPlugin.createComponentType(BPELPlugin.java:107)
         ... 1 more
    The BPEL Process which I am trying to migrate has an invoke activity which calls another BPEL process.Should the other BPEL process be migrated and deployed before ?
    Thanks in advance.
    Regards,
    Kaavya

    There is an issue with the process, it is trying to connect to the service, I don't believe it needs to be the new 11g version but the WSDL should be accessible.
    http://localhost:7857/orabpel/default/SyncItemListAgileReqABCS/SyncItemListAgileReqABCS?wsdl". This wsdl location can be used later for any manual setup of composite reference binding, if the upgrade plan includes using 1013x endpoints for the interim.
    Oct 5, 2009 6:01:19 PM oracle.viewgen.ViewGenerator main
    SEVERE: Upgrade failed. Check the logs for any exceptions. Ensure that appropriate servers are reachable and valid 10.1.3.x code source is used for upgrade. Before re-attempting upgrade, restore the original code src from the backup directory.
    cheers
    James

  • Migrating EJB 3 from 10g to 11g

    Hello,
    We have an application that includes an EJB project.
    We try to get instance of a session ejb (NativeBeanHandler) :
    InitialContext context = new InitialContext();
    NativeBeanHandler nativeBeanHandler = (NativeBeanHandler)context.lookup("NativeBeanHandler");
    we get the exception:
    javax.naming.NameNotFoundException: Unable to resolve 'NativeBeanHandler'. Resolved ''; remaining name 'NativeBeanHandler'
    What can we do??
    Thank you very much!
    Nina

    Use a mapped name.
    Specify a mapped name.
    @Stateless(name = "NativeBeanHandler", mappedName = "EJB3-NativeBeanHandler")
    @Remote
    public class NativeBeanHandler implements NativeBeanHandlerRemote { }Lookup with the mapped name.
    NativeBeanHandlerRemote= (NativeBeanHandlerRemote) context.lookup("EJB3-NativeBeanHandler#model.NativeBeanHandlerRemote");

  • Application has problems when migrated from 10g to 11g

    Hi there,
    I am hoping someone can shed some light on a problem I have in moving an application from Oracle 10g to Oracle 11g. The app works fine on 10g (uses Apache webserver with PL/SQL module, and APEX 3.1.2.00.2), but on 11g using the embedded web server and APEX 3.2.0.00.27, it doesnt. Most of the app works fine, but there are a couple of pages that provide the ability to add child rows to a parent/child relationship, where the parameter passing mechanism from one page to the next appears to suffer from some sort of corruption. I have traced this using the "session" and "debug" buttons on the developer interface, which show that the values of the parameters get changed inexplicably, when branching from one page to the next - even when the page is actually branching to itself.
    I am using the "Set these items, "With these values" fields in the branch, and have verified that the correct values are being associated with the correct items in the application builder. But while this does work correctly under 10g, with 11g, the wrong values end up being passed. Just prior to the branch the set of parameters have the correct values, but immediately after the branch, one of the values is NULL, another has the value of a different item, and a third has a totally random value - I have no idea were it comes from!
    I migrated the application from 10g to 11g using the APEX application developer's Export/Import options. There have been no other changes. Should this have worked? If so, any ideas what might have gone wrong?
    Thanks,
    Sid.

    Well, I managed to solve this, but not in a way that makes much sense.
    In desperation (I had tried almost everything else!) I changed the value of "Cached" in the page settings from "No" to "Yes", and ran the app, but the page didnt render correctly (in either Firefox or IE7) - in fact all that displayed was the developers toolbar at the bottom of the page. I changed the value of "Cached" back to "Y", ran the app again, and hey presto - everything worked fine! I actually did this a second time with a fresh import of the app from 10g, just to be sure I wasnt seeing things. I wasnt!
    There was just one further issue - everything worked fine apart from this section of code in a page process:-
    ELSIF (:p9_filter_type = 5) THEN
    IF (:p9_x_gene_list IS NOT NULL) THEN
    :p9_filter := :p9_x_gene_list;
    END IF;
    :p9_entity_types := 'GENE';
    END IF;
    In 11g the value of :p9_entity_types was not being set to 'GENE' when :p9_filter_type was 5. This was (and still is) working in 10g. I changed the code as follows:-
    ELSIF (:p9_filter_type = 5) THEN
    :p9_entity_types := 'GENE';
    IF (:p9_x_gene_list IS NOT NULL) THEN
    :p9_filter := :p9_x_gene_list;
    END IF;
    END IF;
    ... and now it works fine in 11g as well.
    Only wish I knew why!

  • Table getting clipped after migrating from 10g to 11g

    Hi We migrated our application from 10g to 11g, our application got converted to a trinidad application, skin details are follows:
    trinidad skins.xml:
    <skins xmlns="http://myfaces.apache.org/trinidad/skin">
    <skin>
    <id>
    suede.desktop
    </id>
    <family>
    suede
    </family>
    <render-kit-id>
    org.apache.myfaces.trinidad.desktop
    </render-kit-id>
    <style-sheet-name>
    skins/suede/suede.css
    </style-sheet-name>
    </skin>
    </skins>
    Trinidad Config.xml:
    <?xml version="1.0" encoding="windows-1252"?>
    <trinidad-config xmlns="http://myfaces.apache.org/trinidad/config">
    <skin-family>
    suede
    </skin-family>
    </trinidad-config>
    The problem is when the page loads, the table in the page is shown in a small box (please check the image: http://files.oraclecorp.com/content/AllPublic/Users/Users-J/jaya.battaramvenkatanaga-Public/anonymous/tableclipped.JPG), I am not sure if this is skin problem or layout problem. Please let me know if there is any correction in skin details given above, other wise if lay out is the problem, please provide any documents regarding trinidad layouts.
    Edited by: user9976446 on Mar 1, 2011 5:11 AM
    Edited by: user9976446 on Mar 1, 2011 5:19 AM
    Edited by: user9976446 on Mar 1, 2011 5:20 AM

    Hi Jaya,
    I think it's a layout problem, the table component or the outer component around the table is set to some default width value (300px?). Try setting the width explicitly to something larger, or see if you can use a stretchable layout component around the table.
    If you post the code from your page here we might be able to say more.
    For reference:
    Trinidad tag library http://myfaces.apache.org/trinidad/trinidad-api/tagdoc.html
    A useful migration guide from 10g to Trinidad http://wiki.apache.org/myfaces/from_ADF_to_Trinidad

  • After Migrating from 10g to 11g Geeting problems with Guided navigations.

    After Migrating from 10g to 11g Geeting problems with Guided navigations and section navigations not working.
    And we are getting the following error <<odbc driver returned an error (SQLExecDirectW)>> where we have used navigations.
    In 10G we have Guided navigation Reports to display the Reports links and intermediate reports for conditionally displaying the Dashboard section(Reports) but after migrating to 11g Guided navigation reports and conditional reports are not working..
    We know that in 11g section navigation replaced with conditions and Guided navigation replaced with action link.. but
    do we need to recreate those reports in actions and condition or is there any work around avoid reworking.

    Hi Both,
    Thanks for the reply ...
    For Guided navigation we are getting like below error:
    Odbc driver returned an error (SQLExecDirectW).
    For Conditional dashboard section we are getting like below error:
    "saw.aViewsToRefresh = [];saw.aViewsToRefresh['d:dashboard~p:1egt6il5utl0uu8n~s:3jsmgfs3c1r4tn7c~n:condition'] = true;saw.aViewsToRefresh['d:dashboard~p:1egt6il5utl0uu8n~s:nos5q43jvjmi643b~n:condition'] = true;"

  • Migrating portal from 10g to 11g

    Hi,
    We are in the process of upgrading oracle mid tier from 10gAS to OFMW 11g and also migrating it from Solaris to Linux.
    With regard the portal migration from OAS 10g to OFMW 11g
    1) Is it possible to migrate portal objects from 10g (solaris) to a new install of OFMW portal 11g(linux) directly OR do we have to upgrade the existing OAS 10g to OFMW portal 11g (on Solaris) and then migrate the portal objects to OFMW Portal 11g (on Linux)
    I am new to portal migration. Any suggestions and additional details would be appreciated.
    Thanks
    RB

    Migration + upgrade in one shot is do-able, because upgrade will require a sequence of processes but they will be mostly based on repository upgrade, and hence will be transparent to the OS you are using.
    However, in practice, the standard rule-of-thumb is that you avoid dealing with multiple layers of complications in a single shot. That means, you break complications in such steps where you could recognize the sources of any later errors/problems you encounter.
    hope that helps!
    AMN

  • .olb object library cannot open file in 11g - migration from 10g to 11g

    I have an object library (.olb) that will not open in Foras 11.1.1.2.0. It opens fine in 10g. I have tried converting it to ascii (.olt) but it will not creat the binary filie in 11g - get PDE-PER001 Internal Error (cakaa 2) when I try to convert any ascii file from 10g into 11g.
    I have tried using frmplsqlconv, the conversion tool on .olb but get following error when it is run: ERROR opening easstnd.olb :oracle.forms.jdapi.JdapiStatusException: Failed to load olb
    Check subclass and library dependencies
    Any help appreciated!
    Kim

    Kim,
    We are not migrating yet, and we have not started converting all our forms and reports, but for the tests we have done, I never had to use frmplsqlconv (in fact, I don't know what it is). What I have done is:
    1) As I told you before, I copied everything (forms, reports, etc.) we have to a new location.
    2) I opened ALL the pll files with Builder 11g, saved them, and generated the plx files. The only problem I encountered here was that with some plls, Forms Builder crashed when opening them. I had to open those with Forms Builder 10g, and remove program units one by one until I found the culprit. After removing the program unit causing the crash, I opened the pll successfully with Forms Builder 11g, and created the program unit I had deleted.
    3) After all plls were generated, I opened the forms I wanted to test, saved them, and generated the fmx files.
    4) Same thing with reports (rdf and jsp files).
    I have never gotten an error in Builder when closing plls, and we don't have either .fmt or .pld files.
    Carlos

  • Error while migrating from 10g to 11g

    Hi
    I am migrating a bpel process wit partner link activity from 10g to 11g
    I got an error.It says there is no composite file in the process .so, migration is filed.
    Pls help me...

    Hi Eric,
    Thanks for the reply.Here is the info in the logfile.
    INFO: UPGBPEL-02036: Starting migration for source projects in the list : "C:\jdevstudio10131\jdev\mywork\myBPELApplication\PickDemo.backup.backup"
    INFO: UPGBPEL-02029: Backed up source contents can be found in: "C:\jdevstudio10131\jdev\mywork\myBPELApplication\PickDemo.backup.backup.backup"
    INFO: UPGBPEL-02007: Using source directory list: "C:\jdevstudio10131\jdev\mywork\myBPELApplication\PickDemo.backup.backup\bpel"
    INFO: UPGBPEL-02008: Using target directory: "C:\jdevstudio10131\jdev\mywork\myBPELApplication\PickDemo.backup.backup"
    INFO: UPGBPEL-02047: Upgrade messages are available in log file : "C:\OFM\jdev_home\jdeveloper\\upgrade\logs\PickDemo.backup.backup2010-08-16-15-43-33PM.log"
    INFO: Suitcase directory is C:\jdevstudio10131\jdev\mywork\myBPELApplication\PickDemo.backup.backup\bpel
    INFO: There are 0 task files in the suitcase
    INFO: No more than one .task file in the upgrade source directory and hence not upgrading the bpel src
    INFO: UPGBPEL-02041: Retrieving wsdl for partnerLink "AsyncWait" from "http://xppro:8888/orabpel/default/AsyncWait/AsyncWait?wsdl". This wsdl location can be used later for any manual setup of composite reference binding, if the upgrade plan includes using 1013x endpoints for the interim.
    SEVERE: Upgrade failed. Check the logs for any exceptions. Ensure that the WSDL URLs specified in the project are reachable and a valid 10.1.3.x project is used for upgrade. Before re-attempting upgrade, restore the original project code source from the backup directory.
    java.net.ConnectException: Connection refused: connect
         at oracle.viewgen.plugin.bpel.BPELPlugin.createComponentType(BPELPlugin.java:172)
         at oracle.viewgen.ViewGenerator.main(ViewGenerator.java:223)
    Caused by: oracle.j2ee.ws.wsdl.LocalizedWSDLException: WSDLException: faultCode=PARSER_ERROR: Failed to read wsdl file at: "http://xppro:8888/orabpel/default/AsyncWait/AsyncWait?wsdl", caused by: java.net.ConnectException. : java.net.ConnectException: Connection refused: connect
         at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:371)
         at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:615)
         at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:258)
         at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:229)
         at oracle.viewgen.wsdl.WSDLUtil.getWSDL(WSDLUtil.java:60)
         at oracle.viewgen.componentType.bpel.BpelDDUtil.checkAndUpdateBPELDD(BpelDDUtil.java:477)
         at oracle.viewgen.plugin.bpel.BPELPlugin.createComponentType(BPELPlugin.java:107)
         ... 1 more
    Caused by: java.net.ConnectException: Connection refused: connect
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
         at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
         at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
         at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)
         at java.net.Socket.connect(Socket.java:525)
         at java.net.Socket.connect(Socket.java:475)
         at java.net.Socket.<init>(Socket.java:372)
         at java.net.Socket.<init>(Socket.java:215)
         at javax.net.DefaultSocketFactory.createSocket(SocketFactory.java:212)
         at HTTPClient.HTTPConnection$EstablishConnection$2.run(HTTPConnection.java:4268)
         at HTTPClient.HttpClientConfiguration.doAction(HttpClientConfiguration.java:708)
         at HTTPClient.HTTPConnection.doAction(HTTPConnection.java:5379)
         at HTTPClient.HTTPConnection$EstablishConnection.run(HTTPConnection.java:4254)
    i dont have any clue on this error.

  • NQS ERROR:14025 NO FACT TABLE EXISTS -after migrating from 10g to 11g

    NQS ERROR:14025 NO FACT TABLE EXISTS AT THE REQUESTED LEVEL OF DETAIL in all the reports after migrating from 10g to 11g ...
    then we applied the patch (One-off Patch for Bug: 11850704) for the error <<NQS ERROR:14025 NO FACT TABLE EXISTS AT THE REQUESTED LEVEL OF DETAIL>>
    But after applying the above the above patch we are still getting the same error.
    but in the above patch instructions file - Post deployment instructions to create the Variable
    Post Install Instructions:
    - To revert to the 10g navigator behavior for handling conforming dimensions,
    you must set the following session variable via an init block in the RPD:
    NO_FORCE_TO_DETAIL_BIN=1
    The default value for the above variable is 0.
    - Restart all servers (Admin Server and all Managed Server(s))
    but we didn’t find the process to create the specified variable and Initialization block in the RPD
    Can you please suggest us how to go further.
    Our questions are:

    Hi
    Refer the below thread.
    obiee 11g non-conforming dimensions and nQSError 14025
    Might be help you/
    Thanks,
    satya

  • Oracle Upgrade from 10g to 11g [BRANCHED BY MODERATOR]

    Hi Deepak/Folks,
    Another question that I have is that while doing the Oracle Upgrade on an EP server, the patches were not installed properly and I had to shut down the Patches installation after it did not do anything for a while.
    Now when I try to install the patches it fails telling me that the Installed patches cannot be verified, I had written to SAP and they told me to follow the
    SAP note 1862446 - Inventory
    load failed... OPatch cannot load inventory for the given Oracle Home
    and re-create the oracle  inventory.
    This has also not helped in anyway.
    Is there a solution to this problem.
    Following is the error that I am getting when I try to Install the patches
    Getting pre-run patch inventory...
    Getting pre-run patch inventory...failed.
    Cannot get pre-run patch inventory.
    Refer to log file
      $ORACLE_HOME/cfgtoollogs/mopatch/mopatch-2014_08_06-14-52-51.log
    when I open the log file specified here I get the following
    more mopatch-2014_08_06-14-52-51.log
    more /oracle/<SID>/11203/cfgtoollogs/mopatch/mopatch-2014_08_06-15-01-51.log
    MOPatch - Install Multiple Oracle Patches in One Run - 2.1.15.
    Copyright (c) 2007, 2013, Oracle and/or its affiliates. All rights reserved.
    Version:       2.1.15
    Revision:      5.1.2.26
    Command-line:  /oracle/<SID>/11203/MOPatch/mopatch.sh -v -s SAP11203P_1312-20009978.zip
    Oracle Home:   /oracle/<SID>/11203
    RDBMS version: 11.2.0.3.0
    OPatch version:11.2.0.3.3
    Clean-up:      supported
    PSUs:          supported
    Log file:      $ORACLE_HOME/cfgtoollogs/mopatch/mopatch-2014_08_06-15-01-51.log
    Patch base:    .
    Patch source:  SAP11203P_1312-20009978.zip
    Link script:   ./link.mts<SID>ua.sh
    Readmes:       <none>
    Strpd. Readmes:<none>
    make utility:  /usr/ccs/bin/make
    unzip utility: /oracle/<SID>/11203/bin/unzip
    User name:     ora<SID>
    Working dir:   /oracle/stage
    System:        HP-UX mts<SID>ua B.11.31 U ia64 2468369872 unlimited-user license
    Disk free:     11734549 KBytes on /oracle/<SID>
    Disk required: 886496 KBytes on /oracle/<SID>
    Getting pre-run patch inventory...
    executing: "/oracle/<SID>/11203/OPatch/opatch" lsinventory -retry 0 -xml "./mopatch-187-21696-tmpdir/preinv.xml"
    ========================================================
    GENERIC OPATCH VERSION - FOR USE IN SAP ENVIRONMENT ONLY
    ========================================================
    Oracle Interim Patch Installer version 11.2.0.3.3
    Copyright (c) 2012, Oracle Corporation.  All rights reserved.
    Oracle Home       : /oracle/<SID>/11203
    Central Inventory : /oracle/<SID>/oraInventory
       from           : /oracle/<SID>/11203/oraInst.loc
    OPatch version    : 11.2.0.3.3
    OUI version       : 11.2.0.3.0
    Log file location : /oracle/<SID>/11203/cfgtoollogs/opatch/opatch2014-08-06_15-01-56PM_1.log
    List of Homes on this system:
    Inventory load failed... OPatch cannot load inventory for the given Oracle Home.
    Possible causes are:
       Oracle Home dir. path does not exist in Central Inventory
       Oracle Home is a symbolic link
       Oracle Home inventory is corrupted
    LsInventorySession failed: OracleHomeInventory gets null oracleHomeInfo
    OPatch failed with error code 73
    Getting pre-run patch inventory...failed.
    Cannot get pre-run patch inventory.  Exiting.
    I would appreciate if you folks can help me out on this
    Thanks
    APS

    FOLLOW UP QUESTION BRANCHED:
    Oracle Upgrade from 10g to 11g [BRANCHED BY MODERATOR]

  • Check list for upgrading from 10g to 11g when there is a schema replication

    Hi
    We are looking to upgrade one of our production database from 10g to 11g
    Currently this database has one schema that is replicated to 2 other databases using Oracle streams.
    The replication is excluing DDLs and excluding several other application tables.
    What should I do pre and post the upgrade ?
    should we remove the stream configuration all together and rebuild it after the upgrade ?
    I was hoping that we can first upgrade the two target databases to 11g and then the source database, without impacting our streams configuration at all
    Is that possible ?
    Is there any documentation on the subject ?
    thanks in advance
    Orna

    Pl post the OS versions of the source and target servers, along with exact (4-digit) versions of "10g" and "11g". I do not have any experience with streams, but the 11gR2 Upgrade Doc suggests that you upgrade the downstream target databases first before upgrading the source - http://download.oracle.com/docs/cd/E11882_01/server.112/e10819/upgrade.htm#CIAFJJFC
    HTH
    Srini

  • Error after upgrading BI Publisher report from 10g to 11g

    Hi All,
    I have migrated the BI Publisher from 10g to 11g. The upgrade was done using the upgrade assistant and the installation process was a success.
    However whenever I try to access the reports in 11g after migration I get the following error:
    oracle.xdo.servlet.CreateException: Data Model definition not found:/dlypurge.xdm.
    I have tried modifying the .xdo to include the following:
    <dataModel url="/RMS/dlypurge/dlypurge.xdm"/> where dlypurge is one of the reports. However in the BI Publisher does not seem to access the latest .xdo file.
    Any suggestions on how to rectify the error.
    Sanchita Chakrabarty

    Hi All,
    I have migrated the BI Publisher from 10g to 11g. The upgrade was done using the upgrade assistant and the installation process was a success.
    However whenever I try to access the reports in 11g after migration I get the following error:
    oracle.xdo.servlet.CreateException: Data Model definition not found:/dlypurge.xdm.
    I have tried modifying the .xdo to include the following:
    <dataModel url="/RMS/dlypurge/dlypurge.xdm"/> where dlypurge is one of the reports. However in the BI Publisher does not seem to access the latest .xdo file.
    Any suggestions on how to rectify the error.
    Sanchita Chakrabarty

  • Report Navigation Issue after upgrading from 10g to 11g

    Hi Experts
    I have recently upgarded my solution from 10g to 11g. Issue is when I click on column value for navigation it doen't navigate the display remains unchanged
    1) I have created new dashboard and placed this report in new dashboard the navigation works fine.
    2) I have created new report and placed that report in old dashboard it doesn't work
    why is it so I undertand that there is problem with Dashboard and not with report but I am unable to figure it out
    what can be the problem? any suggestions
    Thanks
    Sameer

    Hi Experts
    I have recently upgarded my solution from 10g to 11g. Issue is when I click on column value for navigation it doen't navigate the display remains unchanged
    1) I have created new dashboard and placed this report in new dashboard the navigation works fine.
    2) I have created new report and placed that report in old dashboard it doesn't work
    why is it so I undertand that there is problem with Dashboard and not with report but I am unable to figure it out
    what can be the problem? any suggestions
    Thanks
    Sameer

Maybe you are looking for