Re: Oracle Database Template

I have the same issue. I have a database template created in 11.2.0.2.0 and I need this template to use in 11.2.0.3.0. I was wondering if I need to install 11.2.0.2.0 and then upgrade it to 11.2.0.3.0 to be able to use the template. I am not sure if there is a more efficient way of doing it. Is there a better way of migrating templates created in an earlier version of Oracle?

This following thread is also yours, right?
Oracle Database Template
Aman....

Similar Messages

  • Cannot startX on Oracle database template

    Hello,
    I've downloaded Oracle Database 11.1.0.6 for x86_64 (64 bit) with Oracle Linux 5.2 and successfully imported it to Oracle VM
    But I cannot start X windows using startx, it showed that some drivers are not installed
    Please advice me on this case ,
    I hope to hear from you.
    Thanks

    Hi,
    this is a standard linux. So you install x-window like you would install x-window on a standard linux system.
    Look in google and you will find a lot of notes.
    However what Herbert suggested is a better and easier way. Simply configure vncserver on the host and connect via. vncviewer.
    PS: If you don't know how to install/configure vncserver, try google ;)
    Or search the forum... I can remember writing a configuration here some time ago...
    Sebastian

  • How to setup em for all oracle database templetas X86/X86_64 /10g/11g

    Hi: everyone know about Oracle database templates X86/X86_64 /10g/11g all not setup em.
    I have builder all Oracle database templates X86/X86_64 can not start em
    https://hostname:1158/em
    $emctl start dbconsole
    to display Oc4j configurate issue......
    I have do
    $emca -repos create
    $emca -config dbcontrol db
    $emctl start dbconsole
    but still not login em.
    Everyone can test it,why can not running.
    How to config about em.
    thank.

    Hi:
    $emctl status dnconsole
    Oracle Enterprise Manager 11g Database Control Release 11.1.0.6.0
    Copyright (c) 1996,2007 Oracle Corporation .All righs reserved.
    https://majin148:5500/em/console/aboutApplication
    Oracle Enterprise Manager 11g is running
    I am also to try:
    #chkconfig iptables off
    https://192.168.100.148:5500/em

  • Oracle Database VM Template - too many issues

    Just wanted to offer my experience with the Oracle VM Template, specifically for 64-bit Oracle Database 11g (11.1). We decided to try out Oracle VM and the templates on a new server, we thought the promise of the templates could drastically decrease our time spent installing and setting up new boxes.
    Setting up the template and getting it running was a breeze, although Oracle could have better documented things. Some passwords and important steps were left out that I had to figure out after the fact.
    The real nightmare is the Oracle database installation it comes with. I guess they call this an OEM installation - but it's complete crap. Nothing really works like it should, and I found it to be a lost-cause trying to get it to work after awhile. Enterprise Manager comes disabled - what kind of database installation is this without enterprise manager? I guess they think everyone is using Grid Control - although I'm not even convinced Grid Control would have worked with all the issues going on.
    I spent a day trying configure the installation to get things working, then realized packages were missing, needed for anything other than the database engine to run, due to the stripped version of oracle linux the template uses.
    None of this was documented or explained at all. There's nothing on metalink..pretty much nothing. If you want a simple database that you can connect to and run sql queries through sql plus, this might just work. But it's far from a typical production setup. I would steer clear of this.

    Hi there,
    VPD (Virtual Private Database) is a feature of the Oracle Enterprise Edition:
    http://www.oracle.com/technology/deploy/security/database-security/virtual-private-database/index.html
    It's in the dbms_rls package.
    HTH, Peter

  • Oracle SQL template to create re-usable DDL/DML Scripts for Oracle database

    Hi,
    I have a requirement to put together a Oracle SQL template to create re-usable DDL/DML Scripts for Oracle databases.
    Only the Oracle DBA will be running the scripts so permissions is not an issue.
    The workflow for any DDL is as follows:-
    1) New Table
    a. Check if the table exists from the system/admin views.
    b. If table exists then give message "Table Exists"
    c. If table does not exist then execute DDL code
    2) Add Column
    a. Check if Column exists for a given table from system/admin views
    b. If column exists in the specified table,
    b1. backup table.
    b2. alter table to make changes to the column
    b3. verify data or execute dml script convert from backup to the new change.
    c. If Column does not exist
    c1. backup table
    c2. alter table to add column
    c3. execute dml to populate column with default value.
    The DML scripts are for populating base tables with data required for business operations.
    3) Add new row
    a. check if row exists by comparing old values of each column with new values to be added for the new record.
    b. If exists, give message row exists
    c. If not exists, add new record.
    4) Update existing record (We have createtime columns in these tables so changes can be tracked)
    a. check if row exists using primary key.
    b. If exists,
    b1. deactivate the record using the "active" column of the table
    b2. Add new record with the changes required.
    c. If does not exist, add new record with the changes required.
    Could you please help with some ideas which can get this done accurately?
    I have tried several ways, but I am not able to put together something that fulfills all requirements.
    Thank you,

    First let me address your question. (This is the easy part.)
    1. The existence of tables can be found in DBA_TABLES. Query it and and then use conditional logic and execute immediate to process the DDL.
    2. The existence of table columns is found in DBA_TAB_COLUMNS. Query it and then conditionally execute your DDL. You can copy the "before picture" of the table using that same dba view, or even better, use DBMS_METADATA.
    As for your DML scripts, they should be restartable, reversible, and re-run-able. They should "fail gracefully" on error, be written in such a way that they can run twice in a row without creating duplicate changes.
    3. Adding appropriate constraints can prevent invalid duplicate rows. Also, you can usually add to the where clause so that the DML does only what it needs to do without even relying on the constraint (but the constraint is there as a safeguard). Look up the MERGE statement to learn how to do an UPSERT (update/insert), which will let you conditionally "deactivate" (update) or insert a record. Anything that you cannot do in SQL can be done with simple procedural code.
    Now, to the heart of the matter...
    You think I did not understand your requirements?
    Please be respectful of people's comments. Many of us are professionals with decades of experience working with databases and Oracle technology. We volunteer our valuable time and knowledge here for free. It is extremely common for someone to post what they feel is an easy SQL or PL/SQL question without stating the real goal--the business objective. Experienced people will spot that the "wrong question" has been asked, and then cut to the chase.
    We have some good questions for you. Not questions we need answers from, but questions you need to ask yourself and your team. You need to reexamine this post and deduce what those questions are. But I'll give you some hints: Why do you need to do what you are asking? And will this construct you are asking for even solve the root cause of your problems?
    Then ponder the following quotations about asking the right question:
    Good questions outrank easy answers.
    — Paul Samuelson
    The only interesting answers are those which destroy the questions.
    — Susan Sontag
    The scientific mind does not so much provide the right answers as ask the right questions.
    — Claude Levi-Strauss
    You can tell whether a man is clever by his answers. You can tell whether a man is wise by his questions.
    — Mahfouz Naguib
    One hears only those questions for which one is able to find answers.
    — Friedrich Nietzsche
    Be patient towards all that is unresolved in your heart and try to love the questions themselves.
    — Rainer Maria Rilke
    What people think of as the moment of discovery is really the discovery of the question.
    — Jonas Salk
    Judge a man by his questions rather than his answers.
    — Voltaire
    The ability to ask the right question is more than half the battle of finding the answer.
    — Thomas J. Watson

  • How to Edit an Existing Oracle Database 11g Template

    I fat fingered a file specification in an Oracle 11g database creation template on Solaris 10. Is there a way to edit the template without deleting it and starting over?
    Also, is there a way to import an existing template into a different $ORACLE_HOME?

    Actually, I have both in mine, but the .dbt files I have are the ones that I saved (at the end of using the dbca when it ask you to save your template and give it a file name). I think the .dbt stands for database template.
    e.g., (this is Oracle 11.1)
    $ <none> /oracle/product/11.1/assistants/dbca/templates>ls -lastr
    total 205948
      12 -rw-r--r--    1 oracle   dba           11653 Jun 21 2007  New_Database.dbt
       8 -rw-r--r--    1 oracle   dba            5286 Sep 26 2008  Data_Warehouse.dbc
       8 -rw-r--r--    1 oracle   dba            5166 Sep 26 2008  General_Purpose.dbc
    183860 -rwxr-xr-x    1 oracle   dba       188268544 Oct 03 2008  Seed_Database.dfb*
    1128 -rwxr-xr-x    1 oracle   dba         1155072 Oct 04 2008  example.dmp*
    20728 -rwxr-xr-x    1 oracle   dba        21225472 Oct 04 2008  example01.dfb*
       0 drwxr-xr-x    6 oracle   dba             256 Jul 23 15:48 ../
      20 -rw-r-----    1 oracle   dba           17237 Aug 19 14:40 psprod.dbt
      20 -rw-r-----    1 oracle   dba           17339 Sep 24 09:52 pspay.dbt
      20 -rw-r-----    1 oracle   dba           17338 Oct 26 15:52 psben.dbt
      20 -rw-r-----    1 oracle   dba           17251 Oct 27 09:21 pscmp.dbt
      20 -rw-r-----    1 oracle   dba           17232 Oct 27 13:07 psrec.dbt
      20 -rw-r-----    1 oracle   dba           17232 Oct 27 16:12 psdev.dbt
      20 -rw-r-----    1 oracle   dba           17251 Oct 28 09:48 psdmo.dbt
      20 -rw-r-----    1 oracle   dba           17232 Oct 28 20:31 pssrc.dbt
       4 drwxr-xr-x    2 oracle   dba            4096 Oct 28 20:31 ./
      20 -rw-r-----    1 oracle   dba           17239 Apr 11 2026  pssrc_20090908.dbt
      20 -rw-r-----    1 oracle   dba           17242 Apr 11 2026  pstst_20090908.dbt

  • Missing Templates for Standalone Oracle Database

    According to this link: [Templates Overview|http://www.oracle.com/technetwork/server-storage/vm/overview/templates-101937.html]
    and this link: [Database Template|http://www.oracle.com/technetwork/server-storage/vm/database-092479.html] ...
    There should be a template for a standalone (non-RAC) database.
    But when you go to eDelivery there is no such template.
    Why does Oracle not provide a template for the standalone database ???

    You can use the templates for Oracle Enterprise Linux.
    According to Readme:
    "The oracle-rdbms-server-11gR2-preinstall package is installed in the templates
    before the Oracle Linux 6 Update 4 templates. This package installs software
    packages and sets system parameters that are required for Oracle single instance
    and Real Application Cluster install for Oracle Linux Release 6.
    This package creates the 'oracle' user, with an initial login group of 'oinstall',
    a supplementary group of 'dba', and a home directory of /home/oracle. The
    Oracle-validated package disables logins by the user 'oracle', and the password is
    locked for the 'oracle' user by default. To enable the 'oracle' user account, log in
    as the 'root' user to the guest virtual machine after it is booted."
    If you choose to use OEL 6 Update 4 you can install the package using the package manager.

  • ODC Connections to Oracle database saved in report templates issue

    Hi,
    ODC Connections to Oracle database saved in report templates (in <IOP_HOME>/custom/workbook ) are lost when the same worksheet accessed from IOP front end.Please help.
    Thanks

    Yes . - Even I am trying to get help on this. We are trying to create dynamic List of Values for reports in excel. Right now, the way we are creating lov's is to land data on another sheet and have the main report refer to it.
    Venkat

  • Knowledge Transfer Template for Oracle database

    Hi,
    We are on the begining of a database project. For that we need to collect all types oracle database informations(Server,databases, backup etc....) from the client. Any template available for this purpose. Please help..
    Thanks
    Shiju

    Hi,
    I also worked on the Banking Domain for nearly one and half year.
    I suggest follow these thinsgs :-
    1 - First you need to know how the front end Domain is working.
    2 - Learn and See when some specific transaction had done at Front end side
    of Application how the records are effected in the back end side..
    Check The relavant Code in the Back end . Business Logic.
    3 - Follow this process.. by the time you can able learn how the domain
    is working and its relavant tabels, procedures and packages etc.,
    4 - there will some remaing things like reports...which are depending on the
    tables.
    that's it..
    Thanks
    Pavan Kumar N

  • Connection pooling and auditing on an oracle database

    Integration of a weblogic application with an oracle backend,
    Connection pooling, and auditing ,2 conflicting requirements ?
    Problem statement :
    We are in the process of maintaining a legacy client server application where
    the client is
    written in PowerBuilder and the backend is using an Oracle database.
    Almost all business logic is implemented in stored procedures on the database.
    When working in client/server mode ,1 PowerBuilder User has a one-to-one relation
    with
    a connection(session) on the oracle database.
    It is a requirement that the database administrator must see the real user connected
    to the database
    and NOT some kind of superuser, therefore in the PowerBuilder app each user connects
    to the database
    with his own username.(Each user is configured on the database via a seperate
    powerbuilder security app).
    For the PowerBuilder app all is fine and this app can maintain conversional state(setting
    and
    reading of global variables in oracle packages).
    The management is pushing for web-based application where we will be using bea
    weblogic appserver(J2EE based).
    We have build an business app which is web-based and accessing the same oracle
    backend app as
    the PowerBuilder app is doing.
    The first version of this web-based app is using a custom build connector(based
    on JCA standard and
    derived from a template provided by the weblogic integration installation).
    This custom build connector is essentially a combination of a custom realm in
    weblogic terms
    and a degraded connection pool , where each web session(browser) has a one-to-one
    relation
    with the back end database.
    The reason that this custom connector is combining the security functionality
    and the pooling
    functionality , is because each user must be authenticated against the oracle
    database(security requirement)
    and NOT against a LDAP server, and we are using a statefull backend(oracle packages)
    which would make it
    difficult to reuse connections.
    A problem that surfaced while doing heavy loadtesting with the custom connector,
    is that sometimes connections are closed and new ones made in the midst of a transaction.
    If you imagine a scenario where a session bean creates a business entity ,and
    the session bean
    calls 1 entity bean for the header and 1 entity bean for the detail, then the
    header and detail
    must be created in the same transaction AND with the same connection(there is
    a parent-child relationship
    between header and detail enforced on the back end database via Primary and Foreing
    Keys).
    We have not yet found why weblogic is closing the connection!
    A second problem that we are experincing with the custom connector, is the use
    of CMP(container managed persistence)
    within entity beans.
    The J2EE developers state that the use of CMP decreases the develoment time and
    thus also maintenance costs.
    We have not yet found a way to integrate a custom connector with the CMP persistence
    scheme !
    In order to solve our loadtesting and CMP persistence problems i was asked to
    come up with a solution
    which should not use a custom connector,but use standard connection pools from
    weblogic.
    To resolve the authentication problem on weblogic i could make a custom realm
    which connects to the
    backend database with the username and password, and if the connection is ok ,
    i could consider this
    user as authenticated in weblogic.
    That still leaves me with the problem of auditing and pooling.
    If i were to use a standard connection pool,then all transaction made in the oracle
    database
    would be done by a pool user or super user, a solution which will be rejected
    by our local security officer,
    because you can not see which real user made a transaction in the database.
    I could still use the connection pool and in the application , advise the application
    developers
    to set an oracle package variable with the real user, then on arrival of the request
    in the database,
    the logic could use this package variable to set the transaction user.
    There are still problems with this approach :
    - The administrator of the database can still not see who is connected , he will
    only see the superuser connection.
    - This scheme can not be used when you want to use CMP persistence , since it
    is weblogic who will generate the code
    to access the database.
    I thought i had a solution when oracle provided us with a connection pool known
    as OracleOCIConnectionPool
    where there is a connection made by a superuser, but where sessions are multiplexed
    over this physical pipe with the real user.
    I can not seem to properly integrate this OCI connectionpool into weblogic.
    When using this pool , and we are coming into a bean (session or entity bean)
    weblogic is wrapping
    this pool with it's own internal Datasource and giving me back a connection of
    the superuser, but not one for the real user,
    thus setting me with my back to the wall again.
    I would appreciate if anyone had experienced the same problem to share a possible
    solution with us
    in order to satisfy all requirements(security,auditing,CMP).
    Many Thanks
    Blyau Gino
    [email protected]

    Hi Blyau,
    As Joe has already provided some technical advice,
    I'll try to say something on engineering process level.
    While migrating an application from one technology to
    other, like client-server to n-tier in you case, customers and
    stakeholders want to push into the new system as many old
    requirements as possible. This approach is AKA "we must
    have ALL of the features of the old system". Mostly it happens
    because they don't know what they want. Ad little understanding
    of abilities of the new technology, and you will get a requirement
    like the one you have in you hands.
    I think "DBA must see real user" is one of those. For this
    type of requirements it can make sense to try to drop it,
    or to understand its nature and suggest alternatives. In this
    particular case it can be a system that logs user names,
    login and logout times.
    Blind copying of old features into an incompatible new architecture
    may endanger the whole project and can result in its failure.
    Hope this helps.
    Regards,
    Slava Imeshev
    "Blyau Gino" <[email protected]> wrote in message
    news:[email protected]...
    >
    Integration of a weblogic application with an oracle backend,
    Connection pooling, and auditing ,2 conflicting requirements ?
    Problem statement :
    We are in the process of maintaining a legacy client server applicationwhere
    the client is
    written in PowerBuilder and the backend is using an Oracle database.
    Almost all business logic is implemented in stored procedures on thedatabase.
    When working in client/server mode ,1 PowerBuilder User has a one-to-onerelation
    with
    a connection(session) on the oracle database.
    It is a requirement that the database administrator must see the real userconnected
    to the database
    and NOT some kind of superuser, therefore in the PowerBuilder app eachuser connects
    to the database
    with his own username.(Each user is configured on the database via aseperate
    powerbuilder security app).
    For the PowerBuilder app all is fine and this app can maintainconversional state(setting
    and
    reading of global variables in oracle packages).
    The management is pushing for web-based application where we will be usingbea
    weblogic appserver(J2EE based).
    We have build an business app which is web-based and accessing the sameoracle
    backend app as
    the PowerBuilder app is doing.
    The first version of this web-based app is using a custom buildconnector(based
    on JCA standard and
    derived from a template provided by the weblogic integrationinstallation).
    This custom build connector is essentially a combination of a custom realmin
    weblogic terms
    and a degraded connection pool , where each web session(browser) has aone-to-one
    relation
    with the back end database.
    The reason that this custom connector is combining the securityfunctionality
    and the pooling
    functionality , is because each user must be authenticated against theoracle
    database(security requirement)
    and NOT against a LDAP server, and we are using a statefull backend(oraclepackages)
    which would make it
    difficult to reuse connections.
    A problem that surfaced while doing heavy loadtesting with the customconnector,
    >
    is that sometimes connections are closed and new ones made in the midst ofa transaction.
    If you imagine a scenario where a session bean creates a business entity,and
    the session bean
    calls 1 entity bean for the header and 1 entity bean for the detail, thenthe
    header and detail
    must be created in the same transaction AND with the same connection(thereis
    a parent-child relationship
    between header and detail enforced on the back end database via Primaryand Foreing
    Keys).
    We have not yet found why weblogic is closing the connection!
    A second problem that we are experincing with the custom connector, is theuse
    of CMP(container managed persistence)
    within entity beans.
    The J2EE developers state that the use of CMP decreases the develomenttime and
    thus also maintenance costs.
    We have not yet found a way to integrate a custom connector with the CMPpersistence
    scheme !
    In order to solve our loadtesting and CMP persistence problems i was askedto
    come up with a solution
    which should not use a custom connector,but use standard connection poolsfrom
    weblogic.
    To resolve the authentication problem on weblogic i could make a customrealm
    which connects to the
    backend database with the username and password, and if the connection isok ,
    i could consider this
    user as authenticated in weblogic.
    That still leaves me with the problem of auditing and pooling.
    If i were to use a standard connection pool,then all transaction made inthe oracle
    database
    would be done by a pool user or super user, a solution which will berejected
    by our local security officer,
    because you can not see which real user made a transaction in thedatabase.
    I could still use the connection pool and in the application , advise theapplication
    developers
    to set an oracle package variable with the real user, then on arrival ofthe request
    in the database,
    the logic could use this package variable to set the transaction user.
    There are still problems with this approach :
    - The administrator of the database can still not see who is connected ,he will
    only see the superuser connection.
    - This scheme can not be used when you want to use CMP persistence , sinceit
    is weblogic who will generate the code
    to access the database.
    I thought i had a solution when oracle provided us with a connection poolknown
    as OracleOCIConnectionPool
    where there is a connection made by a superuser, but where sessions aremultiplexed
    over this physical pipe with the real user.
    I can not seem to properly integrate this OCI connectionpool intoweblogic.
    When using this pool , and we are coming into a bean (session or entitybean)
    weblogic is wrapping
    this pool with it's own internal Datasource and giving me back aconnection of
    the superuser, but not one for the real user,
    thus setting me with my back to the wall again.
    I would appreciate if anyone had experienced the same problem to share apossible
    solution with us
    in order to satisfy all requirements(security,auditing,CMP).
    Many Thanks
    Blyau Gino
    [email protected]

  • Installation error message for Oracle Database software for version 10g

    Would someone be able to advise why I keep getting the following error message whilst installing Oracle trial Database software for version 10g Release 2 Standard Edition, Standard Edition One, and Enterprise Edition? Link listed below : -
    http://www.oracle.com/technology/software/products/database/oracle10g/index.html
    Error message "Cannot create directory"C:\oracle\product\10.2.0\db_7\cfgtoollogs\dbca\projemp"
    Below is the 12 steps that I go through, please advise what I'm doing wrong : -
    1. (Operations) default is Create a database
    2. (Database templetes) default is general purpose
    3. (Database Identification) projemp.local for Global database name & projemp for SID
    4. (Management options) default is "Configure the database with Enterprise manager, also the options button has been clicked for "Use database control for database management"
    5. (Database Credentials) the options button has been clicked for "Use the same password for all accounts" so I've set up a new password, was that correct?
    6. (Storage options) the options button is clicked for "File System - use the file system for database storage.
    7. (Database file locations) the options button is clicked for "Use database file locations for template" Is this option correct? Other options are Use common location for all database files or use Oracle-managed files?
    8. (Recovery configuration) the options button is clicked for "Specify flash recovery area
    9. (Database content) nothing has been selected, the only option is "Sample schemas" should that be clicked?
    10. (Initialization parameters) the options button is clicked for "Typical- allocate memory as a % of the total physical memory
    11. (Database storage) no options available
    12. (Creation options) the options button has been selected for "Create Database"
    Click finish
    I then get a screen stating General purpose, click OK then I get the following error message as stated at the start of this e-mail ""Cannot create directory"C:\oracle\product\10.2.0\db_7\cfgtoollogs\dbca\projemp".
    Regards
    Phil

    855880 wrote:
    I have been trying to install the "Oracle Database software for version 10g Release 2 Standard Edition, Standard Edition One, and Enterprise Edition" about six times with no success.Do you realize you just mentioned 3 different and distinct products? So which one are you installing?
    >
    I've gone through my courses instructions as listed above (1-12) and end up with the following error message"C:\oracle\product\10.2.0\db_7\cfgtoollogs\dbca\projemp".What course?
    >
    I've removed the software from my computer using control panel, programs & features then uninstall once but the other five times the software hasn't been listed. Whilst the Oracle was on my task bar I was able to install using Start > Programs > Oracle - HOME-NAME > Database Administration > Database Configuration Assistant.No you didn't. Database Configuration Assistant does not remove software. It can remove a database. As I mentioned before, there is a difference between the software and the objects that software manages. Deleting an Excel spreadsheet is not the same as deleting Microsoft Office. Deleting an Oracle database with Database configuration assistant is not the same as removing the Oracle software.
    >
    Now that oracle is not on my task bar I've unzipped the link below, clicked on db, Disk1, setup, changed the Database password (is that correct?) install and I get the following error message "Check complete. The overall result of this check is: Failed<<<<<
    Problem: The install has detected that the primary IP address of the system is DHCP-assigned.
    Recommendation: Oracle supports installations on systems with DHCP-assigned IP addresses;
    However, before you can do this, you must configure the Microsoft LoopBack Adaptor to be the primary network adapter on the system. See the installation Guide for more details on installing the software on systems configured with DHCP."
    So what did you do with the above error message? Did you follow up on what it said? Did you read the very fine Installation Guide that comes with the software? Did you read the section on networking considerations where it discussed DHCP assigned addresses and installing the loopback adapter?
    http://www.oracle.com/technology/software/products/database/oracle10g/index.html
    Ok, that link takes us to the download page, which does not shed any light at all on your problems
    I'm using Windows Vista Home Premium, 32 bit operating system, and my computer is saying I have 142 GB free space.
    If you read the installation manual that came with the downloaded software, you'd have seen in the prerequisites that Home editions of Windows are NOT listed as supported platforms, whereas Business, Enterprise, and Ultimate editions specifically ARE listed as supportd.
    Hope this is some help.And
    I'm not to clever on computers so would you be able to advise how I get to the command window to issue the SET command please?
    Also I've no idea what OS user I am, I'm taking an on-line Oracle course and been advised to install "Oracle Database software for version 10g Release 2 Standard Edition, Standard Edition One, and Enterprise Edition"
    How do I find out if I'm part of an Administrator, ORA_DBA group ?
    Can you walk me through how to create the directory from command line please?Ok, given the above statements from you, I'm not even sure where to begin. I don't want to be cruel, but this self-admitted lack of even the most rudimentary knowledge by someone attempting to learn about Oracle is truly astounding. What course are you taking? Why are you taking this course?

  • Issue in Installing Oracle Database 11.2.0.2

    Hi All-
    I am trying to install Oracle Databse 11.2.0.2.
    I have downloaded patch - 10098816 for 32-bit windows version from Oracle Support.
    I am installing it on 32-bit Windows Server Enterprise, Service pack 2 machine.
    When I install it process till 60% and gets stuck at :
    updating registry key 'HKEY_LOCAL_MACHINE/SOFTWARE/ORACLE/KEY_OraDb11g_home1' My log file doesnt show any error messages.
    I have cleared all the pre installed Oracle DB from Windows Registery as well as Oracle Home. I am not sure why this happens.
    It would great if you could help.
    Below is my installation last few lines of my log file. I coudnt paste the entire log as max length for a post is 300000 characters
    INFO:
    Query Exception: VariableNotFoundException
    Query Exception Class: class oracle.sysman.oii.oiil.OiilQueryException
    INFO:
    INFO: Setting variable 'EM_IAS_CONSOLE_PORT' to ''. Received the value from a code block.
    INFO: Calling Query globalVarQueries2.1.0.4.1  getGlobalVariable
    variable = oracle.sysman.top.agent.s_agentSrvcName
    INFO:
    Query Exception: VariableNotFoundException
    Query Exception Class: class oracle.sysman.oii.oiil.OiilQueryException
    INFO:
    INFO: Setting variable 'AGENT_SRVC_NAME' to ''. Received the value from a code block.
    INFO: Calling Action fileActions11.2.0.2.0  instantiateFileEx
         source = E:\Oracle_DB\product\11.2.0\DB_Home\bin\emtgtctl.bat.template
         destination = E:\Oracle_DB\product\11.2.0\DB_Home\bin\emtgtctl.bat
         variables = EMDROOT,ORACLE_HOME
         delimiter = #
         encoding = null
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\bin\emtgtctl.bat.template'.
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\bin\emtgtctl.bat.template'.
    INFO: Calling Action fileActions11.2.0.2.0  instantiateFileEx
         source = E:\Oracle_DB\product\11.2.0\DB_Home\bin\commonenv.bat.template
         destination = E:\Oracle_DB\product\11.2.0\DB_Home\bin\commonenv.bat
         variables = EMPERLVER,EMPERLOHBIN
         delimiter = #
         encoding = null
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\bin\commonenv.bat.template'.
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\bin\commonenv.bat.template'.
    INFO: Calling Action fileActions11.2.0.2.0  instantiateFile
         selectedNodes = null
         source = E:\Oracle_DB\product\11.2.0\DB_Home\bin\emtgtctl
         destination = E:\Oracle_DB\product\11.2.0\DB_Home\bin\emtgtctl
         variables = null
         encoding = null
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\bin\emtgtctl'.
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\bin\emtgtctl'.
    INFO: Calling Action fileActions11.2.0.2.0  instantiateFileEx
         source = E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emd.properties.template
         destination = E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emd.properties
         variables = AGENT_SEED,CONTEXT_PATH,EMDROOT,EMD_EMAIL_ADDRESS,EMD_EMAIL_GATEWAY,EMD_FROM_EMAIL_ADDRESS,EMD_TRUSTCERTS_DIR,EM_HTTP_PORT,EM_REPOS_HOST,EM_REPOS_PROXYHOST,EM_REPOS_PROXYPORT,EM_SERVLET_PORT,EM_UPLOAD_DISABLE,EM_UPLOAD_PORT,HOSTNAME,JAVA_HOME,JRE_HOME,OC4JLOC,ORACLE_HOME,OUILOC,PSEP,PerlBin,n_uploadInterval,s_javapOracleHome
         delimiter = null
         encoding = null
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emd.properties.template'.
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emd.properties.template'.
    INFO: Calling Action fileActions11.2.0.2.0  instantiateFileEx
         source = E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emd.properties.template
         destination = E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emd.properties.emca
         variables = AGENT_SEED,CONTEXT_PATH,EMDROOT,EMD_EMAIL_ADDRESS,EMD_EMAIL_GATEWAY,EMD_FROM_EMAIL_ADDRESS,EMD_TRUSTCERTS_DIR,EM_REPOS_PROXYHOST,EM_REPOS_PROXYPORT,EM_UPLOAD_DISABLE,JAVA_HOME,JRE_HOME,OC4JLOC,ORACLE_HOME,OUILOC,PSEP,PerlBin,n_uploadInterval,s_javapOracleHome
         delimiter = null
         encoding = null
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emd.properties.template'.
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emd.properties.template'.
    INFO: Calling Action fileActions11.2.0.2.0  lineDelete
         fileName = E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emd.properties.emca
         searchString = UploadMaxBytesXML
         ignoreCase = true
    INFO: updating 'E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emd.properties.emca.
    INFO: updating 'E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emd.properties.emca.
    INFO: Calling Action fileActions11.2.0.2.0  appendStringToFile
         source = E:\Oracle_DB\product\11.2.0\DB_Home/sysman/config/emd.properties.emca
         stringToAppend = UploadMaxBytesXML=20M
    INFO: updating 'E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emd.properties.emca.
    INFO: updating 'E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emd.properties.emca.
    INFO: Calling Action fileActions11.2.0.2.0  instantiateFileEx
         source = E:\Oracle_DB\product\11.2.0\DB_Home\bin\emagentdeploy.pl
         destination = E:\Oracle_DB\product\11.2.0\DB_Home\bin\emagentdeploy.pl
         variables = null
         delimiter = null
         encoding = null
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\bin\emagentdeploy.pl'.
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\bin\emagentdeploy.pl'.
    INFO: Calling Action fileActions11.2.0.2.0  instantiateFile
         selectedNodes = null
         source = E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emagentlogging.properties.template
         destination = E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emagentlogging.properties
         variables = null
         encoding = null
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emagentlogging.properties.template'.
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emagentlogging.properties.template'.
    INFO: Setting up 'Oracle Enterprise Manager Console DB 11.2.0.2.0 '
    INFO: Setting up 'Oracle Enterprise Manager Console DB 11.2.0.2.0 '
    INFO: 6/7/11 12:08:09 PM IST: Starting install Install Phase 2 of component Oracle Enterprise Manager Console DB
    INFO: Calling Query globalVarQueries2.1.0.4.1  getGlobalVariable
    variable = oracle.sqlplus.isqlplus.httpport
    INFO:
    Query Exception: VariableNotFoundException
    Query Exception Class: class oracle.sysman.oii.oiil.OiilQueryException
    INFO:
    INFO: Setting variable 'ISQLPLUS_PORT' to ''. Received the value from a code block.
    INFO: Calling Action fileActions11.2.0.2.0  instantiateFile
         selectedNodes = null
         source = E:\Oracle_DB\product\11.2.0\DB_Home/sysman/config/emoms.properties
         destination = E:\Oracle_DB\product\11.2.0\DB_Home/sysman/config/emoms.properties.emca
         variables = NO_PC_MODE,USE_HTTP_PROXY,EM_PING_COMMAND,SET_CONSOLE_MODE,USE_DB_CONSOLE,CONSOLE_MODE,ISQLPLUS_PORT,ISQLPLUS_HOST,ISQLPLUS_PROTOCOL
         encoding = null
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emoms.properties'.
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emoms.properties'.
    INFO: Calling Action fileActions11.2.0.2.0  instantiateFile
         selectedNodes = null
         source = E:\Oracle_DB\product\11.2.0\DB_Home/bin/db2gc
         destination = E:\Oracle_DB\product\11.2.0\DB_Home/bin/db2gc
         variables = NO_PC_MODE,USE_HTTP_PROXY,EM_PING_COMMAND,SET_CONSOLE_MODE,USE_DB_CONSOLE,CONSOLE_MODE,ISQLPLUS_PORT,ISQLPLUS_HOST,ISQLPLUS_PROTOCOL
         encoding = null
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\bin\db2gc'.
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\bin\db2gc'.
    INFO: Calling Action fileActions11.2.0.2.0  instantiateFile
         selectedNodes = null
         source = E:\Oracle_DB\product\11.2.0\DB_Home/oc4j/j2ee/OC4J_DBConsole/config/system-application.xml
         destination = E:\Oracle_DB\product\11.2.0\DB_Home/oc4j/j2ee/OC4J_DBConsole/config/system-application.xml
         variables = ORACLE_HOME
         encoding = null
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\oc4j\j2ee\OC4J_DBConsole\config\system-application.xml'.
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\oc4j\j2ee\OC4J_DBConsole\config\system-application.xml'.
    INFO: Calling Action fileActions11.2.0.2.0  instantiateFile
         selectedNodes = null
         source = E:\Oracle_DB\product\11.2.0\DB_Home/sysman/config/emomslogging.properties.template
         destination = E:\Oracle_DB\product\11.2.0\DB_Home/sysman/config/emomslogging.properties
         variables = EMDROOT,LOGGING_LEVEL,s_javapOracleHome
         encoding = null
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emomslogging.properties.template'.
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emomslogging.properties.template'.
    INFO: Calling Action fileActions11.2.0.2.0  instantiateFileEx
         source = E:\Oracle_DB\product\11.2.0\DB_Home/sysman/config/emomsintg.xml
         destination = E:\Oracle_DB\product\11.2.0\DB_Home/sysman/config/emomsintg.xml
         variables = EMDROOT,LOGGING_LEVEL
         delimiter = null
         encoding = null
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emomsintg.xml'.
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emomsintg.xml'.
    INFO: Calling Query RepositoryQueries3.0.0.2.17  Obfuscate
    InputString = *Protected value, not to be logged*
    OracleHome = E:\Oracle_DB\product\11.2.0\DB_Home
    JavaLocation = null
    JarLocation = null
    INFO: Query Returned: *Protected value, not to be logged*
    INFO: Setting variable 's_obfOc4jAdmPasswd' to '*Protected value, not to be logged*'. Received the value from a code block.
    INFO: Calling Query RepositoryQueries3.0.0.2.17  Obfuscate
    InputString = *Protected value, not to be logged*
    OracleHome = E:\Oracle_DB\product\11.2.0\DB_Home
    JavaLocation = null
    JarLocation = null
    INFO: Query Returned: *Protected value, not to be logged*
    INFO: Setting variable 's_obfJtaAdmPasswd' to '*Protected value, not to be logged*'. Received the value from a code block.
    INFO: Calling Action fileActions11.2.0.2.0  instantiateFile
         selectedNodes = null
         source = E:\Oracle_DB\product\11.2.0\DB_Home\oc4j\j2ee\\OC4J_DBConsole\config\system-jazn-data.xml
         destination = E:\Oracle_DB\product\11.2.0\DB_Home\oc4j\j2ee\\OC4J_DBConsole\config\system-jazn-data.xml
         variables = s_obfOc4jAdmPasswd,s_obfJtaAdmPasswd
         encoding = null
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\oc4j\j2ee\\OC4J_DBConsole\config\system-jazn-data.xml'.
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\oc4j\j2ee\\OC4J_DBConsole\config\system-jazn-data.xml'.
    INFO: Calling Action fileActions11.2.0.2.0  removeFile
         selectedNodes = null
         source = E:\Oracle_DB\product\11.2.0\DB_Home\oc4j\j2ee\oc4j_applications\applications\em.ear
    INFO: deleting 'E:\Oracle_DB\product\11.2.0\DB_Home\oc4j\j2ee\oc4j_applications\applications\em.ear'
    INFO: deleting 'E:\Oracle_DB\product\11.2.0\DB_Home\oc4j\j2ee\oc4j_applications\applications\em.ear'
    INFO: Calling Action fileActions11.2.0.2.0  removeFile
         selectedNodes = null
         source = E:\Oracle_DB\product\11.2.0\DB_Home\oc4j\j2ee\oc4j_applications\applications\em\em.war
    INFO: deleting 'E:\Oracle_DB\product\11.2.0\DB_Home\oc4j\j2ee\oc4j_applications\applications\em\em.war'
    INFO: deleting 'E:\Oracle_DB\product\11.2.0\DB_Home\oc4j\j2ee\oc4j_applications\applications\em\em.war'
    INFO: Calling Query globalVarQueries2.1.0.4.1  getGlobalVariable
    variable = oracle.assistants.server.sid
    INFO: Query Returned: OUBIDEV
    INFO: Setting variable 's_sid' to 'OUBIDEV'. Received the value from a code block.
    INFO: Setting variable 'b_launchBrowser' to 'true'. Received the value from a code block.
    INFO: Setting up 'HAS Files for DB 11.2.0.2.0 '
    INFO: Setting up 'HAS Files for DB 11.2.0.2.0 '
    INFO: 6/7/11 12:08:09 PM IST: Starting install Install Phase 2 of component HAS Files for DB
    INFO: Setting up 'Oracle Net Services 11.2.0.2.0 '
    INFO: Setting up 'Oracle Net Services 11.2.0.2.0 '
    INFO: 6/7/11 12:08:09 PM IST: Starting install Install Phase 2 of component Oracle Net Services
    INFO: Setting up 'Oracle Text 11.2.0.2.0 '
    INFO: Setting up 'Oracle Text 11.2.0.2.0 '
    INFO: 6/7/11 12:08:09 PM IST: Starting install Install Phase 2 of component Oracle Text
    INFO: Setting up 'Oracle Database 11g 11.2.0.2.0 '
    INFO: Setting up 'Oracle Database 11g 11.2.0.2.0 '
    INFO: 6/7/11 12:08:09 PM IST: Starting install Install Phase 2 of component Oracle Database 11g
    INFO: Calling Action w32RegActions10.2.0.1.0  RegSetValue
         selectedNodes =
         Key = HKEY_LOCAL_MACHINE
         SubKey = SOFTWARE\ORACLE\KEY_OraDb11g_home1
         value = RDBMS_CONTROL
         data = E:\Oracle_DB\product\11.2.0\DB_Home\DATABASE
         updateType = null
    INFO: updating registry key 'HKEY_LOCAL_MACHINE/SOFTWARE/ORACLE/KEY_OraDb11g_home1'
    INFO: updating registry key 'HKEY_LOCAL_MACHINE/SOFTWARE/ORACLE/KEY_OraDb11g_home1'
    INFO: Calling Action w32RegActions10.2.0.1.0  RegSetValue
         selectedNodes =
         Key = HKEY_LOCAL_MACHINE
         SubKey = SOFTWARE\ORACLE\KEY_OraDb11g_home1
         value = RDBMS_ARCHIVE
         data = E:\Oracle_DB\product\11.2.0\DB_Home\DATABASE\ARCHIVE
         updateType = null
    INFO: updating registry key 'HKEY_LOCAL_MACHINE/SOFTWARE/ORACLE/KEY_OraDb11g_home1'
    INFO: updating registry key 'HKEY_LOCAL_MACHINE/SOFTWARE/ORACLE/KEY_OraDb11g_home1'
    INFO: Calling Query UtilQueries11.2.0.2.0  GetNTUserName
    INFO: Query Returned: MNGKTR215626D\BI_coe
    INFO: Calling Action ntGrpActionLib10.2.0.1.0  AddToOraDbaGroup
         oradimLocation = E:\Oracle_DB\product\11.2.0\DB_Home\bin
         userName = MNGKTR215626D\BI_coe
         isRAC = false
         nodeList = Thanks in advance,
    Ramesh

    Hi Helios-
    Thanks for your response.
    My Window version is - Window Server Enterprise 2003, service pack 2Below is the log file:
    INFO: Calling Action ntw32FoldersActions10.2.0.3.0  ntCreateItem
         selectedNodes = null
         groupName = Oracle - OraDb11g_home1\Configuration and Migration Tools
         itemName = Database Configuration Assistant
         exeName = E:\Oracle_DB\product\11.2.0\DB_Home\bin\launch.exe
         paramName = null
         workingDir = E:\Oracle_DB\product\11.2.0\DB_Home\bin
         iconFileName = E:\Oracle_DB\product\11.2.0\DB_Home\assistants\dbca\dbca.ico
         icon = null
         cmdType = null
         multiparamName = E:\Oracle_DB\product\11.2.0\DB_Home\bin,dbca.cl
         runAsAdmin = 1
    INFO: creating 'Database Configuration Assistant' in folder 'Oracle - OraDb11g_home1\Configuration and Migration Tools'
    INFO: creating 'Database Configuration Assistant' in folder 'Oracle - OraDb11g_home1\Configuration and Migration Tools'
    INFO: Calling Action fileActions11.2.0.2.0  instantiateFile
         selectedNodes = null
         source = E:\Oracle_DB\product\11.2.0\DB_Home\assistants\dbca\instdbca.cl
         destination = E:\Oracle_DB\product\11.2.0\DB_Home\bin\dbca.cl
         variables = null
         encoding = null
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\assistants\dbca\instdbca.cl'.
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\assistants\dbca\instdbca.cl'.
    INFO: Calling Action fileActions11.2.0.2.0  removeFile
         selectedNodes = null
         source = E:\Oracle_DB\product\11.2.0\DB_Home\assistants\dbca\instdbca.cl
    INFO: deleting 'E:\Oracle_DB\product\11.2.0\DB_Home\assistants\dbca\instdbca.cl'
    INFO: deleting 'E:\Oracle_DB\product\11.2.0\DB_Home\assistants\dbca\instdbca.cl'
    INFO: Calling Action ntw32FoldersActions10.2.0.3.0  ntCreateItem
         selectedNodes = null
         groupName = Oracle - OraDb11g_home1\Configuration and Migration Tools
         itemName = Database Upgrade Assistant
         exeName = E:\Oracle_DB\product\11.2.0\DB_Home\bin\launch.exe
         paramName = null
         workingDir = E:\Oracle_DB\product\11.2.0\DB_Home\bin
         iconFileName = E:\Oracle_DB\product\11.2.0\DB_Home\assistants\dbua\dbma.ico
         icon = null
         cmdType = null
         multiparamName = E:\Oracle_DB\product\11.2.0\DB_Home\bin,dbua.cl
         runAsAdmin = 1
    INFO: creating 'Database Upgrade Assistant' in folder 'Oracle - OraDb11g_home1\Configuration and Migration Tools'
    INFO: creating 'Database Upgrade Assistant' in folder 'Oracle - OraDb11g_home1\Configuration and Migration Tools'
    INFO: Calling Action fileActions11.2.0.2.0  instantiateFile
         selectedNodes = null
         source = E:\Oracle_DB\product\11.2.0\DB_Home\assistants\dbua\dbua.sbs
         destination = E:\Oracle_DB\product\11.2.0\DB_Home\bin\dbua.bat
         variables = null
         encoding = null
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\assistants\dbua\dbua.sbs'.
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\assistants\dbua\dbua.sbs'.
    INFO: Calling Action fileActions11.2.0.2.0  removeFile
         selectedNodes = null
         source = E:\Oracle_DB\product\11.2.0\DB_Home\assistants\dbua\dbua.sbs
    INFO: deleting 'E:\Oracle_DB\product\11.2.0\DB_Home\assistants\dbua\dbua.sbs'
    INFO: deleting 'E:\Oracle_DB\product\11.2.0\DB_Home\assistants\dbua\dbua.sbs'
    INFO: Setting up 'Oracle JVM 11.2.0.2.0 '
    INFO: Setting up 'Oracle JVM 11.2.0.2.0 '
    INFO: 6/7/11 12:08:09 PM IST: Starting install Install Phase 2 of component Oracle JVM
    INFO: Setting up 'Oracle Advanced Security 11.2.0.2.0 '
    INFO: Setting up 'Oracle Advanced Security 11.2.0.2.0 '
    INFO: 6/7/11 12:08:09 PM IST: Starting install Install Phase 2 of component Oracle Advanced Security
    INFO: Setting up 'Enterprise Manager Agent 10.2.0.4.3 '
    INFO: Setting up 'Enterprise Manager Agent 10.2.0.4.3 '
    INFO: 6/7/11 12:08:09 PM IST: Starting install Install Phase 2 of component Enterprise Manager Agent
    INFO: Calling Query globalVarQueries2.1.0.4.1  getGlobalVariable
    variable = oracle.sysman.emd.iasconsoleport
    INFO:
    Query Exception: VariableNotFoundException
    Query Exception Class: class oracle.sysman.oii.oiil.OiilQueryException
    INFO:
    INFO: Setting variable 'EM_IAS_CONSOLE_PORT' to ''. Received the value from a code block.
    INFO: Calling Query globalVarQueries2.1.0.4.1  getGlobalVariable
    variable = oracle.sysman.top.agent.s_agentSrvcName
    INFO:
    Query Exception: VariableNotFoundException
    Query Exception Class: class oracle.sysman.oii.oiil.OiilQueryException
    INFO:
    INFO: Setting variable 'AGENT_SRVC_NAME' to ''. Received the value from a code block.
    INFO: Calling Action fileActions11.2.0.2.0  instantiateFileEx
         source = E:\Oracle_DB\product\11.2.0\DB_Home\bin\emtgtctl.bat.template
         destination = E:\Oracle_DB\product\11.2.0\DB_Home\bin\emtgtctl.bat
         variables = EMDROOT,ORACLE_HOME
         delimiter = #
         encoding = null
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\bin\emtgtctl.bat.template'.
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\bin\emtgtctl.bat.template'.
    INFO: Calling Action fileActions11.2.0.2.0  instantiateFileEx
         source = E:\Oracle_DB\product\11.2.0\DB_Home\bin\commonenv.bat.template
         destination = E:\Oracle_DB\product\11.2.0\DB_Home\bin\commonenv.bat
         variables = EMPERLVER,EMPERLOHBIN
         delimiter = #
         encoding = null
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\bin\commonenv.bat.template'.
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\bin\commonenv.bat.template'.
    INFO: Calling Action fileActions11.2.0.2.0  instantiateFile
         selectedNodes = null
         source = E:\Oracle_DB\product\11.2.0\DB_Home\bin\emtgtctl
         destination = E:\Oracle_DB\product\11.2.0\DB_Home\bin\emtgtctl
         variables = null
         encoding = null
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\bin\emtgtctl'.
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\bin\emtgtctl'.
    INFO: Calling Action fileActions11.2.0.2.0  instantiateFileEx
         source = E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emd.properties.template
         destination = E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emd.properties
         variables = AGENT_SEED,CONTEXT_PATH,EMDROOT,EMD_EMAIL_ADDRESS,EMD_EMAIL_GATEWAY,EMD_FROM_EMAIL_ADDRESS,EMD_TRUSTCERTS_DIR,EM_HTTP_PORT,EM_REPOS_HOST,EM_REPOS_PROXYHOST,EM_REPOS_PROXYPORT,EM_SERVLET_PORT,EM_UPLOAD_DISABLE,EM_UPLOAD_PORT,HOSTNAME,JAVA_HOME,JRE_HOME,OC4JLOC,ORACLE_HOME,OUILOC,PSEP,PerlBin,n_uploadInterval,s_javapOracleHome
         delimiter = null
         encoding = null
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emd.properties.template'.
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emd.properties.template'.
    INFO: Calling Action fileActions11.2.0.2.0  instantiateFileEx
         source = E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emd.properties.template
         destination = E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emd.properties.emca
         variables = AGENT_SEED,CONTEXT_PATH,EMDROOT,EMD_EMAIL_ADDRESS,EMD_EMAIL_GATEWAY,EMD_FROM_EMAIL_ADDRESS,EMD_TRUSTCERTS_DIR,EM_REPOS_PROXYHOST,EM_REPOS_PROXYPORT,EM_UPLOAD_DISABLE,JAVA_HOME,JRE_HOME,OC4JLOC,ORACLE_HOME,OUILOC,PSEP,PerlBin,n_uploadInterval,s_javapOracleHome
         delimiter = null
         encoding = null
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emd.properties.template'.
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emd.properties.template'.
    INFO: Calling Action fileActions11.2.0.2.0  lineDelete
         fileName = E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emd.properties.emca
         searchString = UploadMaxBytesXML
         ignoreCase = true
    INFO: updating 'E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emd.properties.emca.
    INFO: updating 'E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emd.properties.emca.
    INFO: Calling Action fileActions11.2.0.2.0  appendStringToFile
         source = E:\Oracle_DB\product\11.2.0\DB_Home/sysman/config/emd.properties.emca
         stringToAppend = UploadMaxBytesXML=20M
    INFO: updating 'E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emd.properties.emca.
    INFO: updating 'E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emd.properties.emca.
    INFO: Calling Action fileActions11.2.0.2.0  instantiateFileEx
         source = E:\Oracle_DB\product\11.2.0\DB_Home\bin\emagentdeploy.pl
         destination = E:\Oracle_DB\product\11.2.0\DB_Home\bin\emagentdeploy.pl
         variables = null
         delimiter = null
         encoding = null
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\bin\emagentdeploy.pl'.
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\bin\emagentdeploy.pl'.
    INFO: Calling Action fileActions11.2.0.2.0  instantiateFile
         selectedNodes = null
         source = E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emagentlogging.properties.template
         destination = E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emagentlogging.properties
         variables = null
         encoding = null
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emagentlogging.properties.template'.
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emagentlogging.properties.template'.
    INFO: Setting up 'Oracle Enterprise Manager Console DB 11.2.0.2.0 '
    INFO: Setting up 'Oracle Enterprise Manager Console DB 11.2.0.2.0 '
    INFO: 6/7/11 12:08:09 PM IST: Starting install Install Phase 2 of component Oracle Enterprise Manager Console DB
    INFO: Calling Query globalVarQueries2.1.0.4.1  getGlobalVariable
    variable = oracle.sqlplus.isqlplus.httpport
    INFO:
    Query Exception: VariableNotFoundException
    Query Exception Class: class oracle.sysman.oii.oiil.OiilQueryException
    INFO:
    INFO: Setting variable 'ISQLPLUS_PORT' to ''. Received the value from a code block.
    INFO: Calling Action fileActions11.2.0.2.0  instantiateFile
         selectedNodes = null
         source = E:\Oracle_DB\product\11.2.0\DB_Home/sysman/config/emoms.properties
         destination = E:\Oracle_DB\product\11.2.0\DB_Home/sysman/config/emoms.properties.emca
         variables = NO_PC_MODE,USE_HTTP_PROXY,EM_PING_COMMAND,SET_CONSOLE_MODE,USE_DB_CONSOLE,CONSOLE_MODE,ISQLPLUS_PORT,ISQLPLUS_HOST,ISQLPLUS_PROTOCOL
         encoding = null
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emoms.properties'.
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emoms.properties'.
    INFO: Calling Action fileActions11.2.0.2.0  instantiateFile
         selectedNodes = null
         source = E:\Oracle_DB\product\11.2.0\DB_Home/bin/db2gc
         destination = E:\Oracle_DB\product\11.2.0\DB_Home/bin/db2gc
         variables = NO_PC_MODE,USE_HTTP_PROXY,EM_PING_COMMAND,SET_CONSOLE_MODE,USE_DB_CONSOLE,CONSOLE_MODE,ISQLPLUS_PORT,ISQLPLUS_HOST,ISQLPLUS_PROTOCOL
         encoding = null
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\bin\db2gc'.
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\bin\db2gc'.
    INFO: Calling Action fileActions11.2.0.2.0  instantiateFile
         selectedNodes = null
         source = E:\Oracle_DB\product\11.2.0\DB_Home/oc4j/j2ee/OC4J_DBConsole/config/system-application.xml
         destination = E:\Oracle_DB\product\11.2.0\DB_Home/oc4j/j2ee/OC4J_DBConsole/config/system-application.xml
         variables = ORACLE_HOME
         encoding = null
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\oc4j\j2ee\OC4J_DBConsole\config\system-application.xml'.
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\oc4j\j2ee\OC4J_DBConsole\config\system-application.xml'.
    INFO: Calling Action fileActions11.2.0.2.0  instantiateFile
         selectedNodes = null
         source = E:\Oracle_DB\product\11.2.0\DB_Home/sysman/config/emomslogging.properties.template
         destination = E:\Oracle_DB\product\11.2.0\DB_Home/sysman/config/emomslogging.properties
         variables = EMDROOT,LOGGING_LEVEL,s_javapOracleHome
         encoding = null
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emomslogging.properties.template'.
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emomslogging.properties.template'.
    INFO: Calling Action fileActions11.2.0.2.0  instantiateFileEx
         source = E:\Oracle_DB\product\11.2.0\DB_Home/sysman/config/emomsintg.xml
         destination = E:\Oracle_DB\product\11.2.0\DB_Home/sysman/config/emomsintg.xml
         variables = EMDROOT,LOGGING_LEVEL
         delimiter = null
         encoding = null
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emomsintg.xml'.
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\sysman\config\emomsintg.xml'.
    INFO: Calling Query RepositoryQueries3.0.0.2.17  Obfuscate
    InputString = *Protected value, not to be logged*
    OracleHome = E:\Oracle_DB\product\11.2.0\DB_Home
    JavaLocation = null
    JarLocation = null
    INFO: Query Returned: *Protected value, not to be logged*
    INFO: Setting variable 's_obfOc4jAdmPasswd' to '*Protected value, not to be logged*'. Received the value from a code block.
    INFO: Calling Query RepositoryQueries3.0.0.2.17  Obfuscate
    InputString = *Protected value, not to be logged*
    OracleHome = E:\Oracle_DB\product\11.2.0\DB_Home
    JavaLocation = null
    JarLocation = null
    INFO: Query Returned: *Protected value, not to be logged*
    INFO: Setting variable 's_obfJtaAdmPasswd' to '*Protected value, not to be logged*'. Received the value from a code block.
    INFO: Calling Action fileActions11.2.0.2.0  instantiateFile
         selectedNodes = null
         source = E:\Oracle_DB\product\11.2.0\DB_Home\oc4j\j2ee\\OC4J_DBConsole\config\system-jazn-data.xml
         destination = E:\Oracle_DB\product\11.2.0\DB_Home\oc4j\j2ee\\OC4J_DBConsole\config\system-jazn-data.xml
         variables = s_obfOc4jAdmPasswd,s_obfJtaAdmPasswd
         encoding = null
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\oc4j\j2ee\\OC4J_DBConsole\config\system-jazn-data.xml'.
    INFO: instantiating 'E:\Oracle_DB\product\11.2.0\DB_Home\oc4j\j2ee\\OC4J_DBConsole\config\system-jazn-data.xml'.
    INFO: Calling Action fileActions11.2.0.2.0  removeFile
         selectedNodes = null
         source = E:\Oracle_DB\product\11.2.0\DB_Home\oc4j\j2ee\oc4j_applications\applications\em.ear
    INFO: deleting 'E:\Oracle_DB\product\11.2.0\DB_Home\oc4j\j2ee\oc4j_applications\applications\em.ear'
    INFO: deleting 'E:\Oracle_DB\product\11.2.0\DB_Home\oc4j\j2ee\oc4j_applications\applications\em.ear'
    INFO: Calling Action fileActions11.2.0.2.0  removeFile
         selectedNodes = null
         source = E:\Oracle_DB\product\11.2.0\DB_Home\oc4j\j2ee\oc4j_applications\applications\em\em.war
    INFO: deleting 'E:\Oracle_DB\product\11.2.0\DB_Home\oc4j\j2ee\oc4j_applications\applications\em\em.war'
    INFO: deleting 'E:\Oracle_DB\product\11.2.0\DB_Home\oc4j\j2ee\oc4j_applications\applications\em\em.war'
    INFO: Calling Query globalVarQueries2.1.0.4.1  getGlobalVariable
    variable = oracle.assistants.server.sid
    INFO: Query Returned: OUBIDEV
    INFO: Setting variable 's_sid' to 'OUBIDEV'. Received the value from a code block.
    INFO: Setting variable 'b_launchBrowser' to 'true'. Received the value from a code block.
    INFO: Setting up 'HAS Files for DB 11.2.0.2.0 '
    INFO: Setting up 'HAS Files for DB 11.2.0.2.0 '
    INFO: 6/7/11 12:08:09 PM IST: Starting install Install Phase 2 of component HAS Files for DB
    INFO: Setting up 'Oracle Net Services 11.2.0.2.0 '
    INFO: Setting up 'Oracle Net Services 11.2.0.2.0 '
    INFO: 6/7/11 12:08:09 PM IST: Starting install Install Phase 2 of component Oracle Net Services
    INFO: Setting up 'Oracle Text 11.2.0.2.0 '
    INFO: Setting up 'Oracle Text 11.2.0.2.0 '
    INFO: 6/7/11 12:08:09 PM IST: Starting install Install Phase 2 of component Oracle Text
    INFO: Setting up 'Oracle Database 11g 11.2.0.2.0 '
    INFO: Setting up 'Oracle Database 11g 11.2.0.2.0 '
    INFO: 6/7/11 12:08:09 PM IST: Starting install Install Phase 2 of component Oracle Database 11g
    INFO: Calling Action w32RegActions10.2.0.1.0  RegSetValue
         selectedNodes =
         Key = HKEY_LOCAL_MACHINE
         SubKey = SOFTWARE\ORACLE\KEY_OraDb11g_home1
         value = RDBMS_CONTROL
         data = E:\Oracle_DB\product\11.2.0\DB_Home\DATABASE
         updateType = null
    INFO: updating registry key 'HKEY_LOCAL_MACHINE/SOFTWARE/ORACLE/KEY_OraDb11g_home1'
    INFO: updating registry key 'HKEY_LOCAL_MACHINE/SOFTWARE/ORACLE/KEY_OraDb11g_home1'
    INFO: Calling Action w32RegActions10.2.0.1.0  RegSetValue
         selectedNodes =
         Key = HKEY_LOCAL_MACHINE
         SubKey = SOFTWARE\ORACLE\KEY_OraDb11g_home1
         value = RDBMS_ARCHIVE
         data = E:\Oracle_DB\product\11.2.0\DB_Home\DATABASE\ARCHIVE
         updateType = null
    INFO: updating registry key 'HKEY_LOCAL_MACHINE/SOFTWARE/ORACLE/KEY_OraDb11g_home1'
    INFO: updating registry key 'HKEY_LOCAL_MACHINE/SOFTWARE/ORACLE/KEY_OraDb11g_home1'
    INFO: Calling Query UtilQueries11.2.0.2.0  GetNTUserName
    INFO: Query Returned: MNGKTR215626D\BI_coe
    INFO: Calling Action ntGrpActionLib10.2.0.1.0  AddToOraDbaGroup
         oradimLocation = E:\Oracle_DB\product\11.2.0\DB_Home\bin
         userName = MNGKTR215626D\BI_coe
         isRAC = false
         nodeList = Regards,
    Ramesh

  • Cannot establish connection with Oracle database

    Hello
    This is the first time I use BOE server with Crystal Report to execute some tests, and one issue is blocking me now, and I am not even sure if this is the right Forum where I should post it.
    I installed BOE server XI 3.1 SP4 on Linux machine (new installation), and then I uploaded some existing Crystal Report templates that are working fine on another BOE server. Those CR templates have to establish a connection with a remote Oracle database to get the data, and we pass all credentials for this purpose.
    The first time I run my first test I received this error that I could not find anywhere on the web :
    ErrorLog 2011  8 10  7:05:52.505 14215 356 (Administrator:82) (../reporthandler.cpp:12462): CReportHandler::buildReportViewerError: CSResultExceFailed to open the connection." FileName:"../reporthandler.cpp" LineNum:12458 ErrorCode:756 ErrorMsg:"Failed to open the connection.
    {FBAD55EE-BEAF-11E0-BC1C-005056813A72}.rpt" DetailedErrorMsg:""
    I believe that the CR was not able to establish the connection with Oracle, so I install Oracle Client on the same machine (test remote connection ==> pass), I set the ORACLE_HOME variable, and I edit the file <installation_home>/ bobje/java/CRConfig.xml to add the path to ojdbc14.jar, and finnaly restart the tomcat server. However I am still getting the same error message.
    Is there any hint that can help me troubleshooting this issue?
    Thank you

    do the reports use native oracle connectivity or JDBC ?
    what version of Oracle client did you install ?
    was it 32bit or 64bit client ?
    what your LD_LIBRARY_PATH variable set to ?
    what does it say in the CMC when you look at CR report's DB properties ?

  • Does  Analytic Workspace Manager 11.2.0.3.0A  work with oracle database 12c?

    hello,
    i would like to know if AWM 11.2.0.3.0A works against with oracle database 12c in pdb mode or not .
    regards
    jm

    I have attempted to connect 11g versions of AWM to 12c and get this error:
    'This version of Analytic Workspace Manager is incompatible with the database instance. The Analytic Workspace Manager version is 11.2.0.3.0 and the database compatible version is 12.1.0.0.0'
    So unfortunately it is not compatible, and there is currently no AWM for 12c
    I also contacted Oracle support and they wont give me any information about a release date or any information on the xml template specification for 12c.
    I guess we will just have to wait till they release a version of AWM that supports 12c...
    Laszlo

  • Problem during installation oracle database configuration assistant FAILED

    Hi Dear,
    The Configurations are :
    VM OS : Oracle enterprise linux 5
    Trying to install : Oracle 11g R1
    I'm having a real problem , so i can't continue my installation during the configuration assistant, oracle net configuration assistant was succeeded but oracle database configuration assistant FAILED
    Here is the long message showed by console :
    Output generated from configuration assistant "Oracle Net Configuration Assistant":
    Command = /u01/app/oracle/product/11.1.0/db_1/bin/netca /orahome /u01/app/oracle/product/11.1.0/db_1 /orahnam OraDb11g_home1 /instype typical /inscomp client,oraclenet,javavm,server,ano /insprtcl tcp /cfg local /authadp NO_VALUE /nodeinfo NO_VALUE /responseFile /u01/app/oracle/product/11.1.0/db_1/network/install/netca_typ.rsp
    Parsing command line arguments:
    Parameter "orahome" = /u01/app/oracle/product/11.1.0/db_1
    Parameter "orahnam" = OraDb11g_home1
    Parameter "instype" = typical
    Parameter "inscomp" = client,oraclenet,javavm,server,ano
    Parameter "insprtcl" = tcp
    Parameter "cfg" = local
    Parameter "authadp" = NO_VALUE
    Parameter "nodeinfo" = NO_VALUE
    Parameter "responsefile" = /u01/app/oracle/product/11.1.0/db_1/network/install/netca_typ.rsp
    Done parsing command line arguments.
    Oracle Net Services Configuration:
    Profile configuration complete.
    Listener started at port:1521
    Oracle Net Listener Startup:
    Running Listener Control:
    /u01/app/oracle/product/11.1.0/db_1/bin/lsnrctl start LISTENER
    Listener Control complete.
    Listener started successfully.
    Listener configuration complete.
    Oracle Net Services configuration successful. The exit code is 0
    Configuration assistant "Oracle Net Configuration Assistant" succeeded
    Output generated from configuration assistant "Oracle Database Configuration Assistant":
    Command = oracle.assistants.server.DbcaCfgPlugIn /u01/app/oracle/product/11.1.0/db_1/bin/dbca -progress_only -createDatabase -templateName General_Purpose.dbc -sid DB11G -gdbName DB11G.WORLD -emConfiguration LOCAL -datafileJarLocation /u01/app/oracle/product/11.1.0/db_1/assistants/dbca/templates -datafileDestination /u01/app/oracle/oradata/ -responseFile NO_VALUE -characterset WE8MSWIN1252 -obfuscatedPasswords false -sampleSchema false -oratabLocation /u01/app/oracle/product/11.1.0/db_1/install/oratab -recoveryAreaDestination NO_VALUE -totalMemory 403 -automaticMemoryManagement true -sysPassword ${S_SYSPASS} -systemPassword ${S_SYSTEMPASS} -dbsnmpPassword ${S_DBSNMPPASS} -sysmanPassword ${S_SYSMANPASS} ${S_SYSASMPASS} ${S_HOSTUSERPASS}
    Configuration assistant "Oracle Database Configuration Assistant" failed
    The "/u01/app/oracle/product/11.1.0/db_1/cfgtoollogs/configToolFailedCommands" script contains all commands that failed, were skipped or were cancelled. This file may be used to run these configuration assistants outside of OUI. Note that you may have to update this script with passwords (if any) before executing the same.-----------------------------------------------------------------------------Output generated from configuration assistant "Oracle Database Configuration Assistant":
    Command = oracle.assistants.server.DbcaCfgPlugIn /u01/app/oracle/product/11.1.0/db_1/bin/dbca -progress_only -createDatabase -templateName General_Purpose.dbc -sid DB11G -gdbName DB11G.WORLD -emConfiguration LOCAL -datafileJarLocation /u01/app/oracle/product/11.1.0/db_1/assistants/dbca/templates -datafileDestination /u01/app/oracle/oradata/ -responseFile NO_VALUE -characterset WE8MSWIN1252 -obfuscatedPasswords false -sampleSchema false -oratabLocation /u01/app/oracle/product/11.1.0/db_1/install/oratab -recoveryAreaDestination NO_VALUE -totalMemory 403 -automaticMemoryManagement true -sysPassword ${S_SYSPASS} -systemPassword ${S_SYSTEMPASS} -dbsnmpPassword ${S_DBSNMPPASS} -sysmanPassword ${S_SYSMANPASS} ${S_SYSASMPASS} ${S_HOSTUSERPASS}
    Configuration assistant "Oracle Database Configuration Assistant" failed
    The "/u01/app/oracle/product/11.1.0/db_1/cfgtoollogs/configToolFailedCommands" script contains all commands that failed, were skipped or were cancelled. This file may be used to run these configuration assistants outside of OUI. Note that you may have to update this script with passwords (if any) before executing the same.-----------------------------------------------------------------------------Output generated from configuration assistant "Oracle Database Configuration Assistant" (attempt 2):
    Command = oracle.assistants.server.DbcaCfgPlugIn /u01/app/oracle/product/11.1.0/db_1/bin/dbca -progress_only -createDatabase -templateName General_Purpose.dbc -sid DB11G -gdbName DB11G.WORLD -emConfiguration LOCAL -datafileJarLocation /u01/app/oracle/product/11.1.0/db_1/assistants/dbca/templates -datafileDestination /u01/app/oracle/oradata/ -responseFile NO_VALUE -characterset WE8MSWIN1252 -obfuscatedPasswords false -sampleSchema false -oratabLocation /u01/app/oracle/product/11.1.0/db_1/install/oratab -recoveryAreaDestination NO_VALUE -totalMemory 403 -automaticMemoryManagement true -sysPassword ${S_SYSPASS} -systemPassword ${S_SYSTEMPASS} -dbsnmpPassword ${S_DBSNMPPASS} -sysmanPassword ${S_SYSMANPASS} ${S_SYSASMPASS} ${S_HOSTUSERPASS}
    Configuration assistant "Oracle Database Configuration Assistant" failed
    The "/u01/app/oracle/product/11.1.0/db_1/cfgtoollogs/configToolFailedCommands" script contains all commands that failed, were skipped or were cancelled. This file may be used to run these configuration assistants outside of OUI. Note that you may have to update this script with passwords (if any) before executing the same.-----------------------------------------------------------------------------Output generated from configuration assistant "Oracle Database Configuration Assistant" (attempt 3):
    Command = oracle.assistants.server.DbcaCfgPlugIn /u01/app/oracle/product/11.1.0/db_1/bin/dbca -progress_only -createDatabase -templateName General_Purpose.dbc -sid DB11G -gdbName DB11G.WORLD -emConfiguration LOCAL -datafileJarLocation /u01/app/oracle/product/11.1.0/db_1/assistants/dbca/templates -datafileDestination /u01/app/oracle/oradata/ -responseFile NO_VALUE -characterset WE8MSWIN1252 -obfuscatedPasswords false -sampleSchema false -oratabLocation /u01/app/oracle/product/11.1.0/db_1/install/oratab -recoveryAreaDestination NO_VALUE -totalMemory 403 -automaticMemoryManagement true -sysPassword ${S_SYSPASS} -systemPassword ${S_SYSTEMPASS} -dbsnmpPassword ${S_DBSNMPPASS} -sysmanPassword ${S_SYSMANPASS} ${S_SYSASMPASS} ${S_HOSTUSERPASS}
    Configuration assistant "Oracle Database Configuration Assistant" failed
    The "/u01/app/oracle/product/11.1.0/db_1/cfgtoollogs/configToolFailedCommands" script contains all commands that failed, were skipped or were cancelled. This file may be used to run these configuration assistants outside of OUI. Note that you may have to update this script with passwords (if any) before executing the same.-----------------------------------------------------------------------------
    Please help me it's urgently

    Please help me i can't find any solution to resolve this trouble
    Should i uninstall this version or what exactly, could you please suggest to me something like another release who matches that configuration
    Sorry but i have no idea
    Waiting for the response

Maybe you are looking for

  • G3 won't boot 8.6 or 9 Install CD's

    I have a B&W G3 that currently has 10.2 on it. I'm trying to install the original system on it (8.6), but it hangs or freezes when it reaches the "Happy Mac" on startup. I've also tried booting from an OS 9 CD (Universal installer), and it does the s

  • Why is itunes always rebuffering since the latest upgrade?

    Why is itunes store always rebuffering since the last upgrade? 

  • Can packaging save as draft?

    Hi Develope exports,    My B1 Ver. 2007B(PL13). I fond that till this version, Packaging can't save as draft.    I create an A/R Invoice and save it as draft ,with a  Packaging appended.  When I open the Invoice draft, right click and reopen packagin

  • ICloud replaced my main calendar with a series of empty "Untitled" calendars

    At some point yesterday, I cloud replaced my primary calendar, called "Home" and replaced it with three calendars called: Untitled Calendar. Untitled Calendar_ 1_-_1 Untitled Calendar. There are no events in these new calendars, so all the events i h

  • Reset to Defaults on customize screen - timing out?

    "Portlet 1 responded with content-type text/plain when the client was requesting content-type text/html" I get the above error when the "Reset to Defaults" button is used on the customize screen on which there is a very large LOV. My LOV contains 10,