OID with 10gR2 database?

Is it possible to install OID using a 10gR2 database as the metadata repository?
I'm getting an error but was wondering if there's a workaround? I'm using Oracle 10gR2 Database, OAS 10.1.3, and I'm installing Identity Managment from 10.1.2 to get OID and SSO components. Does the database have to be installed from the OAS 10.1.2 installation for it to work, or can I use my own database?
The error I'm getting is the following:
Install has determined that the OID schema in this Metadata Repository is not the correct version to support this version of Identity Management. You must have an OID schema version 10.1.2.0.2 to 10.1.2.9.9. Please select another Metadata Repository or upgrade the OID schema in this Metadata Repository to a compatible version.
Thanks,
Nora

Hi Nora,
The note given below would help you in this issue.
Note 386726.1 - SSO-Schema Version Errors Installing Identity Management into RepCA created Metadata Repository
Do lemme know if your issue is resolved.
Regards,
Sindhiya V.

Similar Messages

  • Applying 11gR2 GI PSU with 10gR2 databases

    On a Linux-x86-64 cluster I have 11.2.0.1 Clusterware/ASM/Listener running without patches and a RAC database running under the old 10.2.0.4.1 home (PSU 1). I'm thinking of applying the GI PSU 9655006 for 11.2.0.1.2 but I notice it includes the database PSU for 11.2.0.1.2 and I am afraid the patch will attempt to update the 10.2.0.4 home.
    Looking at the Readme for the GI PSU I can't find any warnings about applying the patch with 10g databases present. Has anyone tried this? Thanks in advance.

    Hi Chucky,
    actually it will not.
    Before a patch is installed OPatch checks the inventory if the prerequisites are o.k. and since 10.2 is not a valid prerequisite for an 11.2 patch, it won't install into the DB home.
    The reason the patch includes the DB patch is, that the 11.2 GI home includes oracle db executable (for ASM) and that needs to be patched.
    However if you still fear that something may go wrong, you can explicitly tell opatch auto to only patch the GI home.
    It's in the readme or if you execute opatch auto -h:
    -oh Database/Clusterware home locations
    comma_delimited_list_of_oralcehomes_to_patch
    The default is all applicable Oracle Homes including
    the clusterware home .Use this option to patch RDBMS homes where
    no database is registered or any specific database home or
    clusterware home.
    Sebastian

  • Upload file in JSP with Oracle Database 10gR2

    How to upload file with oracle database 10gR2??
    i can't find how to upload..
    i've tried to create a procedure in oracle and execute in netbeans but the file save in directory and then from directory save to database.
    it means the file save in 2 location, in directory and database..
    does anybody know how to save file direct from the JSP file into database without save in directory?
    this is the procedure..
    create or replace PROCEDURE load_file (
    p_id number,
    p_photo_name in varchar2) IS
    src_file BFILE;
    dst_file BLOB;
    lgh_file BINARY_INTEGER;
    BEGIN
    src_file := bfilename('DIR_TEMP', p_photo_name);
    -- insert a NULL record to lock
    INSERT INTO temp_photo
    *(id, photo_name, photo)*
    VALUES
    *(p_id , p_photo_name ,EMPTY_BLOB())*
    RETURNING photo INTO dst_file;
    -- lock record
    SELECT photo
    INTO dst_file
    FROM temp_photo
    WHERE id = p_id
    AND photo_name = p_photo_name
    FOR UPDATE;
    -- open the file
    dbms_lob.fileopen(src_file, dbms_lob.file_readonly);
    -- determine length
    lgh_file := dbms_lob.getlength(src_file);
    -- read the file
    dbms_lob.loadfromfile(dst_file, src_file, lgh_file);
    -- update the blob field
    UPDATE temp_photo
    SET photo = dst_file
    WHERE id = p_id
    AND photo_name = p_photo_name;
    -- close file
    dbms_lob.fileclose(src_file);
    END load_file;

    Well your Oracle procedure is designed to load a file, so that's what it does. If you want it to load from a data stream such as an upload, you need to rewrite it accordingly.
    So far this is not a Java question at all.

  • Question: 10gR2 database can not see the 11gR2 ASM diskgroup?

    Hi there,
    env:
    uname -rm
    2.6.18-92.1.22.el5xen x86_64
    Single server(non-RAC)
    note: we don't want to upgrade 10gr2 database into 11gR2 yet. But we created the 11gR2 ASM, then a 11gr2 database on ASM, and plan to migrate datafile in 10gR2 database to 11gR2 ASM
    1. oracle 10gR2 installed first version: 10.2.0.3.0
    2. then install 11gR2 Grid Infrastructure, and created ASM (version 11gr2)
    $ sqlplus / as sysasm
    SQL*Plus: Release 11.2.0.1.0 Production on Tue Oct 19 10:30:56 2010
    Copyright (c) 1982, 2009, Oracle. All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Automatic Storage Management option
    SQL> col name form a15
    SQL> col COMPATIBILITY form a15
    SQL> col DATABASE_COMPATIBILITY form a15
    SQL> l
    1* select name , STATE, COMPATIBILITY, DATABASE_COMPATIBILITY from v$asm_diskgroup
    SQL> /
    NAME STATE COMPATIBILITY DATABASE_COMPAT
    ORCL_DATA1 MOUNTED 11.2.0.0.0 10.1.0.0.0
    ORA_DATA MOUNTED 10.1.0.0.0 10.1.0.0.0
    3. in 10gR2 database
    sqlplus /
    SQL*Plus: Release 10.2.0.3.0 - Production on Tue Oct 19 12:12:31 2010
    Copyright (c) 1982, 2006, Oracle. All Rights Reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bit Production
    With the Partitioning and Data Mining options
    SQL> select * from v$asm_diskgroup;
    no rows selected
    4. pin the node into css
    # /u01/app/product/11.2.0/grid/bin/crsctl pin css -n mynodename
    CRS-4000: Command Pin failed, or completed with errors.
    Question: 10gR2 database can not see the 11gR2 ASM diskgroup?
    please help
    Thanks
    Scott

    What is the output of
    olsnodes -t -n
    Also, see unix error log and ohasd error log if you find anything in that

  • Trying to access 10gr2 database from sqlplus utility but it connects to 11g

    Hi All,
    I am facing below issue while access 10gr2 database from sqlplus.
    I am having two oracle homes on one server one belongs to 11gr2 and another belongs to 10gr2.
    I want to access a 10gr2 database through sqlplus utility.but instaed of connecting to 10gr2 it is connecting to 11gr2 after I enter a user name and passowrd.
    I have set all the env variables such as oracle_home ,oracle_sid and path with respect to Oracle 10gr2.
    Can you please let me kno what I need to do to connect to 10gr2 database and not 11gr2 database through sql plus.
    Let me know if I need to give any more details on this.
    Best Regards,
    Dipti S

    Hi Rocky,
    I got the resolution.
    I made a mistake by creating an oracle instance/service(e.g. fsdmo) when Oracle_home was pointing to 11gR2 Directory.so that service was refering to 11gr2 oracle home.
    hence when I was setting oracle_sid(fsdmo) and trying to access database instance from 11g sqlplus utility ,it was directing to 11g and not 10g since oracle service was pointing to 11g.
    So now after chnaging the oracle home directory to 11g,I am creating a service and its working fine.
    thank you so much for responding.
    hope I am clear with my reply.
    Best Regards,
    Dipti S

  • Oracle Discoverer 4i (portal db - oracle 8i) connectivity issue with 11g database

    Hi All
    We have oracle discoverer 4i with portal db (oracle 8i).
    We connect to the external databases using db links in the portal db and the reports will use the db link to retrieve the data from views in the external databases.
    External databases we were connecting is oracle 10g version and now we have upgraded these databases to 11g version.
    Now i have a created a new db link to this 11g database and i have created a new EUL in portal to connect to this 11g database.
    But when i try to create a report using the discoverer from this new EUL after login to the discoverer we get a "cannot connect to database" error.
    We have all the necesscary privilege to the user and the new database link works perfectly fine. (when we try to query directly using SQL plus from portal database using this db link the query works perfectly fine).
    Im not sure if this is a compatibility issue in connecting from oracle disc 4i to a 11g database.
    Can any one advise if this is the case and if there is any workaround for this?
    Regards,
    Raj

    Are you saying you are having issues with a database link between 8i and 11g (pl post exact versions to 4 digits) ? If so, it should be expected as database links between these two versions are not supported. Is there a reason you cannot upgrade the portal database to at least 10gR2 ?
    See MOS Doc 207303.1
    HTH
    Srini

  • Oracle Forms 6i client/server against an Oracle 10gR2 database

    Hello
    We have the following situation:
    Oracle Forms6i/Reports6i client server application against an Oracle 8i cost-based database. we want to migrate this application
    step 1:
    Migrate the database to 10gr2, but do not touch the client application
    Go live
    step 2:
    Migrate the development environment to 6i webforms.
    Production environment stays client server.
    With this construction we can still create new patches/functionality.
    step 3:
    Migrate to Forms10gR2 (and reports)
    I know Forms 6i is not supported anymore.
    My question is on step 1.
    When I read NOTE: 338513.1 entitled "Is Forms/Reports 6i Certified To Work Against Oracle Server 10g Rel 1, Rel 2 or 11g?" carefully
    it says that Forms 6i is not certified against 10gR2.
    On OTN I read several posts that this works ok (assuming you do not use the wrong character set).
    I also read on OTN that patch 18 (which is only supported for EBS customers) is certified against 10gR2.
    The questions:
    - Is Oracle Forms patch 18 certified against an Oracle 10gR2 database? (or only for EBS)
    - Is there anybody out there that can confirm that Oracle Forms 6i C/S works against Oracle 10gR2
    Regards Erik

    Thank you.
    Now I found it.
    But how do I read that page.
    It says:
    Client Certifications
    OS      Product      Server Status
    XP      6.0.8.27.0 Patch 18      N/A      Desupported
    Application Tier Certifications
    OS      Product      Server      Status      
    XP      6.0.8.27.0 Patch 18      9.2      Desupported
    XP      6.0.8.27.0 Patch 18      10g      Desupported
    I read this as follows:
    Patch 18 was certified agains a 10g database in a webforms environment.
    No client server mentioned and Server 10g , so no 10gR2!
    I'm I right?
    Regards Erik

  • Manually register rman backup with oracle database 10g

    Dear All.
    I want to restore full backup of database.
    I have not configure flash_recovery_area.
    how i can manually register full rman backup of database with oracle database 10g.?
    Please help me.
    Thanks & Regards
    Ravi Kumar

    This is the 10gR2 documentation on the CATALOG command :
    http://docs.oracle.com/cd/B19306_01/backup.102/b14194/rcmsynta011.htm#sthref230
    You must be specific when stating the version you are running.  Commands may be limited or unavailable in older versions versus more recent versions of Oracle.
    Hemant K Chitale

  • How to do mappings in owb with different databases

    hi all,
    I have two different databases with in same server one for staging and target.
    How to connect both target and staging databses to do the mappings using OWB??
    Is it possible?? if possible how to do the mappings??
    for ex:
    Now i registered my OWB with bcp database for both staging tables and target tables.
    now i want to load data of staging tables into bcpsource database and
    target tables into bcptarget database seperatly.

    10gR2 does have connectors. They were introduced at the same time as locations.
    The connection attributes (eg host, port, tnsname) are set against the location, not the connector. A connector simply defines the fact that there is a path from one location to another (eg via a database link). All the connection information remains on the location object.
    The process flow packages within a location can each be deployed on their own simply by selecting the location in the Control Center Manager, and setting a deployment action against the package (or by using scripting, as mentioned). However, a process flow cannot be deployed independently of it's package - it's all or nothing.
    Nigel.

  • Oracle OCP book in 10gR2 database administration

    Dear All,
    I just finished and paased the OCA in 10gR2 database administration.
    Can some body recommend me a good recommended book for me to start the OCP study. I do not need the Orcale pdf's links as i am now using those, need a good text book to read.
    Many thanks
    user536588.

    The best material you can have for the certification I think is here:
    http://www.selftestsoftware.com/dept.aspx?dept%5Fid=6070
    I used it for my certification. The pdf is not the key, but the questions you have with.

  • Link OID with existing tables

    Is it possible to use existing tables to host some of the informations or do I have to create a new database from scratch for OID ?
    If I have to create a new database how can I synchronize information from the LDAP directory and my tables ?
    Any help is welcome.
    Monique

    Hello everyone:
    Let me try to answer these question one at a time.
    Monique:
    You do not need to create a new database to install OiD. You can use an existing databse but keep this in mind. The database must be a compatible version for OiD. For instance, if you are installing version 2.0.6 of OiD, then the database you install it on must be version 8.1.6
    OiD will create its own schema of table and views. It will not use any exisiting ones that you have created. So the choice is yours. You can create a new database at the time you install OiD or use an existing one. I hope this answers your questions. If not post another.
    Thank you Eddie for your "2 cents" on alternative ways of viewing data in our LDAP server. I want to emphasize a word you used and that word is "browse". Browsing the LDAP server with a SQL type of tool is ok but manipulation of the data should only be done with an approved tool. You wouldnt want to change information in OiD via SQL even though you can. Oracle wants you to treat OiD as if it was an LDAP server because thats what it is. So you should only use standard V2 and V3 LDAP protocol for changing any data. There are a number of 3rd party programs that you can also use to manipulate data in our LDAP server such as JNDI, Netscapes LDAP SDK, and of course Oracles own C, and PL/SQL LDAP API's.
    The database user's that own all of the OiD schema objects are ODS and ODSCOMMON.
    Last but not least Norzaimi:
    Go to www.oracle.com On that website click on the search button and enter "Internet Directory" without the quotes. Leave off the word "Oracle". This should return you about a dozen articles with some very good information. Let me know if you are still unable to see this.
    Thanks,
    Jay
    null

  • OWB 10gR1 Repository and 10gR2 Database

    Hi,
    we have a problem in installing OWB Design Repository 10gR1 on 10gR2 Database. The Repository assistant hangs with message "INS0003 The User should have DBA privileges to complete the installation". I'm connected as SYS....
    Regards,
    Hakon.

    Her is a workaround I get from Oracle, may it works. Till this time I can't test it, try it on your own risk.
    Regards
    Norbert
    >>
    Using the 050621 shiphome release of 10gR2 on Linux we have noticed the INTERACTIONEXECUTE stored procedure is defined with definer rights - it should be invoker rights.
    Using the stored procedure to create an AW will create the AW in the SYS schema.
    The only workaround is to redefine the stored procedure in the SYS schema with invoker rights.
    CREATE OR REPLACE function interactionexecute(input CLOB) return varchar2 AUTHID CURRENT_USER
    as language java name 'oracle.AWAction.Interaction.Execute(oracle.sql.CLOB)
    return java.lang.String';
    <<<<

  • Use IBM easy tier on DS8700 storage system with oracle database

    Hi,
    We search best practices to integrate IBM SSD and easy tier technologies on Oracle 10gR2/11gR1/11gr2 database.
    is that someone already done this type of integration with mixed Oracle and IBM technologies ?
    Thanks
    Arnaud

    user8949908 wrote:
    Easy Tier is feature on the DS8700 and the DS8800 that offers enhanced capabilities through automated hot spot management and data relocation, auto-rebalancing, manual volume rebalancing and volume migration, rank depopulation, merging of extent pools, and thin provisioning support.
    Easy Tier determines the appropriate tier of storage based on data access requirements and then automatically and nondisruptively moves data, at the subvolume or sub-LUN level, to the appropriate tier (like SSD) on the DS8000.
    so I search feedback on this technology used in conjunction with Oracle database.
    It's a question oriented for IBMer ...
    Regards
    ArnaudAs I said, this all happens several layers away from anything the Oracle database would know (or care) about. Just like my HP-SAN. It does a lot of the kinds of things you describe above and actually, not only does oracle not know or care, neither does the OS. All of that work is being done by a sub-system that is totally abstracted from the OS and even more abstracted from the Oracle rdbms. When oracle ( or any app) needs data, it sends a request to the OS to "give me X- number of bytes, beginning at offset Y in file Z". He doesn't even know what kind of device file Z is. And with dedicates storage systems like a SAN (and it sounds like Easy Tier) even the OS doesn't really know or care. It simply passes the request along to the interface to the storage system.

  • OID Question and Database Naming

    Is OID required for database name resolution? For example, we want to connect to SID1 and we have an LDAP server running. Do we make an entry in OID to resolve the name SID1 or do we make an entry in the LDAP server or both?

    You can setup enterprise security user and authenticate users with OID user id and password.
    You can use dbms_lap to sync all users initially. And for future db id, create user in OID.

  • After REFRESH the cached object is not consistent with the database table

    After REFRESH, the cached object is not consistent with the database table. Why?
    I created a JDBC connection with the Oracle database (HR schema) using JDeveloper(10.1.3) and then I created an offline database (HR schema)
    in JDeveloper from the existing database tables (HR schema). Then I made some updates to the JOBS database table using SQL*Plus.
    Then I returned to the JDeveloper tool and refreshed the HR connection. But I found no any changes made to the offline database table JOBS in
    JDeveloper.
    How to make the JDeveloper's offline tables to be synchronized with the underling database tables?

    qkc,
    Once you create an offline table, it's just a copy of a table definition as of the point in time you brought it in from the database. Refreshing the connection, as you describe it, just refreshes the database browser, and not any offline objects. If you want to syncrhnonize the offline table, right-click the offline table and choose "Generate or Reconcile Objects" to reconcile the object to the database. I just tried this in 10.1.3.3 (not the latest 10.1.3, I know), and it works properly.
    John

Maybe you are looking for

  • My ipod touch will not show up under my devices  wlp!!!

    My son has an ipod Nano, and recently received an ipod touch.  The Nano will appear under devices in itunes, but the ipo touch will not.  I have tried everything, I am ready to throw it out the window.  Any suggestions from anyone?

  • Financial Year end Change

    Dear all The Finnancial year end for my client was changed from 31/12/09 to 31/10/09. The financial periods was created as 12 months in the fiscal year. This has now decreased to 10 months. I can delete the last two periods and create a new fiscal ye

  • LinkedIn Samsung Note 10.1 not working

    Ive tried all the settings, downloaded the LinkedIn mobile app. I can log in but thats as far as I can go. All i I get after logging in is a blank screen. Is anyone else having this problem?

  • Error when saving response as a PDF

    Hi, Using forms central with the following form - https://adobeformscentral.com/?f=AIs6IyvchFd81PYTEhbxlw - when I try "save a response as a pdf" the file comes with an error. The logo at the top stays but it is followed by two blank pages and the re

  • HT201210 My ipad keeps returning to the home page mid game, web browsing? How can I rectify?

    My Ipad has just started to kick me out randomly when Internet surfing or within Apps. The software is Upto date.