How to find OID version and patches applied on OID Home ?

Oracle Internet Directory (OID) consists of Repository (LDAP objects stored in Oracle Database under schema ODS) and OID Software (created during OID installation). This post covers steps to find OID version and patches applied to OID ORACLE_HOME .

For steps on how to find version of WebLogic click here , E-Business Suite version click here , and for WebGate version click here

OID version from LDAP Entry ?

$ORACLE_HOME/bin/ldapsearch -h <oid_host> -p <oid_port> -D cn=orcladmin -q -s base -b “” objectclass=* orcldirectoryversion orclcompatibleversion

You should see output like

orcldirectoryversion=OID 11.1.1.5.0

where 11.1.1.5.0 represents OID version 11.1.1.5

Note: For OID 11.1.1.6 or higher version user value for attribute orclcompatibleversion as OID version.

OID version from OID Executable

$ORACLE_HOME/bin/oidldapd -version

You should see output like
oidldapd: Release 11.1.1.5.0 – Production on thu mar 22 14:34:05 2012

Copyright (c) 1982, 2011 Oracle.  All rights reserved.

OID version from database

Connect as user ODS and run query
SQL> select attrval from ds_attrstore where entryid = 1 and attrname = ‘orcldirectoryversion’;

How to find patches installed in OID Oracle Home
$ORACLE_HOME/OPatch/opatch lsinventory

where ORACLE_HOME is directory in which OID software is installed

output like below represents that OID software is 11.1.1.5.0 with 13 patches

_________

Installed Top-level Products (2):

Oracle Identity Management 11g                                       11.1.1.2.0
Oracle Identity Management 11g Patchset                              11.1.1.5.0
There are 2 products installed in this Oracle Home.

Interim patches (13) : ******
__________

About the Author Masroof Ahmad

Leave a Comment:

4 comments
Add Your Reply