Oracle Discoverer 4.1 to Oracle Discoverer11g  EUL migration steps

Hi
WE SUCCESSFULLY upgraded Discoverer 3.1 to 4.1 EUL against Oracle 8i DB.
Also  exported all EUL4 objects and imported the same to 11gr2 Db.
But when we try to upgrade from Oracle BI 11g Discoverer Admin by connecting against the imported EUL4 schema in 11g
DB we get the default message that 3.1 has to be upgraded to 4.1 using Discoverer 4i and then use this release to upgrade 4i EUL.
Not sure what I am doing wrong here when the 3.1 to 4.1 is already completed and 4.1 EUL also already imported in 11g database.
Am I missing any step here.
Kindly advise on this issue.
Thanks
Nirmal.

Discoverer 10g uses EUL5-tables, so after an upgrade you'll have 2 EUL's, one with EUL4 and one with EUL5-tables.Users who'll have the Discoverer 4i desktop will connect to the old EUL, while the Discoverer 10g desktop will connect to the new EUL. So, it's best to remove (or disable) your old EUL, otherwise you'll have 2 EUL's to support.

Similar Messages

  • Runnig forms in oracle 10g after  migrating them from oracle 6i

    Guyz ....i have developed forms in oracle 6i and when i presented them to the my manager he says that he wants them to be web based.....arghhhh.!!!!!! shud have told me at the beginning itself....anyways i downloaded the forms 10g from oracle website and migrates my forms from 6i to 10g ....
    1.The forms are getting compiled and i can run them on my laptop.. i wanna noe whats the procedure to run them on other system .....the port number is 8889
    I mean running them on a web on some other LP or system.???
    2.And my 2nd problem is that ...The records are not being saved in 10g as in 6i. I created the forms in 6i using the data block wizard and set the block accordingly as told by u people in this forum

    Look at the existing formsweb.cfg configuration file located in your <DEVSUITE_HOME>/forms/server folder. It allows you to create different sections to start your Forms applications.
    For instance, if you create a application_1 section, give this name in your URL.
    Francois

  • Oracle 10g XE migrate from 32bit to 64bit becomes slower

    Oracle 10g XE migrate from 32bit to 64bit becomes slower
    Currently we have a database using Oracle 10g XE R2
    (Oracle Database 10g Express Edition Release 10.2.0.1.0)
    on a linux 32bit server.
    And recently we did migrate it to another 64bit linux server.
    But found after migration is it running slower at 64bit server (~ 25% slower)
    1. We would wonder any tuning is required on 64bit server?
    Besides, as I know Oracle XE only using single core CPU for processing.
    On 32bit linux the CPU is Intel(R) Xeon(R) CPU E31235 @ 3.20GHz
    On 64bit linux the CPU is Intel(R) Xeon(R) CPU E5-2470 v2 @ 2.40GHz
    2. Would the CPU clock speed on a single core also made the 64bit Oracle slower?
    Thanks a lot.

    32 or 64 bit normally won't cause much performance difference as long as you can't use > 4GB RAM
    Please note that XE can use only 1 core and 1GB memory.
    According to benchmarks, Single Thread Rating of the 2 CPU really differ by around 25%. Quite consistent with your observation.
    Of course, IO (i.e., disk) speed is also an important factor.
    https://www.cpubenchmark.net/cpu.php?id=2003
    https://www.cpubenchmark.net/cpu.php?id=1200

  • Oracle SQL Developer vs Oracle SQL Developer Migration Workbench

    Gurus,
    Can anybody let me know what's the difference between Oracle SQL Developer vs Oracle SQL Developer Migration Workbench tools.
    I am in the process of Migrating MS-Access Application to APEX. So the example says me to use Oracle SQL Developer Migration Workbench. Is this part of Oracle SQL Developer? If yes, I know SQL Developer is free.
    If not is Oracle SQL Developer Migration Workbench if free?
    Thanks and Regards

    Thank Oracle ;)
    (well, it's the least they can do after you paid big $$$ for the database)
    Regards,
    K.

  • Oracle JDeveloper Application Migration Assistant (AMA)

    Oracle JDeveloper Application Migration Assistant (AMA) link from http://otn.oracle.com/tech/migration/index.html
    returns Page Not Found

    This is working now.
    Thanks,
    OTN

  • Oracle length semantics migration documention

    Due to the oracle documention to migrate length semantics:
    To convert an existing schema and its associated data from byte semantics and a single-byte character set to character semantics and a multibyte character set, such as UTF-8, you need only follow these steps: [The following steps have been corrected since the magazine was printed.]
    1. Export the schema.
    2. Issue an ALTER SYSTEM SET NLS_LENGTH_SEMANTICS=CHAR SCOPE=BOTH command on the target database.
    3. Stop and restart the instance so that the parameter change takes effect.
    4. Drop the original schema.
    5. Recreate the original schema and its tables (you can use import's show=Y option to get the CREATE TABLE statements). Columns in the recreated tables will use character semantics, because that's now the default.
    6. Import the schema into the target database using the IGNORE=Y import option.
    What is the meaning of the terms target and original?
    Suppose there is a (source) database with length semantics byte. If a (target) database
    is to be created as a clone of the (source) database, except for the length semantic char, does one have to migrate the (source) database first?
    Or rather, why is it not possible to
    1. Export the data from the source database with length semantic byte,
    2. Create a target database with length semantics char,
    3. Import the data from the source database?)

    This documentation is, unfortunately, poorly written.
    If you want to migrate data from one database to another, with both databases having different character sets, you can avoid some data expansion issues, if you migrate to character set semantics at the same time.
    You cannot just export data, and import it into a character semantics database, because export/import preserves original semantics of the exported tables.
    Note: there is actually no such thing as a character semantics database. Character semantics is a column/variable property. The "character semantics database" is a confusing, though commonly used, term that actually means an instance which has NLS_LENGTH_SEMANTICS set to CHAR in its initialization file. The only significant meaning of this parameter is to be the default for session-level NLS_LENGTH_SEMANTICS. It is used for sessions that do not set this parameter explictly (through environment variable or ALTER SESSION). The session-level parameter is significant for CREATE TABLE/PROCEDURE/FUNCTION/PACKAGE [BODY] statements and tells the default for column and variable declarations that do not specify BYTE or CHAR explicitly.
    To migrate semantics of an original schema you need to create a script that will contain all CREATE statements needed to recreate this schema (at least CREATE {TYPE | TABLE | MATERIALIZED VIEW | PROCEDURE | FUNCTION | PACKAGE [BODY]}). Then, you can just add the ALTER SESSION SET NLS_LENGTH_SEMANTICS=CHAR after any CONNECT command in this script. You can than run the script in the target database. How you create the script is irrelevant. You can use any reverse-engineering tool available (e.g. SHOW=Y option of import, DBMS_METADATA package, etc.)
    After you pre-create the schema with the new semantics, you can import the data from the original (source) database with IGNORE=Y. The original semantics saved in the export file will be ignored for pre-created objects.
    Note: PL/SQL may need manual corrections to migrate to character semantics. For example, SUBSTRB used to trim values before assignment may need to be replaced with SUBSTR.
    -- Sergiusz

  • Oracle Service Bus Debugger: stepping an inexisting frame

    Hi,
    We are frequently getting below alert on production. The messages are not failing beucase of this. Does anybody face this error before? ..... not able to reproduce this on our test environment.
    <BEA-382004> <Failed to process request message for service ProxyService XXX_proxy: java.lang.IllegalStateException: Oracle Service Bus Debugger: stepping an inexisting frame.
    java.lang.IllegalStateException: Oracle Service Bus Debugger: stepping an inexisting frame. at com.bea.alsb.debug.internal.server.model.ThreadStateManager.sanitize(ThreadStateManager.java:313)
    at com.bea.alsb.debug.internal.server.model.ThreadStateManager.stepped(ThreadStateManager.java:281)
    at com.bea.wli.sb.pipeline.debug.DebuggerTracingStep.traceExit(DebuggerTracingStep.java:146)
    at com.bea.wli.sb.pipeline.PipelineContextImpl.exitComponent(PipelineContextImpl.java:1063)
    at com.bea.wli.sb.pipeline.PipelineContextImpl.handleError(PipelineContextImpl.java:975)
    Truncated. see log file for complete stacktrace
    Thanks,
    B

    funny, because:
    http://docs.oracle.com/cd/E13159_01/osb/docs10gr3/eclipsehelp/tasks.html#taskDebugger
    Enabling Debugging
    Oracle Service Bus debugging is enabled automatically on a server running in development mode. When you create a new domain, the following entries are included in the <domain>/bin/setDomainEnv script:
    set ALSB_DEBUG_FLAG=true
    set ALSB_DEBUG_PORT=7453
    If you want to turn Oracle Service Bus debugging functionality off, set ALSB_DEBUG_FLAG=false.
    If you start the server in production mode, Oracle Service Bus debugging is automatically disabled.
    Are you definitely sure that debugging is disabled in your environment?

  • Oracle Application Hardware Migration using Acronis

    Hi,
    I’m an Oracle Applications DBA and would really appreciate some other DBA input on the following question.
    I have a customer that uses Acronis to backup,restore and image Oracle Applications. Their current instance (11.5.6) is running on really old kit. As a test the windows guys have restored oracle Apps onto a brand new server and started the services. This has worked, which is to be expected (that’s what Acronis does).
    My question is “Does Oracle support this method of hardware migration using Acronis”. My understanding is that for hw migration either autoconfig or export+import were the only Supported options.
    I know that 11.5.6 is unsupported and come to mention it so is their OS and the fact that they use images as clones. This aside I would be interested in other opinions on weather Acronis is strictly for restoring/imaging a duff system or in fact weather it would be supported by Oracle for Hardware migration. ( With some reasoning please).
    I have checked metalink with only one hit (643276.992) but this does not directly answer my question
    Thanks in advance to anyone who can reply to this.
    Cheers
    James

    Yes you will be able to do that (migrate/upgrade your 10g Forms & Reports applications to 11g Forms & Reports) and deploy on Oracle Fusion Middleware 11g.
    Note that FMW 11g release having Forms & Reports is not yet out. I am not sure about the exact time frame but it is expected to be out sometime this calendar year.
    Thanks
    Shail

  • Sybase ASE to Oracle Database 11g Migration

    Hi,
    I am looking for documentation on migration from Sybase ASE to Oracle Database 11g Migration.
    Front End application is Peoplesoft.
    Please suggest documentation on the same.
    I look forward to you reply.
    Best regards
    Sonali

    Have a look at the SQL Developer tool:
    Oracle SQL Developer&lt;/title&gt;&lt;meta name=&quot;Title&quot; content=&quot;Oracle SQL Developer&quot;&gt;&lt;meta n…
    It contains a migration utility which allows you to migrate foreign databases to Oracle:
    Database Migration Technology&lt;/title&gt;&lt;meta name=&quot;Title&quot; content=&quot;Database Migration Technology&q…
    Documentation and videos are available from the migration wbe page.
    - Klaus

  • Oracle Java CAPS Migration Tool

    Hi,
    In one of our project we have to migrate the JCaps code to SOA 11g Code. I am able to find the user guide of Oracle Java CAPS Migration Tool (i.e. http://docs.tpu.ru/docs/oracle/en/fmw/11.1.1.6.0/doc.1111/e24884.pdf) but not the installer of that migration tool.
    Can someone please let me know the exact loaction of the Oracle Java CAPS Migration Tool.
    Regards,
    Dumesh Kumar

    Please refer -
    http://blogs.oracle.com/javacapsfieldtech/entry/migrating_java_caps_5_6
    Contact your local Oracle Sales Representative for more help on this migration.
    Regards,
    Anuj

  • Where can I find oracle.toplink.tools.migration.TopLinkCmpMigrator?

    Hi All
    I am trying to find this class so I can start the toplink workbench - any ideas where I can get it ? its not in the toplink.jar as mentioned in the Oracle documentation
    Thanks

    From the documentation, it says you have to have
    <TOPLINK_HOME>/jlib/cmpmigrator.jar
    on the classpath, which is where the oracle.toplink.tools.migration.TopLinkCMPMigrator class can be found.
    This is from the 10.1.3 docs at:
    http://download-west.oracle.com/otn_hosted_doc/toplink/1013/MAIN/_html/asinteg003.htm#BABGFHIA
    Best Regards,
    Chris

  • Problem while migrating from Sybase to Oracle using Quick Migrate

    Hi,
    For SQL Developer version 2.1, while migrating from sybase to oracle, Using Quick migrate, during data move step, for the rows having ''(Blank) values in TEXT data type in SYBASE, which is convertd to CLOB in Oracle, the migration for that table terminates at that row.
    However, NULL values in Sybase TEXT data type are successfully inserted in Oracle CLOB.
    How can we overcome this?

    reproduced and see exception in console, bug logged.
    Edited by: Jade Zhong on Feb 1, 2010 6:10 PM

  • Oracle Documentation to Migrate RAC to NON-RAC keeping ASM

    Oracle Documentation to Migrate RAC to NON-RAC keeping ASM.

    93a5de6e-a834-4d99-8192-dbc40f606ffd wrote:
    Oracle Documentation to Migrate RAC to NON-RAC keeping ASM.
    Surely all you need to do is set CLUSTER_DATABASE=FALSE, and start the instance from a non-RAC Oracle home. Then tidy up the cluster registry: use the srvctl utility to remove the RAC database, and add a non-RAC database. All done in ten minutes.
    John Watson
    Oracle Certified Master DBA

  • Oracle Apps EUL with Custom Discoverer Views

    Disco Environment:
    OracleBI Discoverer 10g (10.1.2.2)
    Oracle Business Intelligence Discoverer Plus 10g (10.1.2.54.25)
    Discoverer Model - 10.1.2.54.25
    Discoverer Server - 10.1.2.54.25
    End User Layer - 5.1.1.0.0.0
    End User Layer Library - 10.1.2.54.25
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    Oracle Applications R12 EUL
    All,
    Up until now, we have been placing our Discoverer custom views in our apps schema. From a "keeping track" perspective and from a "keep Disco views separate from apps" perspective, we are inclined to create a custom schema to place all of our custom Discoverer views. I have heard that Noetix does this as well.
    To accomplish this, we were planning to provide a grant select to all tables, views and synonyms (with a limited execute rights to some packages).
    The easiest thing to do is to keep on doing what we are presently doing. We have a naming schema in place that enables us to quickly identify all custom Disco views.
    Can I have people whom have implemented a custom schema for their Disco views in apps let me know how this has worked for them? This type of Disco environment appears to require a lot of communication between the Disco staff and the DBA to make sure these grants are set-up correctly.
    Thanks,
    Patrick

    Hi,
    All the eBS sites I have worked on have created the majority of their custom views in the APPS schema using a naming convention to separate them from the seeded views. The reason being is that the SQL in the view (including all the function calls) is run with the privileges of the owner of the view. If the view is defined in another schema, then this schema must have access to the APPS database objects which can be a lot of work to set up because it is very hard to identify the dependencies and unnecessarily opens up the security on the APPS schema.
    Where the data is held in custom tables and there are views on these custom tables, then both the tables and the views are held in a separate schema.
    Rod West

  • Scheduling Schema Owner in Oracle Apps EUL

    Hi All,
    Here is pertinent information about my Discoverer configuration:
    OracleBI Discoverer 10g (10.1.2.2)
    Oracle Business Intelligence Discoverer Plus 10g (10.1.2.54.25)
    Discoverer Model - 10.1.2.54.25
    Discoverer Server - 10.1.2.54.25
    End User Layer - 5.1.1.0.0.0
    End User Layer Library - 10.1.2.54.25
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    I read the Disco Admin guide (B13916_04.pdf, pages 141-151) and the Oracle® Business Intelligence Tools Release Notes
    10g Release 2 (10.1.2.1) (http://download.oracle.com/docs/html/B16031_06/toc.htm#BABJGDBB) which indicated that I can create a separate schema for scheduling Discoverer reports instead of settling for APPS.
    I ran the script batchusr_app.sql and responded to the resulting prompts as follows:
    a.     Enter Applications Foundation Name (FNDNAM): APPS
    b.     Enter the name of the Scheduled Workbook Results Schema. XX_SCHEDULING.
    c.     Enter the Batch Repository Password : password
    d.     Do you wish to alter the Default and Temporary Tablespaces for XX_SCHEDULING? Yes.
    e.     Tablespace? XX_TS_DATA
    f.     Default Tablespace ? TEMP
    g.     A Scheduled Workbook Results Schema can only have access to one EUL EUL Owner Username : EUL_US
    h.     Logged in as Scheduled Workbook Results Schema EUL5_BATCH_REP_SECURE already exists Do you wish to replace EUL5_BATCH_REP_SECURE ? Yes.
    i.     Press Enter/Return to Exit
    I entered the FNDNAM, which is APPS (the dbc file validates this).
    I explicitly granted the SELECT privilege on v_$parameter to the scheduled workbook results
    schema name (cf page 148 of the Oracle Disco Admin User Guide, B13916_04.pdf).
    **Any thoughts on why my scheduled workbooks are owned by APPS and not XX_SCHEDULING?**
    Thanks,
    Patrick
    Edited by: Patrick Bacon on Jun 8, 2009 1:58 PM

    All,
    I have found the root cause of my trouble. Our dba ran the script, batchusr_apps.sql, but I was unaware of some errors that were occurring while the script was running (e.g. "Enter database connection (e.g. T:node:sid, ServiceName) [LOCAL] :" was not responded to)). This resulted in the packages being erroneously created in the schema that the dba was logged in with while he was running the script.
    Thank you for trying to help Rod.
    Patrick

Maybe you are looking for

  • Strange problem with Outlets and Collection View Items

    This is a strange issue. I am using XCode 3.2.2 and I am building a Collection View. To do this I have a non-document based application that uses Core Data. *Collection View Item Class* I created a new class that inherits NSCollectionViewItem and bui

  • No simcard installed and no service after updating OS

    I cannot configure my iphone 3gs after updating the os. No simcard installed and no service 

  • Multi-Select prompt for Calendar Year range of values

    Hi All, I three prompts and one of them is a Multi-Select i.e Calendar_Year as i the user can select a range of years or random years like 2005,2008,2007 or 2005-2007. What do i need to do in the report so that the report(pivot table) can display the

  • Third party sale order qty issue

    Hi, While creating third party sales order: PR has been created for 20 items automaticallyu2026u2026 Now I have created PO w.r.t. PR for 8 qtyu2026. I did GR for 4 qty and done invoice for the sameu2026 Now when I am trying to create PO again wrt PR

  • What is this weird search box?

    This randomly popped up a while ago, I do not recall installing a search bar? Here's a picture of it http://gyazo.com/c927527320b23f67d813501ee553ebf0.png I heard it was an adware called Complitly, but while attempting to uninstall it, I couldn't fin