Oracle discover latest version with database 10g

Hi
We were using oracle desktop and admin for window version 3.1 with oracle database 8i. Now database is upgraded to 10g ((10.2.0.4.0). Can you please let me know which is latest oracle discover version for oracle 1og (10.2.0.4.0).
Thanks in advance

Hi sweety,
What is best way to upgrated from 3.1.25 to 10.1.2.3?You cant directly update from 3 to 10.I would suggest you directly install by uninstalling 3 version because it is no longer supported and many errors.You can download it here
[http://www.oracle.com/technology/software/products/discoverer/index.html]
These are the patches that can applied according to the versions
[http://learndiscoverer.blogspot.com/2006/09/releases-and-patch-numbers-september.html]
Hope it helps you.Award points.
Best Wishes,
kranthi.

Similar Messages

  • Oracle Developer 6 applications with database 10g

    Hello,
    My all applications are developed and running in Oracle Developer 6 with database 9i. But now i want to use
    database 10g with these Oracle Developer 6 build applications.
    Already compiled files (with dev 6 and DB 9i) are runing with database 10g quite nicely,but when i try to
    recomplie the source files of these applications with 10g database i got the fowlloing error.
    ORA-00600: internal error code, arguments: [17069], [45468896], [], [], [], [], [], []
    After it i open these Oracle Developer 6 applications source files with Oracle Developer 6i and use 10g database,
    compile and run very easly.
    I think it is old version problem .But my development team dont want update all applications to new version (6i or other) yet.
    Is there any solution to use Oracle Developer 6 applications with database 10g ?
    Thanx.

    The general rule is "Ora-00600s (and 7445s, 3113s) are to be reported to Support". Look in Metalink to see whether any one else has reported it, based on the first argument. If so, there may be a workaround or a patch.
    Since you are asking this generically without database version, patch level or operating system, I assume you are using the unsupported free download and do not have access to Metalink. In that context
    1) What is the problem:
    The problem is your request (QSL, PL/SQL, Java) is hitting a bug or abusing a part of the Oracle software in an unexpected way. ORA-00600 is simply one of the 'unexpected and unhandled exceptions'.
    2) Required action:
    Since it is unexpected and unhandled, there are several ways to proceed:
    - Search the net for the first argument (ktspgetmyb-1) to see whether someone has a workaround
    - Reproduce and Simplify your offending code until you find your own workaround.
    Often this happens with some sql statement
    serache for metaling ORA-00600 log

  • Forms 6 not connecting with Database 10g

    I can not connect Oracle forms 6 with database 10g

    795192 wrote:
    I can connect to sql plus but i cannot connect my forms 6 with database 10g. getting the following error:
    ORA-12154: TNS: could not resolve service name=================================
    ORA-12154: TNS:could not resolve the connect identifier specified
    This error means one thing, and one thing only. The client could not find the specified entry in the tnsnames.ora file being used.
    As a follow-on to that statement, remember that when you use a dblink, the database in which the link is defined is acting as a client to the database that is the target of the link. So in this case, the tnsnames.ora file on the host of your source should have an entry for your target db, as defined in the db_link.
    And for the umpteenth time ... this error has <b><i><u>NOTHING</u></i></b> to do with the status of a listener. The connection request never got far enough to reach a listener. If anyone tells you to check a listener in response to ora-12154, they are not paying attention, or do not understand how TNS works. This error is the equivalent of not being able to place a telephone call because you don't know the number of the party you want to reach. You wouldn't debug that situation by going to the other guy's house and testing his telephone, or by going to the phone company and testing the switchboard. And you don't debug a ORA-12154 by checking the listener. If I had a top ten list of "Incredibly Simple Concepts (tm)" that should be burned into the brain of everyone who claims to be an Oracle DBA, it would include "ORA-12154 Has Nothing To Do With The Listener".
    =================================
    A couple of important points.
    First, the listener is a server side only process. It's entire purpose in life is to receive requests for connections to databases and set up those connections. Once the connection is established, the listener is out of the picture. It creates the connection. It doesn't sustain the connection. One listener, with the default name of LISTENER, running from one oracle home, listening on a single port, will serve multiple database instances of multiple versions running from multiple homes. It is an unnecessary complexity to try to have multiple listeners or to name the listener as if it belongs to a particular database. That would be like the telephone company building a separate switchboard for each customer.
    Second, the tnsnames.ora file is a client side issue. It's purpose is for address resolution - the tns equivalent of the 'hosts' file further down the network stack. The only reason it exists on a host machine is because that machine can also run client processes.
    Assume you have the following in your tnsnames.ora:
    larry =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = TCP)(HOST = myhost)(PORT = 1521))
        (CONNECT_DATA =
          (SERVICE_NAME = curley)
      )Now, when you issue a connect, say like this:
    $> sqlplus scott/tiger@larrytns will look in your tnsnames.ora for an entry called 'larry'. Next, tns sends a request to (PORT = 1521) on (HOST = myhost) using (PROTOCOL = TCP), asking for a connection to (SERVICE_NAME = curley).
    Where is (HOST = myhost) on the network? When the request gets passed from tns to the next layer in the network stack, the name 'myhost' will get resolved to an IP address, either via a local 'hosts' file, via DNS, or possibly other less used mechanisms. You can also hard-code the ip address (HOST = 123.456.789.101) in the tnsnames.ora.
    Next, the request arrives at port 1521 on myhost. Hopefully, there is a listener on myhost configured to listen on port 1521, and that listener knows about SERVICE_NAME = curley. If so, you'll be connected.
    What can go wrong?
    First, there may not be an entry for 'larry' in your tnsnames. In that case you get "ORA-12154: TNS:could not resolve the connect identifier specified" No need to go looking for a problem on the host, with the listener, etc. If you can't place a telephone call because you don't know the number (can't find your telephone directory (tnsnames.ora) or can't find the party you are looking for listed in it (no entry for larry)) you don't look for problems at the telephone switchboard.
    Maybe the entry for larry was found, but myhost couldn't be resolved to an IP address (say there was no entry for myhost in the local hosts file). This will result in "ORA-12545: Connect failed because target host or object does not exist"
    Maybe there was an entry for myserver in the local hosts file, but it specified a bad IP address. This will result in "ORA-12545: Connect failed because target host or object does not exist"
    Maybe the IP was good, but there is no listener running: "ORA-12541: TNS:no listener"
    Maybe the IP was good, there is a listener at myhost, but it is listening on a different port. "ORA-12560: TNS:protocol adapter error"
    Maybe the IP was good, there is a listener at myhost, it is listening on the specified port, but doesn't know about SERVICE_NAME = curley. "ORA-12514: TNS:listener does not currently know of service requested in connect descriptor"
    =====================================

  • I just bought ilife11 from a friend and tried to install it but it says I need to have 10.6 or later.&#160; I have 10.5.4.&#160; Can I upgrade to the latest version with a "download" ?

    i just bought ilife11 from a friend and tried to install it but it says I need to have 10.6 or later.  I have 10.5.8.  Can I upgrade to the latest version with a "download" ?

    entatty5 wrote:
    ... snow leopard, which I don't have.  Do I have to go program upgrade  by upgrade? I can't just go from 10.5.8 to the latest?  Thanks for the help.
    You need Snow Leopard before you can go to Lion...
    Check that your Mac meets the System Requirements...
    Snow Leopard Specs:
    http://support.apple.com/kb/SP575
    Lion Specs:
    http://www.apple.com/macosx/specs.html

  • Oracle Data Miner 10.1.0.2 Interoperate with Database 10g Release 2

    Hi all,
    I cannot connect from Oracle Data Miner to a newly upgraded Database 10g Release 2 with Data Mining option. This database was 10.1.0.2 before upgrade, and I could connect via Oracle Data Miner before the upgrade (though it needs to be upgraded to 10.1.0.3+ for data mining to function).
    I have similar problem for a new installation on another computer. The error message in either case is "Cannot connect to specified Data Mining Server. Check connection information and try again."
    I can use SQL*Plus to login as the data mining user using the net service corresponding to the connect string. I check the v$option and DBA_REGISTRY as per the Data Mining Admin. documentation to verify that the data mining option exists and is valid. I am able to use the same connect string "host:port:SID" to connect from Analytical Workspace Manager to verify that the connectivity is OK.
    Furthermore, some Oracle by Example seems not valid for a DB of version 10.2. For example, at the URL http://www.oracle.com/technology/obe/obe10gdb/bidw/odm/odm.htm#p, the point 6 <ORACLE_HOME>\dm\lib\odmapi.jar is not applicable, because the path <ORACLE_HOME>\dm no longer exists.
    Therefore, I have query if Oracle Data Miner 10.1.0.2 can work with DB 10.2? What procedure should I follow? Please advise.
    Thanks and regards,
    lawman

    I am waiting on the beta version since I have installed Oracle10gR2.
    I've been checking the OTN website every day to see when it is released.
    If it is not a bother, can you send me an email when I can download it.
    Thanks in advance.
    Have a wonderful day/weekend,
    Andy

  • Problem connecting developer 6i with database 10g express edition

    i have installed developer 6i on windows xp
    then installed database 10g express edition in different folders
    i am able to connect to the database 10g from the sql command line
    but i cannot connect from the form builder in 6i
    as soon as i try to connect the form builder shuts down
    i have copied tnsnames.ora from the 10g to the 6i and it doesn't connect
    does anyone know why this is happening ?
    please help me solve this issue ???

    then installed database 10g express edition in different foldersWhich version ? Universal or Western European ?
    Universal version uses AL32UTF8 character set and Forms 6i does not work with it.

  • Can I use Oracle Forms Services 11g with Database 9.2.0.8.0?

    Hi everyone.
    My department is evaluating development tools in order to build new web applications, and also possibly to migrate current applications buit with Oracle Forms 6.0.5.34.0. Our database is Oracle9i Enterprise Edition Release 9.2.0.8.0 - 64bit.
    We have read that the newest Oracle Forms version is Oracle Forms Services 11g. Is Oracle Forms Services 11g compatible with Oracle9i Enterprise Edition Release 9.2.0.8.0 - 64bit? or would we have to migrate our RDBMS to Oracle 11g?
    If our database is compatible, what would we need to develop and deploy applications with Oracle Forms Services 11g?
    Many thanks in advance.

    Wheter it's compatible or not: Database 9.2.0.8 is in sustaining support which means you won't get patches for it. So even if it is compatible I'd opt to upgrade to a newer version, as I wouldn't feel comfortable having a not-supported product out in production.
    Have a look at the certification matrix for supported configurations
    http://www.oracle.com/technetwork/middleware/downloads/fmw-11gr1certmatrix.xls
    As for the requirements; most things can be found on the forms homepage on OTN:
    http://www.oracle.com/technetwork/developer-tools/forms/
    or at the documentation:
    http://download.oracle.com/docs/cd/E17904_01/index.htm
    cheers

  • Oracle instance client version with Oracle RDBMS 11G

    We are planning to upgrade oracle from 10G  i.e. 10.2.2.4  to 11G R2, which  oracle instance client version should we use while we do the upgrade and after upgrade is completed to 11G R2
    Thanks
    Abu

    http://service.sap.com/instguides
    --> Database Upgrades
    --> Oracle
    In the upgrade guide to Oracle 11.2 it's section
    3.8 Updating the Oracle Instant Client
    Markus

  • Where can i get JDK latest version with complier

    HI
    I have been posting msg about this topic be4 but I only get one preson reply my msg. He did kind of help me but i wanted a link so that i can just click and get the JDK.
    I got the Java 2 runtime enviroment 1.3.1
    It said it comes with java complier which is a big bull shit
    I follow their link and it a mess @#$% . So can anyone give a a LINK plz so that I can get a poper version of JDK latest version that have everything (complier) ETC so that I can complier and run my program.
    So can some one Plz tell me where to get it
    Thanks you in advance

    http://java.sun.com/j2se/1.3/
    from here select the linkrelevant for your OS.
    Then from the next screen click Continue
    Next screen click Accept
    Next screen allows download

  • Oracle Clinical Latest Version

    I would like to know the latest version and latest patch release for Oracle Clinical and TMS.
    Thanks in advance for any help.

    Latest version for TMS is 4.0.4 and OC is 4.0 patch set 2. I think patch set 3 is out or due any times.
    Meta link will be a better source for these updates.

  • Oracle Jinitiator latest version

    Hello!
    which is the latest version of Oracle Jinitiator available for oracle forms and which parameters to be reconfigure for usage of newer version (if available)
    Thanks in Advance

    It would be 1.3.28 and as Grant Ronald said, Oracle Jinitiator has a future!!
    Have a look here:
    For the official news on Jinit see
    http://groundside.com/blog/GrantRonald?p=557&more=1&c=1&tb=1&pb=1#more557

  • Latest versions with SP/EHP numbers

    1. what is the current latest version of PI 7.1 , along with SP and Ehp Numbers.
    2. Is there any place in sdn, where i can find the latest version of SAP softwares like BI, PI, EP, MDM etc along with SP/Ehp numbers.
    thanks,
    Madhu.

    Madhu,
    You can find all of PI 7.1 release notes here:
    http://help.sap.com/saphelp_nwpi71/helpdata/en/52/a21f407b402402e10000000a1550b0/frameset.htm
    EHP can be found at:
    SAP Enhancement Package 1 for<br>SAP NetWeaver Process Integration 7.1
    You can see of the other modules in their respective home pages like for MDM:
    SAP NetWeaver Master Data Management 7.1 [original link is broken]
    ---Satish

  • Oracle Apps 11i Cloning with +ASM 10g Database

    Hi,
    Can somebody help Apps cloning on the issue facing. Please provide in detailed process Apps Cloning with +ASM.
    Trying to Clone 11i Apps environment(11.5.10.2) and Db 10.2.0.4. The database is on +ASM.
    1. Copied all the application files from SOURCE to TARGET ( source and target are different servers)
    2. Database restored from source and the TARGET database is up and running( Database servers TARGET and SOURCE are 2 different servers.
    3. As per doc id 230672.1 , preclone was successful in apps and db servers.
    ISSUE:
    =====
    As per doc id 230672.1 , if we run adcfgclone on database server that messedup the database which is running already on the TARGET server, because adcfgclone recreate control files and all which is already intact for us in +ASM.
    Question:
    ======
    1. do we still need to do anything on the TARGER database server? if need to run , please provide the detailed steps
    2. Do we need to run adcfgclone on apps server? please provide the detailed steps.
    Thank You,
    Dheeru.

    Yes, restored and the database is up and running.
    Then i ran adcfgclone dbtier on database which messedup whole database. Deleted all the file in ASM disk groups and try to restore the database threw RMAN.
    Got new error, Please see below.
    In the first run previously i got same error but fixed by creating control_files='+LASR','+FLASH' in pfile, again it's giving same error.
    Also pasting PFILE.
    Any idea on this.
    Recovery Manager: Release 10.2.0.4.0 - Production on Wed Jan 5 17:15:12 2011
    Copyright (c) 1982, 2007, Oracle. All rights reserved.
    connected to target database: LASRT (DBID=1482364021)
    connected to auxiliary database: LASRX (not mounted)
    RMAN>
    RMAN> 2> 3> 4> 5> 6> 7> 8> 9>
    executing command: SET until clause
    using target database control file instead of recovery catalog
    allocated channel: aux1
    channel aux1: sid=872 devtype=DISK
    allocated channel: aux2
    channel aux2: sid=871 devtype=DISK
    Starting Duplicate Db at 05-JAN-11
    contents of Memory Script:
    set until scn 11188183994442;
    set newname for clone datafile 1 to new;
    set newname for clone datafile 2 to new;
    set newname for clone datafile 3 to new;
    set newname for clone datafile 4 to new;
    set newname for clone datafile 5 to new;
    set newname for clone datafile 6 to new;
    set newname for clone datafile 7 to new;
    set newname for clone datafile 25 to new;
    set newname for clone datafile 26 to new;
    set newname for clone datafile 38 to new;
    set newname for clone datafile 43 to new;
    set newname for clone datafile 44 to new;
    set newname for clone datafile 45 to new;
    set newname for clone datafile 46 to new;
    set newname for clone datafile 47 to new;
    set newname for clone datafile 48 to new;
    set newname for clone datafile 49 to new;
    set newname for clone datafile 50 to new;
    set newname for clone datafile 51 to new;
    set newname for clone datafile 52 to new;
    set newname for clone datafile 53 to new;
    set newname for clone datafile 54 to new;
    set newname for clone datafile 55 to new;
    set newname for clone datafile 56 to new;
    set newname for clone datafile 57 to new;
    set newname for clone datafile 58 to new;
    set newname for clone datafile 59 to new;
    set newname for clone datafile 60 to new;
    set newname for clone datafile 61 to new;
    set newname for clone datafile 62 to new;
    set newname for clone datafile 63 to new;
    set newname for clone datafile 64 to new;
    set newname for clone datafile 65 to new;
    set newname for clone datafile 66 to new;
    set newname for clone datafile 67 to new;
    set newname for clone datafile 68 to new;
    set newname for clone datafile 69 to new;
    set newname for clone datafile 70 to new;
    set newname for clone datafile 71 to new;
    set newname for clone datafile 72 to new;
    restore
    check readonly
    clone database
    executing Memory Script
    executing command: SET until clause
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    Starting restore at 05-JAN-11
    channel aux2: starting datafile backupset restore
    channel aux2: specifying datafile(s) to restore from backup set
    restoring datafile 00003 to +LASR
    restoring datafile 00004 to +LASR
    restoring datafile 00006 to +LASR
    restoring datafile 00007 to +LASR
    restoring datafile 00025 to +LASR
    restoring datafile 00045 to +LASR
    restoring datafile 00046 to +LASR
    restoring datafile 00049 to +LASR
    restoring datafile 00051 to +LASR
    restoring datafile 00053 to +LASR
    restoring datafile 00054 to +LASR
    restoring datafile 00058 to +LASR
    restoring datafile 00060 to +LASR
    restoring datafile 00062 to +LASR
    restoring datafile 00064 to +LASR
    restoring datafile 00066 to +LASR
    restoring datafile 00068 to +LASR
    restoring datafile 00070 to +LASR
    restoring datafile 00071 to +LASR
    restoring datafile 00072 to +LASR
    channel aux2: reading from backup piece /ora_export/lasrx/15m16kuo_1_1
    channel aux1: starting datafile backupset restore
    channel aux1: specifying datafile(s) to restore from backup set
    restoring datafile 00001 to +LASR
    restoring datafile 00002 to +LASR
    restoring datafile 00005 to +LASR
    restoring datafile 00026 to +LASR
    restoring datafile 00038 to +LASR
    restoring datafile 00043 to +LASR
    restoring datafile 00044 to +LASR
    restoring datafile 00047 to +LASR
    restoring datafile 00048 to +LASR
    restoring datafile 00050 to +LASR
    restoring datafile 00052 to +LASR
    restoring datafile 00055 to +LASR
    restoring datafile 00056 to +LASR
    restoring datafile 00057 to +LASR
    restoring datafile 00059 to +LASR
    restoring datafile 00061 to +LASR
    restoring datafile 00063 to +LASR
    restoring datafile 00065 to +LASR
    restoring datafile 00067 to +LASR
    restoring datafile 00069 to +LASR
    channel aux1: reading from backup piece /ora_export/lasrx/16m16kuo_1_1
    channel aux1: restored backup piece 1
    piece handle=/ora_export/lasrx/16m16kuo_1_1 tag=TAG20110103T144231
    channel aux1: restore complete, elapsed time: 00:18:55
    channel aux2: restored backup piece 1
    piece handle=/ora_export/lasrx/15m16kuo_1_1 tag=TAG20110103T144231
    channel aux2: restore complete, elapsed time: 00:21:20
    Finished restore at 05-JAN-11
    sql statement: CREATE CONTROLFILE REUSE SET DATABASE "LASRX" RESETLOGS ARCHIVELOG
    MAXLOGFILES 16
    MAXLOGMEMBERS 2
    MAXDATAFILES 72
    MAXINSTANCES 1
    MAXLOGHISTORY 7303
    LOGFILE
    GROUP 1 SIZE 20 M ,
    GROUP 2 SIZE 20 M ,
    GROUP 3 SIZE 20 M
    DATAFILE
    '+LASR/lasrx/datafile/system.331.739646133'
    CHARACTER SET WE8ISO8859P1
    released channel: aux1
    released channel: aux2
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 01/05/2011 17:36:50
    RMAN-06136: ORACLE error from auxiliary database: ORA-01503: CREATE CONTROLFILE failed
    ORA-01276: Cannot add file +LASR/lasrx/controlfile/current.332.739640887.  File has an Oracle Managed Files file name.
    =======================================================================
    PFILE
    ====
    *.aq_tm_processes=2
    *.audit_file_dest='/10g/app/oracle/admin/lasrx/adump'
    *.background_dump_dest='/10g/app/oracle/admin/lasrx/bdump'
    *.compatible='10.2.0'
    *.core_dump_dest='/10g/app/oracle/admin/lasrx/cdump'
    *.control_files='+LASR','+FLASH'
    *.db_block_size=8192
    *.db_cache_size=318767104
    *.db_create_file_dest='+LASR'
    *.db_domain=''
    *.db_file_multiblock_read_count=8
    *.db_files=500
    *.db_name='LASRX'
    *.db_recovery_file_dest='+FLASH'
    *.db_recovery_file_dest_size=5120M
    *.dml_locks=5000
    *.job_queue_processes=0
    *.local_listener='(ADDRESS=(PROTOCOL=TCP)(HOST=hct431oractd002.mfia.state.mi.us)(PORT=1524))'
    *.log_archive_dest_1='LOCATION=+FLASH/LASRX'
    *.log_archive_format='%t_%s_%r.arc'
    *.log_buffer=30551040
    *.log_checkpoint_interval=100000
    *.log_checkpoint_timeout=72000
    *.log_checkpoints_to_alert=TRUE
    *.max_dump_file_size='20480'
    *.nls_comp='binary'
    *.nls_date_format='DD-MON-RR'
    *.nls_language='american'
    *.nls_length_semantics='BYTE'
    *.nls_numeric_characters='.,'
    *.nls_sort='binary'
    *.nls_territory='america'
    *.O7_DICTIONARY_ACCESSIBILITY=FALSE
    *.open_cursors=500
    *.open_links=20
    *.parallel_max_servers=12
    *.parallel_min_servers=0
    *.pga_aggregate_target=681574400
    *.processes=800
    *.query_rewrite_enabled='TRUE'
    *.remote_login_passwordfile='EXCLUSIVE'
    *.resource_manager_plan=''
    *.session_cached_cursors=100
    =============================

  • Using Oracle Text for searching with UCM 10g

    I am using Oracle text with UCM 10gR3 and Site Studio 10gR4 and I am trying to sort the search results by relevancy and to also include a snippet of the retrieved document. I have the fields that the SS_GET_SEARCH_RESULTS service returns but the relevancy score is always equals 5 and the snippet contains characters such as &lt; idcnull, /p, etc., which you can see are XML/HTML/UCM tags but which result sin even more strangeness in the snippet if I try to remove them programmatically.
    I have read the Oracle Text documentation and there appear to be ways you can configure Oracle Text but I am not clear at all on what I can do from UCM. It looks like the configuration is either done in database tables or in the query itself, neither of which are readily configurable to me.
    Is anyone experienced in this or know of any documentation this might help?
    Bill

    Hi
    If I remember correctly then this issue was seen with an older version of OTS component and Core Update patch / bundle . Upgrade the UCM instance with the latest CS10gr35 update bundle patchset 6907073 and also upgrade OTS component from the same patchset .
    Let me know how it goes after this .
    Thanks
    Srinath

  • OracleBI Beans 10g (10.1.2)  is compatible with database 10G Release 2 ?

    hello,
    i have downloaded Oracle 10G release 2 for windows.
    Is OracleBI Beans 10g (10.1.2) is compatible ?
    thanks

    No, BI Beans is not currently certified for use with 10gR2. We are currently working with the OLAP team to certify against this version. For more information please refer to Oracle Metalink.
    Hope this helps
    Business Intelligence Beans Product Management Team
    Oracle Corporation

Maybe you are looking for