Error in Oracle Database Reference 11g Release 2 (11.2) E25513-04

The V$ASM_FILE view description is probably not correct:
In an Automatic Storage Management instance, V$ASM_FILE displays one row for every Automatic Storage Management file in every disk group mounted by the Automatic Storage Management instance. In a database instance, V$ASM_FILE displays no rows.
However in my environment (Oracle Database 11g Release 2) the view does display rows in a database instance, and the rows returned are actually the same as those returned in ASM instance.

After some testing, we believe that the documentation is correct as written. For example:
ORACLE instance started.
Total System Global Area  780877824 bytes
Fixed Size                  2252968 bytes
Variable Size             754978648 bytes
Database Buffers           16777216 bytes
Redo Buffers                6868992 bytes
Database mounted.
Database opened.
SQL> desc V$ASM_FILE
Name                                      Null?    Type
GROUP_NUMBER                                       NUMBER
FILE_NUMBER                                        NUMBER
COMPOUND_INDEX                                     NUMBER
INCARNATION                                        NUMBER
BLOCK_SIZE                                         NUMBER
BLOCKS                                             NUMBER
BYTES                                              NUMBER
SPACE                                              NUMBER
TYPE                                               VARCHAR2(64)
REDUNDANCY                                         VARCHAR2(6)
STRIPED                                            VARCHAR2(6)
CREATION_DATE                                      DATE
MODIFICATION_DATE                                  DATE
REDUNDANCY_LOWERED                                 VARCHAR2(1)
PERMISSIONS                                        VARCHAR2(16)
USER_NUMBER                                        NUMBER
USER_INCARNATION                                   NUMBER
USERGROUP_NUMBER                                   NUMBER
USERGROUP_INCARNATION                              NUMBER
PRIMARY_REGION                                     VARCHAR2(4)
MIRROR_REGION                                      VARCHAR2(4)
HOT_READS                                          NUMBER
HOT_WRITES                                         NUMBER
HOT_BYTES_READ                                     NUMBER
HOT_BYTES_WRITTEN                                  NUMBER
COLD_READS                                         NUMBER
COLD_WRITES                                        NUMBER
COLD_BYTES_READ                                    NUMBER
COLD_BYTES_WRITTEN                                 NUMBER
SQL> select * from V$ASM_FILE;
no rows selected
SQL>
If you still think that the manual is incorrect, can you provide more details?

Similar Messages

  • Error in Oracle Database Utilities 11g Release 2 (11.2) E22490-05

    In Utilities, there are a couple of typos in Chapter 19 "Using LogMiner to Analyze Redo Log Files" ( link ):
    1. For example, consider the following the SQL statement
    2. To specify that a query not finish until some future time occurs or SCN is reached, use the CONTINUOUS_MINE option and set either the ENDTIME or ENDSCAN option in your call to the DBMS_LOGMNR.START_LOGMNR procedure to a time in the future or to an SCN value that has not yet been reached.
    Gosh! Why I can't insert the link here so that it can be clicked?

    These typos have been fixed in both the 11.2 and 12.1 doc source files. Thank you for bringing it to my attention.

  • Problem with Starting with Oracle Warehouse Builder 11g Release 1

    Hello,
    I want to do the training modules for owb. I installed Oracle Databes 11g2 and was attempting to load all the demo files from the learning module Starting with Oracle Warehouse Builder 11g Release 1 (http://st-curriculum.oracle.com/obe/db/11g/r1/owb/owb11g_update_getting_started_intro/lesson1/less1_start.htm)
    I get an error during the running of the tcl scripts in omb plus. Everything works until the last files in which an object cannot be found. I get the following error:
    OMB02923: Attribute TIMES_CAL_MONTH_CODE of group SALES of operator SALES_OUT does not exist.
    The only reference i can find to this is in the load_sales.tcl file from the zip-file and i have no idea what is going wrong. As a result 5 mappings are missing in the end result (all LOAD_.. mappings)
    Can anyone assist me with this problem and provide a solution?
    thank you in advance

    Additional information after looking at the tcl files and the data in OWB that was loaded.
    The section where the error occurs connects two parts of a mapping, the OUTGRP1 and the SALES_OUT. THe SALES_OUT is based upon the cube Sales. This cube contains all the data that is being connected except for the 'TIMES_CAL_MONTH_CODE'. I have no idea based upon the code of the creation of the cube where they take the data from. None of the connected attributes is named specifically. The cube also contains the several groups, one of these is time. If you open the details of the group the list of input attributes lists the needed attribute but it is not listed seperatly like all the others that are connected for the mapping. Does anybody have an idea how to solve the problem based on this extra information and the code listed below.
    Code connecting outgrp1 and sales_out:
    OMBALTER MAPPING 'LOAD_SALES' \
    ADD CONNECTION FROM ATTRIBUTE 'AMOUNT' OF GROUP 'OUTGRP1' OF OPERATOR 'AGGREGATOR' \
    TO ATTRIBUTE 'AMOUNT' OF GROUP 'SALES' OF OPERATOR 'SALES_OUT'\
    ADD CONNECTION FROM ATTRIBUTE 'COST' OF GROUP 'OUTGRP1' OF OPERATOR 'AGGREGATOR' \
    TO ATTRIBUTE 'COST' OF GROUP 'SALES' OF OPERATOR 'SALES_OUT'\
    ADD CONNECTION FROM ATTRIBUTE 'QUANTITY' OF GROUP 'OUTGRP1' OF OPERATOR 'AGGREGATOR' \
    TO ATTRIBUTE 'QUANTITY' OF GROUP 'SALES' OF OPERATOR 'SALES_OUT' \
    ADD CONNECTION FROM ATTRIBUTE 'CHANNEL_SOURCE_ID' OF GROUP 'OUTGRP1' OF OPERATOR 'AGGREGATOR' \
    TO ATTRIBUTE 'CHANNELS_SOURCE_ID' OF GROUP 'SALES' OF OPERATOR 'SALES_OUT'\
    ADD CONNECTION FROM ATTRIBUTE 'SUBCATEGORY_ID' OF GROUP 'OUTGRP1' OF OPERATOR 'AGGREGATOR' \
    TO ATTRIBUTE 'PROMOTIONS_SOURCE_ID' OF GROUP 'SALES' OF OPERATOR 'SALES_OUT'\
    ADD CONNECTION FROM ATTRIBUTE 'PRODUCT_ID' OF GROUP 'OUTGRP1' OF OPERATOR 'AGGREGATOR' \
    TO ATTRIBUTE 'PRODUCTS_SOURCE_ID' OF GROUP 'SALES' OF OPERATOR 'SALES_OUT'\
    ADD CONNECTION FROM ATTRIBUTE 'CITY_ID' OF GROUP 'OUTGRP1' OF OPERATOR 'AGGREGATOR' \
    TO ATTRIBUTE 'CUSTOMERS_SOURCE_ID' OF GROUP 'SALES' OF OPERATOR 'SALES_OUT' \
    ADD CONNECTION FROM ATTRIBUTE 'FINISH_MONTH' OF GROUP 'OUTGRP1' OF OPERATOR 'AGGREGATOR' \
    TO ATTRIBUTE 'TIMES_CAL_MONTH_CODE' OF GROUP 'SALES' OF OPERATOR 'SALES_OUT'
    Code for creating the cube:
    OMBCREATE CUBE 'SALES'\
    SET PROPERTIES (BUSINESS_NAME, DESCRIPTION, DEPLOYMENT_OPTIONS)\
    VALUES ('Sales Cube', 'Sales Cube', 'Deploy All')
    OMBALTER CUBE 'SALES' ADD MEASURE 'AMOUNT'\
    SET PROPERTIES (DATATYPE,PRECISION,SCALE,BUSINESS_NAME,DESCRIPTION)\
    VALUES ('NUMBER',10,2,'Sales Amount','Sales Amount')
    OMBALTER CUBE 'SALES' ADD MEASURE 'QUANTITY'\
    SET PROPERTIES (DATATYPE,BUSINESS_NAME,DESCRIPTION)\
    VALUES ('NUMBER','Sales Quantity','Sales Quantity')
    OMBALTER CUBE 'SALES' ADD MEASURE 'COST'\
    SET PROPERTIES (DATATYPE,PRECISION,SCALE,BUSINESS_NAME,DESCRIPTION)\
    VALUES ('NUMBER',10,2,'Sales Cost','Sales Cost')
    OMBALTER CUBE 'SALES' ADD DIMENSION_USE 'TIMES'\
    SET REF LEVEL 'MONTH' OF DIMENSION 'TIMES' AT POSITION "1"
    OMBALTER CUBE 'SALES' ADD DIMENSION_USE 'PRODUCTS'\
    SET REF LEVEL 'PRODUCT' OF DIMENSION 'PRODUCTS' AT POSITION "2"
    OMBALTER CUBE 'SALES' ADD DIMENSION_USE 'CHANNELS'\
    SET REF LEVEL 'CHANNEL' OF DIMENSION 'CHANNELS' AT POSITION "3"
    OMBALTER CUBE 'SALES' ADD DIMENSION_USE 'CUSTOMERS'\
    SET REF LEVEL 'CITY' OF DIMENSION 'CUSTOMERS' AT POSITION "4"
    OMBALTER CUBE 'SALES' ADD DIMENSION_USE 'PROMOTIONS'\
    SET REF LEVEL 'SUBCATEGORY' OF DIMENSION 'PROMOTIONS' AT POSITION "5"
    OMBALTER CUBE 'SALES' ADD COMPOSITE_DIMENSION 'SALES_COMP'\
    SET REF DIMENSIONS ('PRODUCTS','CHANNELS','CUSTOMERS','PROMOTIONS');
    OMBALTER CUBE 'SALES' IMPLEMENTED BY SYSTEM
    puts "SALES defined"

  • Removing Oracle Database Enterprise Edition Release 11.2.2.0 on linux 5

    I have installed Pre-Built Developer-VM (for Oracle VM VirtualBox) named Database App Development VM, including Oracle Database 11g Release 2 Enterprise Edition.
    VirtualBox VMs for Developers</title><meta name="Title" content="VirtualBox VMs for Developers&q…
    I would like to remove Oracle Database Enterprise Edition Release 11.2.2.0 on linux 5, but I am getting the error "command not found".
    [oracle@localhost ~]$ cd $ORACLE_HOME
    [oracle@localhost dbhome_2]$ cd deinstall
    [oracle@localhost deinstall]$ ls -ltr
    -rwxr-xr-x 1 oracle oracle 32343 Dec 16  2009 sshUserSetup.sh
    -rw-r--r-- 1 oracle oracle 489   Nov 16  2009 readme.txt
    -rw-r--r-- 1 oracle oracle 3466  Mar 19  2010 deinstall.xml
    -rwxr-xr-x 1 oracle oracle 9369  Jun 10  2010 bootstrap.pl
    -rwxr-xr-x 1 oracle oracle 14776 Jul 15  2010 deinstall.pl
    drwxr-xr-x 2 oracle oracle 4096  Oct  2  2010 response
    drwxr-xr-x 2 oracle oracle 4096  Oct  2  2010 jlib
    -rwxr-xr-x 1 oracle oracle 8474  Oct  2  2010 deinstall
    [oracle@localhost deinstall]$ ./deinstall
    Checking for required files and bootstrapping ...
    Please wait ...
    ./deinstall: line 217: ERROR:: command not found
    Does anybody have an idea?

    Hello Asif,
    I opened deinstall.pl with vi and jumped to line 217. There is nothing in line 217. Its the end of file. In line 216 is the following command:
    $TOOL_DIR/perl/bin/perl $TOOL_DIR/deinstall.pl $HOME_VER $TEMP_LOC $TOOL_DIR $ARCHITECTURE_FLAG $TOOL_ARGS
    I cannot find the problem.
    deinstall.pl
    # $Header: install/utl/scripts/db/deinstall /main/3 2010/05/28 20:12:57 ssampath Exp $
    # Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
    #    NAME
    #      deinstall - wrapper script that calls deinstall tool.
    #    DESCRIPTION
    #      This script will set all the necessary variables and call the tools
    #      entry point.
    #    NOTES
    #      <other useful comments, qualifications, etc.>
    #    MODIFIED   (MM/DD/YY)
    #    mwidjaja    04/29/10 - XbranchMerge mwidjaja_bug-9579184 from
    #                           st_install_11.2.0.1.0
    #    mwidjaja    04/15/10 - Added SHLIB_PATH for HP-PARISC
    #    mwidjaja    01/14/10 - XbranchMerge mwidjaja_bug-9269768 from
    #                           st_install_11.2.0.1.0
    #    mwidjaja    01/14/10 - Fix help message for params
    #    ssampath    12/24/09 - Fix for bug 9227535. Remove legacy version_check
    #                           function
    #    ssampath    12/01/09 - XbranchMerge ssampath_bug-9167533 from
    #                           st_install_11.2.0.1.0
    #    ssampath    11/30/09 - Set umask to 022.
    #    prsubram    10/12/09 - XbranchMerge prsubram_bug-9005648 from main
    #    prsubram    10/08/09 - Compute ARCHITECTURE_FLAG in the script
    #    prsubram    09/15/09 - Setting LIBPATH for AIX
    #    prsubram    09/10/09 - Add AIX specific code check java version
    #    prsubram    09/10/09 - Change TOOL_DIR to BOOTSTRAP_DIR in java cmd
    #                           invocation of bug#8874160
    #    prsubram    09/08/09 - Change the default shell to /usr/xpg4/bin/sh on
    #                           SunOS
    #    prsubram    09/03/09 - Removing -d64 for client32 homes for the bug8859294
    #    prsubram    06/22/09 - Resolve port specific id cmd issue
    #    ssampath    06/02/09 - Fix for bug 8566942
    #    ssampath    05/19/09 - Move removal of /tmp/deinstall<timestamp> to java
    #                           code.
    #    prsubram    04/30/09 - Fix for the bug#8474891
    #    mwidjaja    04/29/09 - Added user check between the user running the
    #                           script and inventory owner
    #    ssampath    04/29/09 - Changes to make error message better when deinstall
    #                           tool is invoked from inside ORACLE_HOME and -home
    #                           is passed.
    #    ssampath    04/15/09 - Fix for bug 8414555
    #    prsubram    04/09/09 - LD_LIBRARY_PATH is ported for sol,hp-ux & aix
    #    mwidjaja    03/26/09 - Disallow -home for running from OH
    #    ssampath    03/24/09 - Fix for bug 8339519
    #    wyou        02/25/09 - restructure the ohome check
    #    wyou        02/25/09 - change the error msg for directory existance check
    #    wyou        02/12/09 - add directory existance check
    #    wyou        02/09/09 - add the check for the writablity for the oracle
    #                           home passed-in
    #    ssampath    01/21/09 - Add oui/lib to LD_LIBRARY_PATH
    #    poosrini    01/07/09 - LOG related changes
    #    ssampath    11/24/08 - Create /main/osds/unix branch
    #    dchriste    10/30/08 - eliminate non-generic tools like 'cut'
    #    ssampath    08/18/08 - Pickup srvm.jar from JLIB directory.
    #    ssampath    07/30/08 - Add http_client.jar and OraCheckpoint.jar to
    #                           CLASSPATH
    #    ssampath    07/08/08 - assistantsCommon.jar and netca.jar location has
    #                           changed.
    #    ssampath    04/11/08 - If invoking the tool from installed home, JRE_HOME
    #                           should be set to $OH/jdk/jre.
    #    ssampath    04/09/08 - Add logic to instantiate ORA_CRS_HOME, JAVA_HOME
    #                           etc.,
    #    ssampath    04/03/08 - Pick up ldapjclnt11.jar
    #    idai        04/03/08 - remove assistantsdc.jar and netcadc.jar
    #    bktripat    02/23/07 -
    #    khsingh     07/18/06 - add osdbagrp fix
    #    khsingh     07/07/06 - fix regression
    #    khsingh     06/20/06 - fix bug 5228203
    #    bktripat    06/12/06 - Fix for bug 5246802
    #    bktripat    05/08/06 -
    #    khsingh     05/08/06 - fix tool to run from any parent directory
    #    khsingh     05/08/06 - fix LD_LIBRARY_PATH to have abs. path
    #    ssampath    05/01/06 - Fix for bug 5198219
    #    bktripat    04/21/06 - Fix for bug 5074246
    #    khsingh     04/11/06 - fix bug 5151658
    #    khsingh     04/08/06 - Add WA for bugs 5006414 & 5093832
    #    bktripat    02/08/06 - Fix for bug 5024086 & 5024061
    #    bktripat    01/24/06 -
    #    mstalin     01/23/06 - Add lib to pick libOsUtils.so
    #    bktripat    01/19/06 - adding library changes
    #    rahgupta    01/19/06 -
    #    bktripat    01/19/06 -
    #    mstalin     01/17/06 - Modify the assistants deconfig jar file name
    #    rahgupta    01/17/06 - updating emcp classpath
    #    khsingh     01/17/06 - export ORACLE_HOME
    #    khsingh     01/17/06 - fix for CRS deconfig.
    #    hying       01/17/06 - netcadc.jar
    #    bktripat    01/16/06 -
    #    ssampath    01/16/06 -
    #    bktripat    01/11/06 -
    #    clo         01/10/06 - add EMCP entries
    #    hying       01/10/06 - netcaDeconfig.jar
    #    mstalin     01/09/06 - Add OraPrereqChecks.jar
    #    mstalin     01/09/06 -
    #    khsingh     01/09/06 -
    #    mstalin     01/09/06 - Add additional jars for assistants
    #    ssampath    01/09/06 - removing parseOracleHome temporarily
    #    ssampath    01/09/06 -
    #    khsingh     01/08/06 - fix for CRS deconfig
    #    ssampath    12/08/05 - added java version check
    #    ssampath    12/08/05 - initial run,minor bugs fixed
    #    ssampath    12/07/05 - Creation
    #MACROS
    if [ -z "$UNAME" ]; then UNAME="/bin/uname"; fi
    if [ -z "$ECHO" ]; then ECHO="/bin/echo"; fi
    if [ -z "$AWK" ]; then AWK="/bin/awk"; fi
    if [ -z "$ID" ]; then ID="/usr/bin/id"; fi
    if [ -z "$DIRNAME" ]; then DIRNAME="/usr/bin/dirname"; fi
    if [ -z "$FILE" ]; then FILE="/usr/bin/file"; fi
    if [ "`$UNAME`" = "SunOS" ]
    then
        if [ -z "${_xpg4ShAvbl_deconfig}" ]
        then
            _xpg4ShAvbl_deconfig=1
            export _xpg4ShAvbl_deconfig
            /usr/xpg4/bin/sh $0 "$@"
            exit $?
        fi
            AWK="/usr/xpg4/bin/awk"
    fi
    # Set umask to 022 always.
    umask 022
    INSTALLED_VERSION_FLAG=true
    ARCHITECTURE_FLAG=32
    TOOL_ARGS=$* # initialize this always.
    # Since the OTN and the installed version of the tool is same, only way to
    # differentiate is through the instantated variable ORA_CRS_HOME.  If it is
    # NOT instantiated, then the tool is a downloaded version.
    # Set HOME_VER to true based on the value of $INSTALLED_VERSION_FLAG
    if [ x"$INSTALLED_VERSION_FLAG" = x"true" ]
    then
       ORACLE_HOME=/home/oracle/app/oracle/product/11.2.0/dbhome_2
       HOME_VER=1     # HOME_VER
       TOOL_ARGS="$ORACLE_HOME $TOOL_ARGS"
    else
       HOME_VER=0
    fi
    # Save current working directory
    CURR_DIR=`pwd`
    # If CURR_DIR is different from TOOL_DIR get that location and cd into it.
    TOOL_REL_PATH=`$DIRNAME $0`
    cd $TOOL_REL_PATH
    DOT=`$ECHO $TOOL_REL_PATH | $AWK -F'/' '{ print $1}'`
    if [ "$DOT" = "." ];
    then
      TOOL_DIR=$CURR_DIR/$TOOL_REL_PATH
    elif [ `expr "$DOT" : '.*'` -gt 0 ];
    then
      TOOL_DIR=$CURR_DIR/$TOOL_REL_PATH
    else
      TOOL_DIR=$TOOL_REL_PATH
    fi
    # Check if this script is run as root.  If so, then error out.
    # This is fix for bug 5024086.
    RUID=`$ID|$AWK -F\( '{print $2}'|$AWK -F\) '{print $1}'`
    if [ ${RUID} = "root" ];then
    $ECHO "You must not be logged in as root to run $0."
    $ECHO "Log in as Oracle user and rerun $0."
    exit $ROOT_USER
    fi
    # DEFINE FUNCTIONS BELOW
    computeArchFlag() {
       TOOL_HOME=$1
       case `$UNAME` in
          HP-UX)
             if [ "`/usr/bin/file $TOOL_HOME/bin/kfod | $AWK -F\: '{print $2}' | $AWK -F\- '{print $2}' | $AWK '{print $1}'`" = "64" ];then
                ARCHITECTURE_FLAG="-d64"
             fi
          AIX)
             if [ "`/usr/bin/file $TOOL_HOME/bin/kfod | $AWK -F\: '{print $2}' | $AWK '{print $1}' | $AWK -F\- '{print $1}'`" = "64" ];then
                ARCHITECTURE_FLAG="-d64"
             fi
             if [ "`/usr/bin/file $TOOL_HOME/bin/kfod | $AWK -F\: '{print $2}' | $AWK '{print $2}' | $AWK -F\- '{print $1}'`" = "64" ];then
                  ARCHITECTURE_FLAG="-d64"
             fi
       esac
    if [ $HOME_VER = 1 ];
    then
       $ECHO "Checking for required files and bootstrapping ..."
       $ECHO "Please wait ..."
       TEMP_LOC=`$ORACLE_HOME/perl/bin/perl $ORACLE_HOME/deinstall/bootstrap.pl $HOME_VER $TOOL_ARGS`
       TOOL_DIR=$TEMP_LOC
    else
       TEMP_LOC=`$TOOL_DIR/perl/bin/perl $TOOL_DIR/bootstrap.pl $HOME_VER $TOOL_ARGS`
    fi
    computeArchFlag $TOOL_DIR
    $TOOL_DIR/perl/bin/perl $TOOL_DIR/deinstall.pl $HOME_VER $TEMP_LOC $TOOL_DIR $ARCHITECTURE_FLAG $TOOL_ARGS
    Best regards

  • Skin Customization in Oracle Identity Manager 11g Release 2 (11.1.2)

    I was recently tasked with branding an OIM instance to match pretty stringent branding standards. To accomplish this task, I extended the fusion theme which is provided out of the box into a new custom skin. In the example below, I took the design as far as I could, which required decently advanced css knowledge; however, even a novice web designer could easily make simple updates to the backgrounds and fonts which would also greatly enhance the user experience.
    Utilizing FireBug for Firefox, I inspected elements of the OIM interface to see which div's I needed to modify in the css file. You can edit as little or as many elements as you'd like in your custom skin; however, I'd recommend preserving the primary elements original placements to avoid confusion for users that are already used to an out of the box version of OIM.
    This is the Oracle doc I used when creating the custom skin: http://docs.oracle.com/cd/E27559_01/dev.1112/e27150/uicust.htm#BABJIJIA
    Notes regarding the Oracle tutorial mentioned above:
    Be sure and remove the temp directory, shut down your OIM server, upload your files, then restart your OIM server with each css modification.
    30.3.1 - Configuring Skins: 1. After you create the skin in the trinidad-skins.xml file, make a copy of the trinidad-skins.xml from the /iam-consoles-faces.war/WEB-INF/ directory to the
    oracle.iam.console.identity.sysadmin.ear/WEB-INF/ directory AND the
    oracle.iam.console.identity.self-service.ear/WEB-INF directory.
    (The doc references admin.ear: the fully qualified name of the ear is: oracle.iam.console.identity.sysadmin.ear)
    30.3.1 - Configuring Skins: Make all of your changes in the /oracle.iam.console.identity.sysadmin.ear/WEB-INF/trinidad-skins.xml file, /oracle.iam.console.identity.self-service.ear/WEB-INF/trinidad-skins.xml file, and the /iam-consoles-faces.war/WEB-INF/trinidad-skins.xml file.
    (The doc doesn't mention making your css edits in the oracle.iam.console.identity.self-service.ear directory which is required)
    Here is a link to my blog post with screenshots: http://www.idmworks.com/blog/entry/skin-customization-in-oracle-identity-manager-11g-release-2-11-1-2

    I was recently tasked with branding an OIM instance to match pretty stringent branding standards. To accomplish this task, I extended the fusion theme which is provided out of the box into a new custom skin. In the example below, I took the design as far as I could, which required decently advanced css knowledge; however, even a novice web designer could easily make simple updates to the backgrounds and fonts which would also greatly enhance the user experience.
    Utilizing FireBug for Firefox, I inspected elements of the OIM interface to see which div's I needed to modify in the css file. You can edit as little or as many elements as you'd like in your custom skin; however, I'd recommend preserving the primary elements original placements to avoid confusion for users that are already used to an out of the box version of OIM.
    This is the Oracle doc I used when creating the custom skin: http://docs.oracle.com/cd/E27559_01/dev.1112/e27150/uicust.htm#BABJIJIA
    Notes regarding the Oracle tutorial mentioned above:
    Be sure and remove the temp directory, shut down your OIM server, upload your files, then restart your OIM server with each css modification.
    30.3.1 - Configuring Skins: 1. After you create the skin in the trinidad-skins.xml file, make a copy of the trinidad-skins.xml from the /iam-consoles-faces.war/WEB-INF/ directory to the
    oracle.iam.console.identity.sysadmin.ear/WEB-INF/ directory AND the
    oracle.iam.console.identity.self-service.ear/WEB-INF directory.
    (The doc references admin.ear: the fully qualified name of the ear is: oracle.iam.console.identity.sysadmin.ear)
    30.3.1 - Configuring Skins: Make all of your changes in the /oracle.iam.console.identity.sysadmin.ear/WEB-INF/trinidad-skins.xml file, /oracle.iam.console.identity.self-service.ear/WEB-INF/trinidad-skins.xml file, and the /iam-consoles-faces.war/WEB-INF/trinidad-skins.xml file.
    (The doc doesn't mention making your css edits in the oracle.iam.console.identity.self-service.ear directory which is required)
    Here is a link to my blog post with screenshots: http://www.idmworks.com/blog/entry/skin-customization-in-oracle-identity-manager-11g-release-2-11-1-2

  • Oracle Grid Infrastructure 11g Release 2 (11.2.0.3.0)

    Hi,
    I want to download Oracle Grid Infrastructure 11g Release 2 (11.2.0.3.0) for installation on Oracle Solaris 11 as Oracle Grid Infrastructure 11g Release 2 (11.2.0.1.0) cannot be installed on Solaris 11,
    I know its available but cannot find the link to download it, is it not available for download from OTN network ?
    If you happen to know the link please let me know or is there a way I can install 11.2.0.1.0 on Solaris 11.
    Thank you for you help.
    Rgds
    Terry

    11/10/11: Patch Set 11.2.0.3 for Linux, Solaris, Windows, AIX and HP-UX Itanium is now available on support.oracle.com.
    You have to ask support to send you the cloud link where you can download the binaries OR you can ask them to send you the media also.
    It says right on the above link
    http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html

  • Installing Oracle Database 10 G Release 2 on Centos 5.0 and SuSe Linux Prof

    I have problem in installing Oracle Database 10 G Release 2 on Centos 5.0 and SuSe Linux Professional 9.1.
    1. According to information of installation steps given by one user at DIZWELL for Centos 5.0.
    In the last step it says as follows (I had bought a CD Centos 5.0) - It gives the following error. My copy of Centos is not a downloaded Zip file.
    su - oracle
    /osource/runinstaller -ignoreSysPrereqs
    Command not found
    I had also installed Libaio and Libxp as mentioned in the document given by a user. How can i solve this. I need the complete installation of Oracle 10 G Rel 2 on Centos 5.0.
    2. Installation of Oracle 10 G Rel 2 on Novell SuSe Linux Professional 9.1.
    I had seen the oui opening up and when it moves a little further it gives some memory error and It requires about 900 + memory. After installing this linux if we have increase the memory What should we do? According to the message it says my system is having only 700+ memory. I do not know whether it is MB/KB. Please given the complete steps to solve this.
    Thanks in Advance!
    Regards,
    Srinivas

    was trying to Oracle 10G Rel 2 on Centos 5.0 but There I never got the Oracle Universal Installer.
    Now, I had made necessary to Novelll Suse Linux Professional 9.1, where I has made the necessary changes to the system files and installed the libXp, glibc, libaio, make etc and I was able to get Oracle Universal Installer. During Installation at the end I got these errors.
    gcc-3.2 Found not found Failed
    Overall Result of this check Failed
    Kernel Parameters
    Semopm=100 found semopm=32 Failed
    file-max=65536 Found file-max=52249 Failed
    Checking for VERSION-2.6.5-7.97 Found VERSION=2.6.4-52 - default Failed
    ip_local_port_range=1024-65000 Found ip_local_port_range=32768-61000 Failed
    Check for rmem_default=262144 Found rmem_default=111616 Failed
    Check for rmem_max=262144 Found rmem_max-111616 Failed
    Check for wmem_default=262144 Found wmem_default=111616 Failed
    Check for wmem_max=262144 Found wmem_max=111616 Failed
    Recommended glibc VERSION
    Expected Atleast= 2.3.3-98.28
    Actual = 2.3.3-97 Failed
    Overall Result of the above Failed
    Checking Physical Memory
    Expected = 922 MB
    Actual = 500 MB
    Please let me know What to do or How to rectify this? Atleast I should be able to install the same in SuSe Linux Professional 9.1. Mine is not a zip file now . I have unzipped and stored my Oracle 10 G Rel 2 on a CD Which was working correctly in SuSe Linux Professional 9.1 but the last step in the Installation in Centos 5.0 did not show the OUI when I had run from the CD. Should I have to configure the Internet for lInux also. I have Broadband internet 256 kbps From hathway Internet. How can i configure Internet in SuSe Linux Professional 9.1, Centos 5.0 and Fedora Core 4. Where can I give my IP Address, Gateway, Primay DNS, Secondary DNS, Email ID and Password, Host Name etc
    Somehow, I need to install Oracle 10 G Rel 2 on any one Linux Version for me to work and succeed.Anybody can Help me also.
    AFTER RE-INSTALLING CENTOS LINUX 5.0 AGAIN, I HAD REPEATED ALL THE STEPS TAKEN FROM A MEMBER OF ORACLE FORUMS AND THIS TIME, WHEN I HAD GIVEN THE COMMANDS
    su - oracle
    /osource/runInstaller -ignoreSysPrereqs
    THIS TIME IT HAD GIVEN THE ERROR AS FOLLOWS:
    PERMISSION DENIED
    PLEASE TELL ME WHAT SHOULD BE THE PROBLEM AND HOW TO RECTIFY THIS PROBLEM AND INSTALL ORACLE 10g REL 2 ON CENTOS 5.0 LINUX.
    Thanks in Advance
    Regards,
    Srinivas

  • Install Oracle Grid Infrastructure 11g Release 2 - Yes or No???

    Hello,
    We are setting up a new OEM Grid 12c system on Linux x86-64. We want to use it to manage several stand-alone, non-RAC, non-ASM database machines. The docs are unclear - do we have to install Oracle Grid Infrastructure 11g Release 2 on any of the database machines, including the machine that will support the OEM repository database, or not? Again, no plans to run Oracle Restart or Oracle ASM or Oracle RAC on that machine or any others.
    The docs are not clear and we need a definitive answer.
    Thank you, TL

    Hello, OTN gurus.
    Thanks for your attention to my original post. However, I am asking about a specific installation package called "Oracle Grid Infrastructure", which is separate from OEM Grid 12c and Oracle Database, and is supposed to be installed in its own home directory before the Oracle database software is installed in its oracle_home. "Oracle Grid Infrastructure" is also supposed to be installed in a different oracle_home from the OEM 12c Agent and a different oracle_home from Oracle Database, under specific conditions.
    The docs say that you need Oracle Grid Infrastructure installed first in order to implement Oracle Restart and Oracle ASM for the Database. Other docs say you also need it for OEM Grid software. The docs are confusing on this point. I do not need Oracle Restart or Oracle ASM. I want to avoid installing this separate product, called Oracle Grid Infrastructure if I can. Does anyone know if a simple environment of Oracle Database 11gR2 (11.2.0.3), managed by OEM 12c OMS and Agents, requires "Oracle Grid Infrastructure"?
    Thanks, TL

  • Available Now: Oracle Database Lite 10g Release 1

    The Oracle Database Lite development team is pleased to announce the availability of Oracle Database Lite 10g (10.0.0.0.0) for Windows 2000/XP, Solaris 2.6, 2.7, 2.8, and Red Hat Enterprise Linux AS/ES 2.1/3.0 platforms.
    The Windows release is currently available from OTN at:
    http://www.oracle.com/technology/software/products/lite/index.html
    Oracle Database Lite 10g is a complete and integrated solution for rapid development and deployment of high impact, mission vital applications for mobile and lightweight embedded environments. Oracle Database Lite is an extension to Oracle Database 10g for enterprises wanting to increase productivity, reduce operational costs, and improve customer satisfaction.
    Oracle Database Lite uses data synchronization to reliably and securely exchange data between a corporate Oracle Database and mobile workers. Oracle Database Lite also allows companies to deploy and manage users, mobile applications and devices from a remote central location. Oracle Database Lite provides the necessary framework enterprise customers need to extend their enterprise applications and data to the most popular mobile platforms: Palm OS, Linux, Microsoft Windows CE/PPC, and Microsoft Windows NT/2000/XP/UNIX.
    The following is a partial list of new features for Oracle Database Lite 10g that will make your mobile deployment easier to manage, use, and develop. A complete list will be available for download/viewing soon.
    Device Management
    As the number of mobile devices in an enterprise increases, it becomes more important to have complete control of the devices. Oracle Database Lite Device Management is a complete infrastructure to monitor and manage Oracle Database Lite assets such as database files, software libraries, data, and application files on remote devices. Device management decreases the total cost of ownership and protects an enterprises intellectual property.
    Single Oracle Lite Binary
    The Oracle Database Lite 10g release contains a single set of Oracle Lite database kernel binaries for all languages, removing the necessity of having different binaries for each of the following languages: Korean, Traditional Chinese, simplified Chinese, Japanese, and US/European languages.
    Shared Map
    The shared map function greatly improves performance by reducing sync processing timeand enhances the scalability of shared publication items. Shared maps allow users to share record state information and reduce the size of the resulting replication map tables.
    Offline Instantiation
    Offline instantiation enables quick and easy setup of mobile devices for business applications. Mobile administrators are able to prepare, in batch mode, a client package, which includes the mobile client software and initial data for every mobile user. This procedure helps users avoid an expensive online synchronization processes as part of the first time mobile client setup procedure.
    Synchronization Manager
    The Synchronization Manager is a complete, web-based enterprise management application to manage and monitor synchronization. The Synchronization Manager allows administrators to manage the synchronization service, monitor and analyze sync performance, administer the configuration, trace synchronization history, display and browse synchronization publication and subscription information, and monitor MGP (Message Generator and Processor) performance.
    Oracle Application Server Support
    The Oracle Database Lite 10g Mobile Server now runs as a web application on Oracle Containers for Java (OC4J) – the runtime of Oracle Application Server. If Oracle
    Database Lite 10g is deployed in standalone mode, an embedded version of OC4J will be installed and used. Oracle Database Lite may also be installed against an existing instance of Oracle Application Server.
    Seamless upgrade from Oracle9 i Lite 5.0.2
    The Oracle Database Lite 10g Upgrade Assistant allows customers to easily upgrade from existing Oracle9 i Lite 5.0.2 installations. The Upgrade Assistant automatically converts existing application definitions to the new format, and copies all relevant files to the new installation. As many customers have deployed mission critical systems using Oracle9i Lite technology, the Upgrade Assistant has been designed to minimize system downtime.
    Download
    Oracle Database Lite 10g (10.0.0.0.0) for Windows can now be downloaded from the following location.
    http://www.oracle.com/technology/software/products/lite/index.html

    I am using Oracle 10g lite. Do you know if it supports silent installation.

  • Oracle database 10g Developer release

    I would like to know when will the support for Java be available in Oracle database 10g Developer release for Microsoft Windows XP x64 (AMD/Xeon processors). I want a full working Enterprise version for Window XP x64.

    This forum deals with Oracle database related questions. For Forms, please check and post the question in Forms forum,
    Forms
    Aman....

  • Oracle Database Vault 11g installation

    Hi,
    I want to know the installation steps for Oracle Database Vault (11g-version:11.1.0.6).
    Is there any document which specifies the installation steps.
    I have the document for 10g - Database Vault installation. But i am not able to find any specific document for 11g Database Vault installation.
    As per my understanding Database Vault 11g is one of the Enterprise Edition options in Custom installation. But still i want to know the pre-requisites for Database Vault installation (ex: Enterprise Manager Console). If any one did the 11g Database Vault installation, request to share the details.
    Thanks inadvance.
    Regards,
    Srikanth

    Pl post details of your OS. Pl see these links
    http://download.oracle.com/docs/cd/B28359_01/install.111/b32002/whatsnew.htm#CEGFBADC
    http://download.oracle.com/docs/cd/B28359_01/server.111/b31222/dvca.htm#CIAGBBFD
    MOS Doc 803948.1 - How To Uninstall Or Reinstall Database Vault in 11g
    HTH
    Srini

  • AIX 6 and Oracle database 10g/11g

    Dear All,
    We are planning to upgrade our OS from AIX 5.3 to AIX 6.1 and infact have upgraded couple of servers to 6.
    In light of cost saving/cutting, how can AIX 6 help reduce licensing fee for Oracle databases. In other words, we would like to look into possibilities of reducing Oracle database (10g/11g) licensing fee by upgrading OS to AIX 6.
    Will the new feature like CPU virtualization be helpful in this regard? Are there any other features which could be worth looking into?
    I would be grateful if any of you could shed some light on this.
    Regards

    Dear All,
    We are planning to upgrade our OS from AIX 5.3 to AIX 6.1 and infact have upgraded couple of servers to 6.
    In light of cost saving/cutting, how can AIX 6 help reduce licensing fee for Oracle databases. In other words, we would like to look into possibilities of reducing Oracle database (10g/11g) licensing fee by upgrading OS to AIX 6.
    Will the new feature like CPU virtualization be helpful in this regard? Are there any other features which could be worth looking into?
    I would be grateful if any of you could shed some light on this.
    Regards

  • Error in Oracle Database Backup and Recovery User's Guide 12c Release 1 (12.1) E17630-13

    on page 88 of the "Backup and Recovery User's Guide 12c Release 1 (12.1) E17630-13", the example 5-1 SHOW ALL Command is the same of the "Backup and Recovery User's Guide 11g Release 2 (11.2) E10642-06" on page 82 and that output is related to a Oracle Database 11g version (the 10g doesn't print the first line "RMAN configuration parameters for database with db_unique_name PROD1 are:").

    My test cases here:
    Database administrator workshop: Differences in default RMAN configuration settings between 12c and 11g
    {code}[oracle@vsi08devpom ~]$ export ORACLE_SID=CDB001
    [oracle@vsi08devpom admin]$ sqlplus system/oracle@CDB001
    SQL*Plus: Release 12.1.0.1.0 Production on Thu Sep 26 09:10:50 2013
    Copyright (c) 1982, 2013, Oracle.  All rights reserved.
    Last Successful login time: Tue Jul 16 2013 13:43:48 +02:00
    Connected to:
    Oracle Database 12c Enterprise Edition Release 12.1.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Advanced Analytics and Real Application Testing options
    SQL> show con_name
    CON_NAME
    CDB$ROOT
    [oracle@vsi08devpom ~]$ rman target /
    Recovery Manager: Release 12.1.0.1.0 - Production on Thu Sep 26 09:12:42 2013
    Copyright (c) 1982, 2013, Oracle and/or its affiliates.  All rights reserved.
    connected to target database: CDB001 (DBID=4134963396)
    RMAN> show all;
    using target database control file instead of recovery catalog
    RMAN configuration parameters for database with db_unique_name CDB001 are:
    CONFIGURE RETENTION POLICY TO REDUNDANCY 1; # default
    CONFIGURE BACKUP OPTIMIZATION OFF; # default
    CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
    CONFIGURE CONTROLFILE AUTOBACKUP ON; # default
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'; # default
    CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET; # default
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE MAXSETSIZE TO UNLIMITED; # default
    CONFIGURE ENCRYPTION FOR DATABASE OFF; # default
    CONFIGURE ENCRYPTION ALGORITHM 'AES128'; # default
    CONFIGURE COMPRESSION ALGORITHM 'BASIC' AS OF RELEASE 'DEFAULT' OPTIMIZE FOR LOAD TRUE ; # default
    CONFIGURE RMAN OUTPUT TO KEEP FOR 7 DAYS; # default
    CONFIGURE ARCHIVELOG DELETION POLICY TO NONE; # default
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/opt/app/oracle/product/12.1.0/db_1/dbs/snapcf_CDB001.f'; # default{code}
    {code}
    [oracle@localhost orcl]$ rman target /
    Recovery Manager: Release 11.2.0.2.0 - Production on Wed Sep 25 08:12:17 2013
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    connected to target database: ORCL (DBID=1229390655)
    RMAN> show all;
    using target database control file instead of recovery catalog
    RMAN configuration parameters for database with db_unique_name ORCL are:
    CONFIGURE RETENTION POLICY TO REDUNDANCY 1; # default
    CONFIGURE BACKUP OPTIMIZATION OFF; # default
    CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
    CONFIGURE CONTROLFILE AUTOBACKUP OFF; # default
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'; # default
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE SBT_TAPE TO '%F'; # default
    CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET; # default
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE SBT_TAPE TO 1; # default
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE SBT_TAPE TO 1; # default
    CONFIGURE MAXSETSIZE TO UNLIMITED; # default
    CONFIGURE ENCRYPTION FOR DATABASE OFF; # default
    CONFIGURE ENCRYPTION ALGORITHM 'AES128'; # default
    CONFIGURE COMPRESSION ALGORITHM 'BASIC' AS OF RELEASE 'DEFAULT' OPTIMIZE FOR LOAD TRUE ; # default
    CONFIGURE ARCHIVELOG DELETION POLICY TO NONE; # default
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/home/oracle/app/oracle/product/11.2.0/dbhome_2/dbs/snapcf_orcl.f'; # default
    {code}

  • Import error on Oracle Database Express 10.2.0.1.0

    Hi,
    I try to import data from oracle V10.01.02 running on SUSE10 Linux to
    oracle 10g (10.1.0.2.0) running on Windows Server 2003.
    I am able to import the big part from my ata, but not all data.
    The begin of my log file is:
    Connected to: Oracle Database 10g Enterprise Edition Release 10.1.0.2.0
    - Production
    With the Partitioning, OLAP and Data Mining options
    Export file created by EXPORT:V10.01.00 via conventional path
    And after some time I receive:
    IMP-00019: row rejected due to ORACLE error 12899
    IMP-00003: ORACLE error 12899 encountered
    ORA-12899: value too large for column "SAFCI"."EMP"."NAME"
    (actual: 65, maximum: 64)
    Column 1 1000005025
    Column 2 ??????? ???????
    Column 3 19-SEP-2002:00:00:00
    Column 4 9089
    Column 5 ??. ?????
    Column 6 1.9828
    Column 7 377.77
    Column 8 75.55
    Column 9 ???????????? ???????? ? ??? ???? ? 32 ??.
    Column 10 19-SEP-2002:00:00:00
    Column 11 ?????? ?????, ?.?. 172747675, ???. 23.11.200?
    Column 12 ????????? ?????????
    Column 13 ? ????
    Column 14 T
    Column 15
    Column 16 F
    IMP-00019: row rejected due to ORACLE error 12899
    IMP-00003: ORACLE error 12899 encountered
    ORA-12899: value too large for column "SAFCI"."EMP"."NAME"
    (actual: 65, maximum: 64)
    Column 1 1000006408
    Column 2 ??????? ???????
    Column 3 05-NOV-2002:00:00:00
    Column 4 9089
    Column 5 ??. ?????
    Column 6 1.939
    Column 7 82
    Column 8 16.4
    Column 9 ?????????? ? ???? ???? ? 40 ??.
    Column 10 05-NOV-2002:00:00:00
    Column 11 ?????? ?????, ?.?. 172747675, ???. 23.11.200?
    Column 12 ????????? ?????????
    Column 13 ? ????
    Column 14 T
    Column 15
    Column 16 F 36943 rows imported
    I can not understand this problem, because I exported the hole user and
    also try to import the hole user in my new system.
    Pls., can some one point me to some paper about this problem or help me
    to solve the problem.
    Thanks
    configuration Oracle10g (EXP source)
    SQLWKS> select * from nls_database_parameters
    2>
    PARAMETER VALUE
    NLS_LANGUAGE BRAZILIAN PORTUGUESE
    NLS_TERRITORY BRAZIL
    NLS_CURRENCY R$
    NLS_ISO_CURRENCY BRAZIL
    NLS_NUMERIC_CHARACTERS ,.
    NLS_CHARACTERSET WE8ISO8859P1
    NLS_CALENDAR GREGORIAN
    NLS_DATE_FORMAT DD/MM/RR
    NLS_DATE_LANGUAGE BRAZILIAN PORTUGUESE
    NLS_SORT WEST_EUROPEAN
    NLS_TIME_FORMAT HH24:MI:SSXFF
    NLS_TIMESTAMP_FORMAT DD/MM/RR HH24:MI:SSXFF
    NLS_TIME_TZ_FORMAT HH24:MI:SSXFF TZR
    NLS_TIMESTAMP_TZ_FORMAT DD/MM/RR HH24:MI:SSXFF TZR
    NLS_DUAL_CURRENCY Cr$
    NLS_COMP BINARY
    NLS_LENGTH_SEMANTICS BYTE
    NLS_NCHAR_CONV_EXCP FALSE
    NLS_NCHAR_CHARACTERSET AL16UTF16
    NLS_RDBMS_VERSION 10.1.0.2.0
    configuration Oracle10g Express (IMP destination)
    SQL> select * from nls_database_parameters;
    PARAMETER VALUE
    NLS_LANGUAGE AMERICAN
    NLS_TERRITORY AMERICA
    NLS_CURRENCY $
    NLS_ISO_CURRENCY AMERICA
    NLS_NUMERIC_CHARACTERS .,
    NLS_CHARACTERSET AL32UTF8
    NLS_CALENDAR GREGORIAN
    NLS_DATE_FORMAT DD-MON-RR
    NLS_DATE_LANGUAGE AMERICAN
    NLS_SORT BINARY
    NLS_TIME_FORMAT HH.MI.SSXFF AM
    NLS_TIMESTAMP_FORMAT DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT HH.MI.SSXFF AM TZR
    NLS_TIMESTAMP_TZ_FORMAT DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_DUAL_CURRENCY $
    NLS_COMP BINARY
    NLS_LENGTH_SEMANTICS BYTE
    NLS_NCHAR_CONV_EXCP FALSE
    NLS_NCHAR_CHARACTERSET AL16UTF16
    NLS_RDBMS_VERSION 10.2.0.1.0

    Hi
    Your import database use a multibyte characterset, your export db a singlebyte cs.
    This means, a char can need more than 1 byte.
    Try this before import (and before create tables!!):
    alter system set nls_length_semantics=char;Greetings
    Sven

  • Error while creating database on 11g

    Hi
    All,
    I have installed oracle database 11g R1 on windows XP. I am trying to create database and getting following error.
    ORA-01031 insufficient privileges.
    I am on ora_dba group on windows.
    please let me know if you have any idea.
    Thanks,
    Vishal

    When all else fails, Read The Fine Manual
    http://www.oracle.com/pls/db111/portal.portal_db?selected=11&frame=#microsoft_windows_installation_guides

Maybe you are looking for