Oracle 9i database monitoring scripts

Hi Friends,
I am asked by my boss to submit weekly reports about the database status.
She wanted something in excel format.
Can you suggest me what reports do I submit?
I found the following monitoring scripts from google:
Are these scripts still relevant ,or applicable, or obsolete?
PURPOSE
This article contains a few ready-made queries on V$SQLAREA
for identifying the top 10 most resource-consuming SQL statements
with a variety of criteria.
The thresholds used are the same as used by default in Statspack:
Buffer Gets : 10,000
Physical Reads : 1,000
Executions : 100
Parse Calls : 1,000
Sharable Memory : 1,048576
Version Count : 20
Top 10 by Buffer Gets:
set linesize 100
set pagesize 100
SELECT * FROM
(SELECT substr(sql_text,1,40) sql,
        buffer_gets, executions, buffer_gets/executions "Gets/Exec",
        hash_value,address
   FROM V$SQLAREA
  WHERE buffer_gets > 10000
ORDER BY buffer_gets DESC)
WHERE rownum <= 10
Rem Top 10 by Physical Reads:
set linesize 100
set pagesize 100
SELECT * FROM
(SELECT substr(sql_text,1,40) sql,
        disk_reads, executions, disk_reads/executions "Reads/Exec",
        hash_value,address
   FROM V$SQLAREA
  WHERE disk_reads > 1000
ORDER BY disk_reads DESC)
WHERE rownum <= 10
Rem Top 10 by Executions:
set linesize 100
set pagesize 100
SELECT * FROM
(SELECT substr(sql_text,1,40) sql,
        executions, rows_processed, rows_processed/executions "Rows/Exec",
        hash_value,address
   FROM V$SQLAREA
  WHERE executions > 100
ORDER BY executions DESC)
WHERE rownum <= 10
Rem Top 10 by Parse Calls:
set linesize 100
set pagesize 100
SELECT * FROM
(SELECT substr(sql_text,1,40) sql,
        parse_calls, executions, hash_value,address
   FROM V$SQLAREA
  WHERE parse_calls > 1000
ORDER BY parse_calls DESC)
WHERE rownum <= 10
Top 10 by Sharable Memory:
set linesize 100
set pagesize 100
SELECT * FROM
(SELECT substr(sql_text,1,40) sql,
        sharable_mem, executions, hash_value,address
   FROM V$SQLAREA
  WHERE sharable_mem > 1048576
ORDER BY sharable_mem DESC)
WHERE rownum <= 10
Top 10 by Version Count:
set linesize 100
set pagesize 100
SELECT * FROM
(SELECT substr(sql_text,1,40) sql,
        version_count, executions, hash_value,address
   FROM V$SQLAREA
  WHERE version_count > 20
ORDER BY version_count DESC)
WHERE rownum <= 10
;I just feel the above reports not really meaningful :(
Can you give me some other scripts that u have?
Thanks a lot,
MsK

Thanks all :-*
@sybrand
Oracle 9i comes with Oracle Enterprise Manager. This includes a reporting website with monitoring scripts.
Why write them yourself?My boss want a cumulative report over time, for example : what happened @ 1am,2am,3am on tuesday last week, why is the server so slow that the batch job did not complete as expected? Why was an error occured about a table that can not extend? Ora 1635. I mean you can see in the report that at this certain hour a certain tablespace was full.
oops maybe tablespace sample is not logical :D
say every day I can have excel reports of tablespace space status like:
tablespace_name   used     free     date
TS_DATA          1000K   5000k  1-Oct-2010
TS_DATA          2000K   4000k  2-Oct-2010
TS_DATA          3000K   3000k  3-Oct-2010
TS_DATA          4000K   2000k  4-Oct-2010
TS_DATA          5000K   1000k  5-Oct-2010
TS_DATA          5000K      0k  6-Oct-2010Does Statspack can hold historical data for analysis? say for the last 24 hrs?
Thanks a lot

Similar Messages

  • Database Monitoring Scripts in Metalink

    Hi,
    Someone give me before a metalink notes where in lots of database monitoring/tuning scripts are compiled.
    I remember saving it in my folder. But I can not find where the folder is located now. :(
    Can you help me find that metalink note again please....
    Thanks a lot
    Ms K

    Hi again;
    Please also check:
    Script To Monitor Memory Usage By Database Sessions [ID 239846.1]
    Script to Monitor Current User Activity in the Database [ID 135749.1]
    How to Perform a Health Check on the Database [ID 122669.1]
    RDBPROD: Monitor Lock Scripts for Oracle Rdb Databases [ID 137026.1]
    Script: To Monitor the Usage of Indexes [ID 1033478.6]
    Regard
    Helios

  • Oracle 10g : database generation script

    I am new to oracle 10g and have migrated the database from MS sql server to Oracle using the migration work bench. Everything got migrated al right but now I want to generate a script of the database. Is there any way I can generate a db building script of the database like I can do in SQL server. Also, SQL server enterprise manager has a diagram tool where I can view the database diagram? Is there anything matching in Oracle?
    Thanks,
    balak

    You can try to use export tool (exp) with full=y rows=n and then import tool (imp) with show=y: but that does it not easy to read or to process.
    You can also have a look to package DBMS_METADATA but it likely requires some PL/SQL code the loop for each type of object and for each schema.
    See http://download-uk.oracle.com/docs/cd/B10501_01/appdev.920/a96612/d_metad2.htm#1028659
    For 10g, there are maybe similar features with the data pump tools but I am not sure: http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14215/dp_overview.htm#i1009203
    Message was edited by:
    Pierre Forstmann

  • Oracle Session & Database monitoring

    Hi All,
    I need to track the users who fired the insert ,delete,update statement on all critical production table and business don't like to enable the audit feature since it will affect performance of oracle database.
    Database version : 11gR2
    thanks,
    Mr.B

    903787 wrote:
    Hi,
    When we enable the Audit trace in the database level it will affect the database performance so business not willing to take that risk in order to avoid any deliverable miss.And so would be taking the backup but does that you mean you won't take the backup too? If you need it, you have to enable it, period! And moreover, as Ed said, its not just enabling it. You have to sit and configure that for what areas you need auditing to be enabled. The overhead, though would be there, won't be that much that it would make your db crawl unless its already very slow.
    But they like to restrict the productions table access, is there any way? Restricting the access is a very different requirement from monitoring the access. Still, have a look at data vault for the same.
    While discussed with app dev team they said earlier we used to create synonym on those critical tables.
    Aman....

  • Database uptime monitoring by either snmp or active monitor script anyone?

    Hi,
    Has anyone previously setup any type of active monitoring script through whats up gold or an snmp informant type of monitoring script to advise when a database is down or specific process is down?
    An example would be like ORACLE_PKG1, and the process is named ora_smon_hrprd88.
    This is what the HP-UX “ps” shows:
    tpadb01:/# ps -ef | grep -i ora_smon
    oracle 13207 1 0 Jan 1 ? 0:29 ora_smon_epprd88
    oracle 13281 1 0 Jan 1 ? 1:31 ora_smon_hrprd88
    oracle 13635 1 0 Jan 1 ? 1:03 ora_smon_fsprd84
    oracle 3620 1 0 Jan 2 ? 0:18 ora_smon_mtprd04
    oracle 14586 1 0 Jan 1 ? 0:23 ora_smon_mtprd05
    oracle 15223 1 0 Jan 1 ? 0:26 ora_smon_inprd88
    oracle 15879 1 0 Jan 1 ? 0:25 ora_smon_epsal88
    oracle 16769 1 0 Jan 1 ? 0:52 ora_smon_hrsal88
    root 17976 22609 0 10:46:39 ttyp2 0:00 grep -i ora_smon
    tpadb01:/#
    Not sure if the extra info helps, but you never know. We can set it up to send us database up alerts, but the problem I have is when the listener service is down I can't get my script to finish no matter how I change the values of my script around. I can provide my script if that would help as well. If someone has already done this and is willing to share great!
    Harvey

    I would suggest you install OEM Grid Control to monitor your databases. For basic monitoring function it's free. OEM GC works great, it's a little overweight though. It's also use SNMP.
    Or you can choose any third party tool like
    Monitoring Oracle Enterprise with Cricket
    http://www.mikehan.com/cricket/oracle.html
    or some commercial one like Quest Software.

  • How to monitor oracle 11g database sessions on Windows 2008 server?

    Hi Experts
    How to monitor the Oracle 11g database sessions on Windows 2008 server (other than SQL Developer tool), which procedure or query is taking more time with Java application.

    Recently i found this tool- myorasql on the net to monitor the performence of database, easy to setup and check the performence.  i never tested it but seems impresive.  It is free and i think it would be use ful to you.
    http://myorasql.com/
    You can also use Quest - Toad or sqlplus if you are very good at sql commands and all dictionary tables or OEM/EM grid if it is configured .

  • Oracle 9i monitoring scripts in HACMP 5.4

    Hi,
    I have installed Oracle 9.2.0.8 on AIX 5.3 (HACMP 5.4) in active passive cluster.
    I have made startup and shutdown scripts for Oracle.
    Can anyone please guide me or point me to some link for the monitoring scripts for Oracle in HACMP so that failover can happen automaticaly.
    Regards,
    Amit E

    Have you tried changing the /etc/redhat-release file? Change the "release 5" to "release 4" and see what happens. Make sure you change it back after the install.
    Tom

  • SCRIPT를 이용한 ORACLE 8I DATABASE 생성방법

    제품 : ORACLE SERVER
    작성날짜 : 2002-04-08
    아래에서는 Oracle 8i의 dbassist를 이용한 database 생성 작업 시 생성되는
    database 생성 shell script를 이용하여 databsae를 생성하는 절차에 대하여
    설명한다.
    1. script file의 위치
    OUI를 이용한 install 시 dbassist를 통한 database를 생성하게 되면 특별히
    directory를 변경하지 않은 경우 다음 directory에 script file들이 생성된다.
    $ORACLE_BASE/admin/create(Database 생성 시 자동적으로 생성이 되는 경우)
    or
    $ORACLE_HOME/install(Database 생성 작업 없이 script를 생성할 경우)
    2. script files
    crdb1.sh - database 생성
    crdb2.sh
    crdb3.sh
    (혹은 file이름이 run.sh, run1.sh,run2.sh일 수 있으며,
    crdb.sh가 없으면 이 run.sh를 find로 찾아 이용)
    replicate.sh - Advanced replication option
    ordinst.sh - Oracle Intermedia
    imedia.sh
    drsys.sh _ Oracle interMedia Text
    context.sh
    java.sh - Oracle Jserver
    spatial.sh - Oracel Spatial
    timeseries.sh - Oracle TimeSeries
    virage.sh - Oracle Visual Information Retrieval
    sqlplus1.sh - Demos and SQL*Plus help tables
    sqlplus2.sh
    sqlplus3.sh
    3. database 생성
    database를 생성하는 절차이다.
    새로운 database를 생성하기 위해서는 dba에 속한 새로운 os account로
    다음의 작업을 하여야 한다.
    Oracle software를 install하고 database를 생성하지 않고 script를 작성한
    경우에는 install user로 작업을 한다.
    3.1 위의 file들을 수행하기 전에 ORACLE_SID, ORACLE_HOME, ORACLE_OWNER,
    NLS_LANG, ORA_NLS33, LD_LIBRARY_PATH, PATH등의 oracle shell parameter
    들이 정확히 설정되어 있는지를 확인한다.
    새로운 db 생성이라면 기존 db와는 다른 ORACLE_SID를 지정하여야 한다.
    나머지는 기존 db와 같도록 기존 db의 .profile (혹은 .cshrc)를 copy하여
    ORACLE_SID 부분만 변경한다.
    3.2 Oracle initialize file(init<SID>.ora)은 oracle instance에 대한
    kernel parameter들이 정의되는 file로 instance를 띄우기 위하여 반드시
    필요한 file이다.
    위치는 $ORACLE_HOME/dbs에 위치하여야 한다.
    새로운 db생성의 경우는 기존의 initSID.ora file을 copy하여 새로운 이름의
    initNEWSID.ora file로 새로운 SID를 이용하여 copy하도록 하고 이
    initSID.ora file과 initSID.ora file내에 ifile=로 지정된 configSID.ora
    file이 있다면 이 부분도 새로온 SID를 이용하여 configNEWSID.ora file로
    copy한다.
    그리고 그 file내의 db_name이나 control_files와 같은 parameter를 새로운
    db에 맞추어 변경한다.
    3.3 database를 생성하기 위하여 <SID>crdb1.sh, <SID>crdb2.sh,
    <SID>crdb3.sh순으로 수행한다. 이 과정에서 database생성 및 dictionary
    objects, pl/sql standard package들이 생성되게 된다.
    새로운 db의 생성의 경우 이 file들을 경우에 따라 다른 이름으로 copy한
    후 vi로 들어가 datafile생성 위치를 기존 db와 다르게 지정하고 size의
    경우도 원하는 형태대로 변경한다.
    3.4 advanced replication option을 사용하는 경우 <SID>replicate.sh를
    수행한다.
    3.5 Oracle Intermedia를 위하여 <SID>ordinst.sh, <SID>imedia.sh를
    Intermedia Text는 <SID>drsys.sh, <SID>context.sh를 차례대로
    수행한다.

  • Can Grid control 11g monitor Oracle 9i database

    Can Grid control 11g monitor Oracle 9i database? This is on Linux5.7
    Thanks for the help
    s.

    Yes but Enterprise Manager 11.1 Grid Control requires the 11.1 Agent.
    Then go to the Targets tab, then Databases. It should self-discover the 9i database.
    Also see Advanced Uses of Oracle Enterprise Manager 11g
    http://www.oracle.com/us/products/enterprise-manager/advanced-uses-em11g-wp-170683.pdf
    >
    Oracle Secure Backup protects not only Oracle Database 9i, 10g and 11g,
    Grid Control supplies a common, standard interface to set up and manage Oracle Data Guard for Oracle Database 9i, 10g and 11g databases

  • ORAMON: Oracle Database Monitoring tool in PHP

    ORAMON is a free Oracle database monitoring tool written in PHP. It can help you in managing critical database administration task easily. It also offers SQL Editor where you can write your own customize queries.
    What you can monitor from Oramon?
    * Database/Listener status
    * Notification on database status
    * Hit ratios
    * User information
    * Rollback segments
    * Tablespaces
    and more..
    Please visit oramon website http://www.oramon.org for more detail.
    For download go to http://www.oramon.org/download.php

    Can you please list this project in open source project list?

  • Oracle 9i Database -- Performance window in Grid Control not data available

    Hi
    I have Grid Control 10.2.0.4 on Red Hat and i monitoring some Oracle 9i Instances. When i go to any of these instances to the Performance section, at begininig , ever, not data available in all the graphics.
    When i select manual refresh the graphic begin to build information. But if i close the explorer and reopen , all graphics not have any information.
    Is the situation normal for all Oracle 9i databases?
    The explanation is that Oracle 9i not have AWR ?
    Thanks

    You have too few RAM on your machine, even you could successfully create an instance, it's going to slow as hell.
    When you run DBCA to create database, instead of actually creating the database you could choose to dump the SQL scripts and files used for database creation to a directory. This way will give you a chance to modify pfile and reduce the SGA parameter. I believe the default SGA of instance created by DBCA is already beyond your RAM limit.

  • Oracle 9i Database 9.2.0.1.0 Issues...

    Hi Friends,
    I downloaded the Oracle DB 9i Enterprise Edition (9.2.0.1) from Oracle's website for my class assignment. When I got to the screen that says "Installation types" Oracle 9i Database 9.2.0.1.0 and hit the NEXT button the universal installer disappears with no warning right at 36%. So then I tried to choose "Custom" instead of Enterprise Edition and the same exact thing happened. My computer specs are as follows:
    O/S: Windows XP Professional
    CPU: 2.8 Ghz
    Phys. Memory: 1,024 MB
    Available Physical Memory: 324 MB
    Hard Disk: 210 GB free space
    I would appreciate ANY help as my assignment is due on Monday. I have uninstalled and reinstalled so many times and nothing seems to work. My friend suggested that there may be a DLL file causing conflict somewhere. I don't know...I just need help and I am so frustrated with this! Thanks.

    Hello Everyone,
    I found a log file in c:\program files\oracle\inventory\logs. I am not sure if this will show anything but I am so desparate right now that I am willing to try just about anything. So...below please find my log file when I tried to do the install. If this is the wrong log file, can you please tell me where to go to get the right one. Thanks friends! This is the most frustrating thing...
    Environment variables:
         ORACLE_HOME =
         PATH = C:\DOCUME~1\User\LOCALS~1\Temp\OraInstall2006-06-05_12-41-21AM\oui\bin\win32;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\QuickTime\QTSystem\
         CLASSPATH = C:\Program Files\Java\jre1.5.0_06\lib\ext\QTJava.zip
    Username is: User
    Unable to read the list of homes from the inventory.
    The installer version is 2.2.0.12.0
    *** Welcome Page***
    Setting value of FROM_LOCATION to C:\9iDB\Disk1\stage\products.jar
    Setting value of SHOW_COMPONENT_LOCATIONS_PAGE to true
    Setting value of SHOW_CUSTOM_TREE_PAGE to true
    Setting value of SHOW_SUMMARY_PAGE to true
    Setting value of SHOW_INSTALL_PROGRESS_PAGE to true
    Setting value of SHOW_REQUIRED_CONFIG_TOOL_PAGE to true
    Setting value of SHOW_OPTIONAL_CONFIG_TOOL_PAGE to true
    Setting value of SHOW_RELEASE_NOTES to true
    Setting value of SHOW_END_SESSION_PAGE to true
    Setting value of SHOW_SPLASH_SCREEN to true
    Setting value of SHOW_WELCOME_PAGE to true
    Setting value of SHOW_ROOTSH_CONFIRMATION to true
    Setting value of SHOW_EXIT_CONFIRMATION to true
    Setting value of NEXT_SESSION to true
    Setting value of NEXT_SESSION_ON_FAIL to true
    Setting value of SHOW_DEINSTALL_CONFIRMATION to true
    Setting value of SHOW_DEINSTALL_PROGRESS to true
    Setting value of INVENTORY_LOCATION to C:\Program Files\Oracle\Inventory
    Setting value of UNIX_GROUP_NAME to
    Initializing inventory setup WCCE
    Doing operation in inventory setup WCCE
    Setting value of CLUSTER_NODES to
    *** Cluster Node Selection Page***
    ClusterNodes = CLUSTER_NODES =
    Setting value of FROM_LOCATION to C:\9iDB\Disk1\stage\products.jar
    Setting value of ORACLE_HOME to C:\oracle\ora92
    Setting value of ORACLE_HOME_NAME to OraHome92
    *** File Locations Page***
    FromLocation = FROM_LOCATION = C:\9iDB\Disk1\stage\products.jar
    ToLocation = ORACLE_HOME = C:\oracle\ora92
    ToName = ORACLE_HOME_NAME = OraHome92
    Initializing installer access setup
    Setting value of ORACLE_HOME to C:\oracle\ora92
    Setting value of ORACLE_HOME_KEY to Software\ORACLE\HOME0
    Setting value of ORACLE_HOME_FOLDER to Oracle - OraHome92
    Setting value of ORACLE_HOME_SERVICE to OraHome92
    Setting value of ToplevelComp to oracle.server, 9.2.0.1.0, >0.0.0.0.0, [ 912 ][OH:2]
    Setting value of SELECTED_LANGUAGES to [en]
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_apache_ejb
    Setting value of PROD_HOME to C:\oracle\ora92/jpi
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_fonts
    Setting value of PROD_HOME to C:\oracle\ora92/rts
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.server
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.options
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.options.ops
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.options.partitioning
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.cartridges.spatial
    Setting value of PROD_HOME to C:\oracle\ora92/olap
    Setting value of PROD_HOME to C:\oracle\ora92/dmt
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.cartridges.ordcac
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.infrastructure
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.networking
    Setting value of PROD_HOME to C:\oracle\ora92\wf
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.client
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_utilities_util
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_plsql
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_dbv
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.workflow.client
    Setting value of PROD_HOME to C:\oracle\ora92/Omwb
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_javavm_cmp
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.options.ano
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_workflow_mailer
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.p2k.devtools
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.emprod
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_mig
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_oci_top
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.p2k
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.emprod.agent_ext
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.emprod.agent_ext.oapps_agentext
    Setting value of PROD_HOME to C:\oracle\ora92\oem_webstage
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_prod
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_otrace
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.options.intermedia.imserver
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_ldap_rsf_cmp
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.networking.cman
    Setting value of PROD_HOME to C:\oracle\ora92/tg4ifmx
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.cartridges.locator
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_sysman_reporting
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_sysman_webserver
    Setting value of PROD_HOME to C:\oracle\ora92/tg4sybs
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_hs_odbc
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_prod
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.emcltprod
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_hs_olefs
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_xml
    Setting value of PROD_HOME to C:\oracle\ora92\Apache\Apache
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_hs_olesql
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_dbscripts
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_nid
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_hs_common
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.cartridges.context
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.p2k.proc
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.apache.ojsp
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.webdb.modplsql
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_prod
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.networking.names
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92\sysman
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.java.ojsp
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_p2k_xmldevkit
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.emprod.agent_ext.frms_agentext
    Setting value of PROD_HOME to C:\oracle\ora92\sysman
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.apache.xdk
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_options_ano_dce
    Setting value of PROD_HOME to C:\oracle\ora92/Omwb
    Setting value of PROD_HOME to C:\oracle\ora92/Omwb
    Setting value of PROD_HOME to C:\oracle\ora92/Omwb
    Setting value of PROD_HOME to C:\oracle\ora92/Omwb
    Setting value of PROD_HOME to C:\oracle\ora92/Omwb
    Setting value of PROD_HOME to C:\oracle\ora92/Omwb
    Setting value of PROD_HOME to C:\oracle\ora92/Omwb
    Setting value of PROD_HOME to C:\oracle\ora92/Omwb
    Setting value of PROD_HOME to C:\oracle\ora92/Omwb
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_expimp
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.winprod
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.emprod.agent_ext.sqlsrv_agentext
    Setting value of PROD_HOME to C:\oracle\ora92\soap
    Setting value of PROD_HOME to C:\oracle\ora92/oracle.interMedia.imclient
    Setting value of PROD_HOME to C:\oracle\ora92\sysman
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.emprod.agent_ext.emd_agentext
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.emprod.agent_ext.oecm_agentext
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.emprod.agent_ext.ows_agentext
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.emprod.oemagent
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.emprod.oemagent.agentca
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.assistants.dbma
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.cartridges.ordsmv
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.cartridges.ordaudio
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.cartridges.ordimg
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.options.intermedia.imcom
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.cartridges.ordcom
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_prod
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/tg4msql
    Setting value of PROD_HOME to C:\oracle\ora92/BC4J
    Setting value of PROD_HOME to C:\oracle\ora92/oracle.interMedia.imclient
    Setting value of PROD_HOME to C:\oracle\ora92/oracle.interMedia.imclient
    Setting value of PROD_HOME to C:\oracle\ora92/oracle.interMedia.imclient
    Setting value of PROD_HOME to C:\oracle\ora92/oracle.interMedia.imclient
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.options.intermedia.jai
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.rdbms.ovm
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_demo
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.utilities.perfmon
    Setting value of PROD_HOME to C:\oracle\ora92/soap
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_p2k_xmldevkit
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.networking.netmgr.emint
    Setting value of PROD_HOME to C:\oracle\ora92/tg4tera
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/soap
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_hs_oledb
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_sqlj
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_xml_parser_plsql
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_xml_xsql
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_xml_classgen_java
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_xml_transview
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_xml_transx
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.xml.xml_ncomp
    Setting value of PROD_HOME to C:\oracle\ora92\pg4mqseries
    Setting value of PROD_HOME to C:\oracle\ora92/pg4appc
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_xml_parser_cplus
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_xml_classgen_cplus
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_bali_ohw
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_bali_cabo
    Setting value of PROD_HOME to C:\oracle\ora92/sysman/ocm
    Setting value of PROD_HOME to C:\oracle\ora92/demo/schema
    Setting value of PROD_HOME to C:\oracle\ora92\mgw
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_seeddb
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_seeddb
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_seeddb
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_advrep
    Setting value of PROD_HOME to C:\oracle\ora92/tg4drda
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.networking.netsrv
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_options_ano_ssl
    Setting value of PROD_HOME to C:\oracle\ora92/oracel_rdbms_sqlldr
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_oci
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.rdbms.sqlplus
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_prod
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.p2k.ott
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.olap.cv
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_occi
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.p2k.oo4o
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.p2k.oledb
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_networking_snmp
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_workflow_builder
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.p2k.procob
    Setting value of PROD_HOME to C:\oracle\ora92/dbui
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_workflow_common
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.p2k.procob18
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_options_ano_ssl_owm
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.options.ano.sns
    Setting value of PROD_HOME to C:\oracle\ora92in
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.java.javavm.javatools
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/oramts
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_sqlj_sqljtrans
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_xml_xsu
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.mmc.admin
    Setting value of PROD_HOME to C:\oracle\ora92/jle
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.mmc.primary
    Setting value of PROD_HOME to C:\oracle\ora92/oracle.interMedia.imclient
    Setting value of PROD_HOME to C:\oracle\ora92\Apache\Jserv
    Setting value of PROD_HOME to C:\oracle\ora92\Apache\Jsdk
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_rman
    Setting value of PROD_HOME to C:\oracle\ora92\ocs4j
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_aqapi
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_jdbc
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_sqlj_sqljruntime
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.p2k.ifa
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_jdbc_oci12
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.assistants.dbca
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_jdbc_oci14
    Setting value of PROD_HOME to C:\oracle\ora92\Apache\Apache
    Setting value of PROD_HOME to C:\oracle\ora92\Apache\perl
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.networking.netcltprod
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.networking.netclt
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.networking.netmgr
    Setting value of PROD_HOME to C:\oracle\ora92/oem_webstage
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_expimp
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_networking_netca
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_xml_parser_c
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.assistants.acf
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_javavm_visiorb
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_jdbc
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.options.ops.opsca
    Setting value of PROD_HOME to C:\oracle\ora92\jdk
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.emprod.oemagent.base_oemagent
    Setting value of PROD_HOME to C:\oracle\ora92/classes/oracle/sysman/vif
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_options_olap_api
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_olap_wrksht
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_tools_regexp
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_fonts
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_utilities_util_common
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.sysman.prereq
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.rsf
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/sysman/expert
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_sysman_sqlserver
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/sysman/admin
    Setting value of PROD_HOME to C:\oracle\ora92/sysman/expert
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_sysman_em_nls
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_sysman_vmqshared
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_rdbms_rsf
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_dbjava_rsf
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_nlsrtl_rsf
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.p2k.precomp_common
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_net_rsf
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_precomp_rsf
    Setting value of PROD_HOME to C:\oracle\ora92/dcommon
    Setting value of PROD_HOME to C:\oracle\ora92/help
    Setting value of PROD_HOME to C:\oracle\ora92/help
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.xml.parser.java
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.doc.windoc
    Setting value of PROD_HOME to C:\oracle\ora92/jewt
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_oracore_rsf
    Setting value of PROD_HOME to C:\oracle\ora92/kodiak
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_platform_rsf
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.mmc.config
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_plsql_rsf
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_ldap_rsf_cmp
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_sysman_oembase_ela
    Setting value of PROD_HOME to C:\oracle\ora92/ice
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_install_instcommon
    Setting value of PROD_HOME to C:\oracle\ora92/ewt
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_slax_rsf
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_tools_share
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.apache.isqlplus.ise
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_jdbc_oci11
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_jdbc
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_jdbc_thin14
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_ssl_rsf
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_agent_rsf_agent_rsf_cmp
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_clntsh_rsf_clntsh_rsf_cmp
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_jdbc_thin12
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_otrace_rsf
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_rdbms_rsf
    Setting value of PROD_HOME to C:\oracle\ora92/lib
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_jdbc_oci_common
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_jdbc_thin11
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_jdbc_jdbc_common
    Setting value of PROD_HOME to C:\Program Files\Oracle\Inventory\..\oui
    Unable to read C:/Program Files/Oracle/Inventory/ContentsXML/comps.xml. Some inventory information may be lost.
    Calling query areasQueries2.2.0.7.0 getInventoryLocation
    Query returned : C:\Program Files\Oracle\Inventory
    Setting value of PROD_HOME to C:\Program Files\Oracle\Inventory\..\jre\1.3.1
    Setting value of PROD_HOME to C:\Program Files\Oracle\Inventory\..\jre\1.1.8
    Doing operation for installer access setup
    Setting value of SELECTED_LANGUAGES to [en]
    Setting value of ToplevelComp to oracle.server, 9.2.0.1.0, >0.0.0.0.0, [ 912 ][OH:2]
    *** Available Products Page***
    TopLevelComp = ToplevelComp = oracle.server, 9.2.0.1.0, >0.0.0.0.0, [ 912 ][OH:2]
    Setting value of ToplevelComp to oracle.server, 9.2.0.1.0, >0.0.0.0.0, [ 912 ][OH:2]
    Setting value of DEP_MODE to EE
    Setting value of TLDepModes to EE,
    *** Installation Types Page***
    DepMode = DEP_MODE = EE
    TLDepModes = TLDepModes = EE,
    The selected install type is "Enterprise Edition"
    Setting value of DEP_MODE to EE
    Install type for "Oracle9i Database 9.2.0.1.0 " is "Enterprise Edition"
    Install type for "Enterprise Edition Options 9.2.0.1.0 " is "Typical"
    Install type for "Oracle9i Real Application Clusters 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Partitioning 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Spatial 9.2.0.1.0 " is "Typical"
    Install type for "Oracle OLAP 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Data Mining 9.2.0.1.0 " is "Typical"
    Install type for "Oracle COM Automation Feature 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Net Services 9.2.0.1.0 " is "Server.Typical"
    Install type for "Oracle9i 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Database Utilities 9.2.0.1.0 " is "Typical"
    Install type for "PL/SQL 9.2.0.1.0 " is "Typical"
    Install type for "Database Verify Utility 9.2.0.1.0 " is "Typical"
    Install type for "Oracle JVM 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Advanced Security 9.2.0.1.0 " is "Typical"
    Install type for "Oracle9i Development Kit 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Enterprise Manager Products 9.2.0.1.0 " is "Enterprise Edition"
    Install type for "Migration Utility 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Programmer 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Intelligent Agent Extensions 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Applications Extensions 9.2.0.1.0 " is "Typical"
    Install type for "Enterprise Manager Web Site 9.2.0.1.0 " is "Complete"
    Install type for "Oracle9i Syndication Server 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Trace 9.2.0.1.0 " is "Typical"
    Install type for "Oracle interMedia 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Ultra Search Server 9.2.0.1.0 " is "Typical"
         Conflict while setting install type of "Sun JDK 1.3.1.0.1a " to "Typical (Typical)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle Management Server 9.2.0.1.0 " is "Complete"
    Install type for "Oracle interMedia Locator 9.2.0.1.0 " is "Typical"
    Install type for "Reporting Framework 9.2.0.1.0 " is "Complete"
    Install type for "Enterprise Manager Webserver Integration 9.2.0.1.0 " is "Complete"
    Install type for "Generic Connectivity Using ODBC 9.2.0.1.0 " is "Typical"
    Install type for "iSQL*Plus 9.2.0.1.0 " is "Typical"
    Install type for "Generic Connectivity Using OLEDB - FS 9.2.0.1.0 " is "Typical"
    Install type for "XML 9.2.0.1.0 " is "Typical"
         Conflict while setting install type of "XML Parser for Java 9.2.0.1.0 " to "Typical (Typical)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle HTTP Server 9.2.0.1.0 " is "Typical"
    Install type for "Generic Connectivity Using OLEDB - SQL 9.2.0.1.0 " is "Typical"
    Install type for "Database SQL Scripts 9.2.0.1.0 " is "Typical"
    Install type for "New Database ID 9.2.0.1.0 " is "Typical"
    Install type for "Generic Connectivity Common Files 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Text 9.2.0.1.0 " is "Typical"
    Install type for "Apache Configuration for Oracle Java Server Pages 1.1.2.3.0 " is "Typical"
    Install type for "Oracle Mod PL/SQL Gateway 3.0.9.8.3b " is "Typical"
    Install type for "Oracle Dynamic Services Server 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Ultra Search Middle-Tier 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Diagnostics Pack 9.2.0.1.0 " is "Typical"
         Conflict while setting install type of "Enterprise Manager Client 9.2.0.1.0 " to "Maximum (Complete)". Install type already set to "Maximum (Complete)". Seting it to "Custom (Custom)"
    Install type for "Oracle Java Server Pages 1.1.3.1.0 " is "Typical"
    Install type for "Oracle XML Developer's Kit 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Forms Extensions 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Tuning Pack 9.2.0.1.0 " is "Complete"
    Install type for "Apache Configuration for Oracle XML Developer's Kit 9.2.0.1.0 " is "Typical"
    Install type for "Export/Import 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Windows Interfaces 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Management Pack for Oracle Applications 9.2.0.1.0 " is "Complete"
    Install type for "MIcrosoft SQLServer(TM) Extensions 9.2.0.1.0 " is "Typical"
    Install type for "Oracle SOAP for JServ 2.0.0.0.0a " is "Typical"
    Install type for "Oracle interMedia Client Option 9.2.0.1.0 " is "Typical"
    Install type for "Oracle EMD Agent Extensions 9.2.0.1.0 " is "Typical"
    Install type for "Oracle eBusiness Management Extensions 9.2.0.1.0 " is "Typical"
    Install type for "Oracle HTTP Server Extensions 9.2.0.1.0 " is "Typical"
    Install type for "PL/SQL Embedded Gateway 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Intelligent Agent 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Intelligent Agent Config Tool 9.2.0.1.0 " is "Typical"
    Install type for "Database Upgrade Assistant 9.2.0.1.0 " is "Typical"
    Install type for "Oracle interMedia Video 9.2.0.1.0 " is "Typical"
    Install type for "Oracle interMedia Audio 9.2.0.1.0 " is "Typical"
    Install type for "Oracle interMedia Image 9.2.0.1.0 " is "Typical"
    Install type for "Oracle interMedia Common Files 9.2.0.1.0 " is "Typical"
    Install type for "Data Management Services Common Files 9.2.0.1.0 " is "Typical"
    Install type for "Oracle interMedia Annotator 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Change Management Pack 9.2.0.1.0 " is "Complete"
    Install type for "BC4J Runtime for Database 9.0.2.692.1 " is "Typical"
    Install type for "Oracle interMedia Web Client 9.2.0.1.0 " is "Typical"
    Install type for "Oracle interMedia Client Demos 9.2.0.1.0 " is "Typical"
    Install type for "Oracle interMedia Java Media Framework Client 9.2.0.1.0 " is "Typical"
    Install type for "Oracle interMedia Client Compatibility Files 9.2.0.1.0 " is "Typical"
    Install type for "Oracle interMedia Java Advanced Imaging 9.2.0.1.0 " is "Typical"
    Install type for "Database Workspace Manager 9.2.0.1.0 " is "Typical"
    Install type for "Enterprise Manager Client 9.2.0.1.0 " is "Custom"
    Install type for "Enterprise Manager Integrated Applications 9.2.0.1.0 " is "Complete"
    Install type for "Enterprise Manager Console 9.2.0.1.0 " is "Complete"
    Install type for "Oracle Ultra Search Common Files 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Database Demos 9.2.0.1.0 " is "Typical"
    Install type for "Oracle SOAP Server 2.0.0.0.0a " is "Typical"
    Install type for "Enterprise Manager Database Applications 9.2.0.1.0 " is "Custom"
         Conflict while setting install type of "SQL*Plus 9.2.0.1.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle XML Runtime Components 9.2.0.1.0 " is "Typical"
         Conflict while setting install type of "XML Parser for PL/SQL 9.2.0.1.0 " to "Typical (Typical)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "XML Class Generator for Java 9.2.0.1.0 " to "Typical (Typical)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "XML Transviewer Beans 9.2.0.1.0 " to "Typical (Typical)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "XML Transx 9.2.0.1.0 " to "Typical (Typical)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle Net Integration 9.2.0.1.0 " is "Complete"
    Install type for "Oracle Workflow Manager 9.2.0.1.0 " is "Complete"
    Install type for "Oracle SOAP Client 2.0.0.0.0a " is "Typical"
    Install type for "Common Files For Generic Connectivity Using OLEDB 9.2.0.1.0 " is "Typical"
    Install type for "Enterprise Manager Common Files 9.2.0.1.0 " is "Complete"
         Conflict while setting install type of "Secure Socket Layer 9.2.0.1.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "Oracle Java Tools 9.2.0.1.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "Enterprise Manager Base Classes 9.2.0.1.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "Oracle JFC Extended Windowing Toolkit 4.1.10.0.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle SQLJ 9.2.0.1.0 " is "Typical"
    Install type for "XML Parser for PL/SQL 9.2.0.1.0 " is "Custom"
    Install type for "XSQL Servlet 9.2.0.1.0 " is "Typical"
    Install type for "XML Class Generator for Java 9.2.0.1.0 " is "Custom"
    Install type for "XML Transviewer Beans 9.2.0.1.0 " is "Custom"
    Install type for "XML Transx 9.2.0.1.0 " is "Custom"
    Install type for "XML Parser for Oracle JVM 9.2.0.1.0 " is "Typical"
    Install type for "XML Parser for C++ 9.2.0.1.0 " is "Typical"
    Install type for "XML Class Generator for C++ 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Help for the Web 1.0.7.0.0 " is "Complete"
    Install type for "Oracle UIX 2.0.20.0.0 " is "Complete"
         Conflict while setting install type of "Oracle Extended Windowing Toolkit 3.4.13.0.0 " to "Typical (Typical)". Install type already set to "Complete (Complete)". Seting it to "Custom (Custom)"
    Install type for "Change Management Common Files 9.2.0.1.0 " is "Complete"
         Conflict while setting install type of "Oracle Intelligent Agent Base Component Files 9.2.0.1.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle Common Schema Demos 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Message Gateway Common Files 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Starter Database 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Complete OLTP Starter Database 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Complete DSS Starter Database 9.2.0.1.0 " is "Typical"
    Install type for "Advanced Replication 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Net Listener 9.2.0.1.0 " is "Typical"
    Install type for "Secure Socket Layer 9.2.0.1.0 " is "Custom"
    Install type for "SQL*Loader 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Call Interface (OCI) 9.2.0.1.0 " is "Typical"
    Install type for "SQL*Plus 9.2.0.1.0 " is "Custom"
         Conflict while setting install type of "Required Support Files 9.2.0.1.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "Documentaion Required Support Files 9.2.0.1.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Object Type Translator 9.2.0.1.0 " is "Typical"
    Install type for "Oracle OLAP CWM Lite 9.2.0.1.0 " is "Typical"
    Install type for "Oracle OLAP Cube Viewer 9.2.0.1.0 " is "Typical"
         Conflict while setting install type of "Oracle OLAP Worksheet 9.2.0.1.0 " to "Typical (Typical)". Install type already set to "Complete (Complete)". Seting it to "Custom (Custom)"
    Install type for "Oracle C++ Call Interface 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Objects for OLE 9.2.0.4.4 " is "Typical"
    Install type for "Oracle Provider for OLE DB 9.2.0.1.0 " is "Typical"
    Install type for "Oracle SNMP Agent 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Database User Interface 2.2.11.0.0 " is "Typical"
    Install type for "Oracle Wallet Manager 9.2.0.1.0 " is "Custom"
         Conflict while setting install type of "Assistant Common Files 9.2.0.1.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Authentication and Encryption 9.2.0.1.0 " is "Typical"
    Install type for "Oracle ODBC Driver 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Java Tools 9.2.0.1.0 " is "Custom"
         Conflict while setting install type of "Visigenics ORB 3.4.0.0.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "Java Runtime Environment 1.1.8.16.0 " to "Custom (Custom)". Install type already set to "Maximum (Complete)". Seting it to "Custom (Custom)"
    Install type for "Enterprise Manager Paging Server 9.2.0.1.0 " is "Complete"
    Install type for "Oracle Services For Microsoft Transaction Server 9.2.0.1.0 " is "Typical"
    Install type for "Enterprise Login Assistant 9.2.0.1.0 " is "Custom"
    Install type for "SQLJ Translator 9.2.0.1.0 " is "Typical"
    Install type for "Oracle XML SQL Utility 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Administration Assistant for Windows NT 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Java Layout Engine 2.0.1.0.0 " is "Complete"
         Conflict while setting install type of "Bali Share 1.1.17.0.0 " to "Maximum (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle Snap-In Common Files 9.2.0.1.0 " is "Typical"
    Install type for "Oracle interMedia Java Client 9.2.0.1.0 " is "Typical"
    Install type for "Apache JServ 1.1.0.0.0g " is "Typical"
    Install type for "JSDK 2.0.0.0.0d " is "Typical"
    Install type for "Recovery Manager 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Caching Service for Java 2.1.0.0.0a " is "Typical"
    Install type for "Advanced Queueing (AQ) API 9.2.0.1.0 " is "Typical"
    Install type for "Oracle JDBC/OCI Interfaces 9.2.0.1.0 " is "Typical"
    Install type for "SQLJ Runtime 9.2.0.1.0 " is "Typical"
    Install type for "Oracle INTYPE File Assistant 9.2.0.1.0 " is "Typical"
    Install type for "Oracle JDBC/OCI Driver for JDK 1.2 9.2.0.1.0 " is "Typical"
    Install type for "Database Configuration Assistant 9.2.0.1.0 " is "Typical"
    Install type for "Oracle JDBC/OCI Driver for JDK 1.4 9.2.0.1.0 " is "Typical"
    Install type for "Apache Web Server files 1.3.22.0.0a " is "Typical"
    Install type for "Oracle Perl Interpreter 5.00503.0.0.0c " is "Typical"
    Install type for "Oracle Net 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Net Manager 9.2.0.1.0 " is "Typical"
    Install type for "Enterprise Manage Website Translated Files 9.2.0.1.0 " is "Complete"
    Install type for "Character Set Migration Utility 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Net Configuration Assistant 9.2.0.1.0 " is "Typical"
         Conflict while setting install type of "Oracle9i Real Application Clusters Management 9.2.0.1.0 " to "Typical (Typical)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "XML Parser for C 9.2.0.1.0 " is "Typical"
    Install type for "Enterprise Manager Paging and OMS Common Files 9.2.0.1.0 " is "Complete"
    Install type for "Assistant Common Files 9.2.0.1.0 " is "Custom"
         Conflict while setting install type of "Oracle Help For Java 3.2.13.0.0 " to "Custom (Custom)". Install type already set to "Complete (Complete)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "Oracle Code Editor 1.2.1.0.0A " to "Custom (Custom)". Install type already set to "Complete (Complete)". Seting it to "Custom (Custom)"
    Install type for "Visigenics ORB 3.4.0.0.0 " is "Custom"
    Install type for "Oracle Directory Manager 9.2.0.1.0 " is "Complete"
    Install type for "Oracle9i Real Application Clusters Management 9.2.0.1.0 " is "Custom"
    Install type for "Sun JDK 1.3.1.0.1a " is "Custom"
         Conflict while setting install type of "Sun JDK extensions 9.2.0.1.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle Internet Directory Client Common Files 9.2.0.1.0 " is "Complete"
    Install type for "Oracle Intelligent Agent Base Component Files 9.2.0.1.0 " is "Custom"
         Conflict while setting install type of "Oracle Net Required Support Files 9.2.0.1.0 " to "Custom (Custom)". Install type already set to "Complete (Complete)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "Oracle9i Globalization Support 9.2.0.1.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "Oracle Core Required Support Files 9.2.0.1.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "Utilities Common Files 9.2.0.1.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle Developer Server Forms Manager 9.2.0.1.0 " is "Typical"
    Install type for "Oracle OLAP API 9.2.0.1.0 " is "Typical"
    Install type for "Oracle OLAP Worksheet 9.2.0.1.0 " is "Custom"
    Install type for "regexp 2.0.20.0.0 " is "Typical"
    Install type for "Oracle Display Fonts 9.0.2.0.0 " is "Typical"
    Install type for "Enterprise Manager Quick Tours 9.2.0.1.0 " is "Complete"
    Install type for "Utilities Common Files 9.2.0.1.0 " is "Custom"
    Install type for "Enterprise Manager Installation Prerequisite Checks 9.2.0.1.0 " is "Complete"
    Install type for "Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Enterprise Manager Base Classes 9.2.0.1.0 " is "Custom"
    Install type for "Enterprise Manager Events 9.2.0.1.0 " is "Typical"
    Install type for "Capacity Planner 9.2.0.1.0 " is "Complete"
    Install type for "Performance Manager 9.2.0.1.0 " is "Complete"
    Install type for "SQL Analyze 9.2.0.1.0 " is "Complete"
    Install type for "Trace DataViewer 9.2.0.1.0 " is "Complete"
    Install type for "Expert 9.2.0.1.0 " is "Complete"
    Install type for "Index Tuning Wizard 9.2.0.1.0 " is "Complete"
    Install type for "Enterprise Manager Win32 Apps Bridge 9.2.0.1.0 " is "Complete"
    Install type for "SQLServer Monitoring Option 9.2.0.1.0 " is "Complete"
    Install type for "Enterprise Manager Translated Files 9.2.0.1.0 " is "Custom"
    Install type for "Enterprise Manager Win32 Application Common Files 9.2.0.1.0 " is "Complete"
    Install type for "Enterprise Manager Expert Common Files 9.2.0.1.0 " is "Complete"
    Install type for "Enterprise Manager Win32 App Translated Files 9.2.0.1.0 " is "Complete"
    Install type for "Enterprise Manager Shared Libraries 9.2.0.1.0 " is "Complete"
    Install type for "XDK Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "DBJAVA Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Oracle9i Globalization Support 9.2.0.1.0 " is "Custom"
    Install type for "Precompiler Common Files 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Net Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Precompiler Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Documentaion Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Help For Java 3.2.13.0.0 " is "Custom"
    Install type for "Oracle Help For Java 4.1.13.0.0 " is "Custom"
    Install type for "XML Parser for Java 9.2.0.1.0 " is "Custom"
    Install type for "Oracle9i Windows Documentation 9.2.0.1.0 " is "Typical"
    Install type for "Oracle JFC Extended Windowing Toolkit 4.1.10.0.0 " is "Custom"
    Install type for "Oracle Core Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Code Editor 1.2.1.0.0A " is "Custom"
    Install type for "Platform Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Remote Configuration Agent 9.2.0.1.0 " is "Typical"
    Install type for "PL/SQL Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "LDAP Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Enterprise Manager Minimal Integration 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Ice Browser 5.06.8.0.0 " is "Custom"
    Install type for "Installation Common Files 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Extended Windowing Toolkit 3.4.13.0.0 " is "Custom"
    Install type for "Parser Generator Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Bali Share 1.1.17.0.0 " is "Custom"
    Install type for "iSQL*Plus Extension for Windows 9.2.0.1.0 " is "Typical"
    Install type for "Oracle JDBC/OCI Driver for JDK 1.1 9.2.0.1.0 " is "Typical"
    Install type for "Oracle JDBC Development Drivers 9.2.0.1.0 " is "Typical"
    Install type for "Oracle JDBC Thin Driver for JDK 1.4 9.2.0.1.0 " is "Typical"
    Install type for "SSL Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Agent Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Client Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Oracle JDBC Thin Driver for JDK 1.2 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Trace Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "RDBMS Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Sun JDK extensions 9.2.0.1.0 " is "Custom"
    Install type for "JDBC/OCI Common Files 9.2.0.1.0 " is "Typical"
    Install type for "Oracle JDBC Thin Driver for JDK 1.1 9.2.0.1.0 " is "Typical"
    Install type for "JDBC Common Files 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Universal Installer 2.2.0.12.0 " is "Custom"
    Install type for "Java Runtime Environment 1.3.1.1.0a " is "Custom"
    Install type for "Java Runtime Environment 1.1.8.16.0 " is "Custom"
    Calling query areasQueries2.2.0.7.0 getComponentInstallTypeName
    Query returned : EE
    Calling query generalQueries2.2.0.7.0 getOSName
    Query returned : NT_X86
    Calling query generalQueries2.2.0.7.0 getOSVer
    Query returned : 5.1
    Calling query generalQueries2.2.0.7.0 isCurrentPlatformInGroup
    platGroup = WINDOWS
    Query returned : true
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.server
    startVersion = 8.1.0.0.0
    endVersion = 9.2.0.9.0
    acceptCompatible = null
    Query returned : false
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.client
    startVersion = 8.1.0.0.0
    endVersion = 9.2.0.9.0
    acceptCompatible = null
    Query returned : false
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.client
    startVersion = 8.1.0.0.0
    endVersion = 9.2.0.9.0
    acceptCompatible = null
    Query returned : false
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.iappserver.iapptop
    startVersion = 9.0.2.0.0
    endVersion = 9.0.9.0.0
    acceptCompatible = null
    Query returned : false
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.iappserver.infrastructure
    startVersion = 9.0.2.0.0
    endVersion = 9.0.9.0.0
    acceptCompatible = null
    Query returned : false
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.iappserver.devcorner
    startVersion = 9.0.2.0.0
    endVersion = 9.0.9.0.0
    acceptCompatible = null
    Query returned : false
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.networking.netclt
    startVersion = 8.1.3.0.0
    endVersion = 9.0.0.0.0
    acceptCompatible = null
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\nt.rgs
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\win95.rgs
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\win98.rgs
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\windows.rgs
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\netware.rgs
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\os2.rgs
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\dos.rgs
    Query returned : false
    Calling query WinSetAclQuery1.0.2 setPermissions
    dirName = C:\oracle\ora92
    isAdmin = false
    Query returned : 0
    Calling query PrerequisiteQueries1.1.3 getWin32VideoColorBits
    Query returned : 32
    Calling query generalQueries2.2.0.7.0 getTotalPhysicalMemory
    Query returned : 1046620
    Calling query w32RegQueries2.2.0.7.0 hasAdminPrivileges
    Query returned : true
    Calling query PrerequisiteQueries1.1.3 getWin32OSLevel
    Query returned : Service Pack 2
    Setting value of PRE_REQUISITE to true
    Calling query globalVarQueries2.1.0.4.0 setGlobalVariable
    variable = oracle.rdbms.installing
    value = true
    Query returned : true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to false
    # The pre-requisite for the component Oracle9i Real Application Clusters 9.2.0.1.0 has failed.
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to false
    # The pre-requisite for the component Oracle9i Real Application Clusters Management 9.2.0.1.0 has failed.
    Calling query generalQueries2.2.0.7.0 isCurrentPlatformInGroup
    platGroup = UNIX
    Query returned : false
    Calling query rgsQueries2.2.0.7.0 isProductInstalled
    Location = C:\oracle\ora92
    InternalName = w32rsf80
    MaxVersion = 8.0.7.0.0
    MinVersion = 8.0.3.0.0
    Query returned : false
    Calling query rgsQueries2.2.0.7.0 isProductInstalled
    Location = C:\oracle\ora92
    InternalName = w32rsf73
    MaxVersion = 7.3.5.0.0
    MinVersion = 7.3.1.0.0
    Query returned : false
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.sysman.netclt
    startVersion = 8.0.3.0.0
    endVersion = 8.0.6.0.0
    acceptCompatible = false
    Query returned : false
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Calling query generalQueries2.2.0.7.0 getOSName
    Query returned : NT_X86
    Calling query w32RegQueries2.2.0.7.0 RegKeyExists
    Key = HKEY_LOCAL_MACHINE
    SubKey = Software\Gradient\DCE
    Query returned : false
    Setting value of PRE_REQUISITE to false
    # The pre-requisite for the component DCE Integration 9.2.0.1.0 has failed.
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Calling query generalQueries2.2.0.7.0 isCurrentPlatformInGroup
    platGroup = Windows
    Query returned : true
    Calling query rgsQueries2.2.0.7.0 isProductInstalled
    Location = C:\oracle\ora92
    InternalName = w32oem10
    MaxVersion = null
    MinVersion = null
    Query returned : false
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Calling query areasQueries2.2.0.7.0 getComponentInstallTypeName
    Query returned : Complete
    Calling query generalQueries2.2.0.7.0 getOSName
    Query returned : NT_X86
    Calling query WindowsGeneralQueries2.2.0.7.0 getWindowsSystemDirectory
    Query returned : C:\WINDOWS\system32
    Calling query generalQueries2.2.0.7.0 isCurrentPlatformInGroup
    platGroup = WINDOWS
    Query returned : true
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.networking.netclt
    startVersion = 8.1.3.0.0
    endVersion = 8.1.4.0.0
    acceptCompatible = null
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\nt.rgs
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\win95.rgs
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\win98.rgs
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\windows.rgs
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\netware.rgs
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\os2.rgs
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\dos.rgs
    Query returned : false
    Calling query generalQueries2.2.0.7.0 getTotalPhysicalMemory
    Query returned : 1046620
    Setting value of PRE_REQUISITE to true
    Calling query rgsQueries2.2.0.7.0 getAllOracleHomes
    Query returned : C:\oracle\ora92,
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.sysman.w32common
    startVersion = 9.2.0.0.0
    endVersion = 9.2.99.99.99
    acceptCompatible = null
    Query returned : false
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Calling query rgsQueries2.2.0.7.0 getAllOracleHomes
    Query returned : C:\oracle\ora92,
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.sysman.w32common
    startVersion = 9.2.0.0.0
    endVersion = 9.2.99.99.99
    acceptCompatible = null
    Query returned : false
    Setting value of PRE_REQUISITE to true
    Calling query rgsQueries2.2.0.7.0 getAllOracleHomes
    Query returned : C:\oracle\ora92,
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.sysman.w32common
    startVersion = 9.2.0.0.0
    endVersion = 9.2.99.99.99
    acceptCompatible = null
    Query returned : false
    Setting value of PRE_REQUISITE to true
    Calling query rgsQueries2.2.0.7.0 getAllOracleHomes
    Query returned : C:\oracle\ora92,
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.sysman.w32common
    startVersion = 9.2.0.0.0
    endVersion = 9.2.99.99.99
    acceptCompatible = null
    Query returned : false
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Calling query areasQueries2.2.0.7.0 getComponentInstallTypeName
    Query returned : Custom
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Calling query SIDQueries1.2.4 getAllOracleHomes

  • Monitoring script

    I created a monitoring script which would run from crontab....Would anyone tell me how I would export Oracle SID in crontab script instead of hard coded it. Thanks.

    I do some simple checks for correct number of arguments using "if [[ $# -lt 1 ]]; then..."
    This is very simple and doesn't confirm that the arguments are valid.
    Example:
    if [[ $# -lt 1 ]]; then
      print "\n ERROR:  You did not specify an Oracle SID."
      print "\n Please enter which Oracle SID to import into. \n"
      exit 1
    else
      echo "\n  ORACLE_SID = $1 \n"
      echo "Do you wish to continue? \n "
        read REPLY
         case $REPLY in
            y|Y) echo "\n test good \n";;
            n|N) echo "\n exiting... \n"; return 1;;
            echo "Invalid response (Bozo).  Exiting..."
            echo ""
            return 2;
         esac
    fiBut my point was to show a quick and easy solution to the OP for his purposes.
    Using "echo $1 |. oraenv" passes the variable to oraenv and sets everything he needs for his purposes.
    From the sounds of the OP's question, it didn't seem to have the skills to develop more complex scripts.
    Personally, I like to use a special file that I keep updated on all servers.
    I call the file 'localsids' and place it in the /var/opt/oracle directory.
    I have a similar file called 'allsids', which contains a list of all sids on all servers for when I want to check all databases (e.g., such as for users having DBA role, or something like that).
    Then, I check for validity (and can add and remove SIDs from the file at will, (depending on purposes such as blackouts).
    I like using a loop for this purpose (SIDFILE='var/opt/oracle/localsids' cat $SIDFILE |while read SID... do....)
    Example:
    # ==================================================
    # check input given against valid sids on this machine
    # ==================================================
    export SIDFILE='/var/opt/oracle/localsids'
    SID=`grep $1 $SIDFILE`
    if [ "$SID" = "$1" ]; then
    print "\n \"$SID\" verified... \n"
    else
    print "\n ERROR... \"$1\" is not a valid SID for this machine. \n"
    exit 1
    fiI have a couple other variations as well.
    I think it would be nice if OTN had a more appropriate forum for people like us who like scripting and/or what to share unix skills.

  • Data Guard Gap Monitoring script

    Hello,
    Can anyone please provide me data guard gap monitoring script for databases(primary,standby) on RAC.
    Oracle RDBMS 11.2.0.2(4-node RAC) on RHEL 5.6.
    Thanks
    Edited by: 951368 on Dec 26, 2012 9:21 AM

    951368 wrote:
    Hello,
    Can anyone please provide me data guard gap monitoring script for databases(primary,standby) on RAC.
    Oracle RDBMS 11.2.0.2(4-node RAC) on RHEL 5.6.
    Thanks
    Edited by: 951368 on Dec 26, 2012 9:21 AMUse the script of MSeberg, Modify v$instance as gv$instance for RAC

  • Database Monitoring

    Hi guys,
    I am pretty new into Oracle Database Administration. I am currently tasked with database monitoring and I would like to ask you guys what parameters or aspects of database we have to constantly monitor? I know for sure we have to monitor the harddisk space, tablespace free space and latch. However, apart from those parameters, anything else I have to pay attention to? And what are the threshold for each parameter? For example, what is the good percentage of freespace to determine when to expand a tablespace?
    I would really appreciate your view as I am completely clueless. I have checked some books on this matter but most of them jump straight to the finetuning without revealing any detail on the monitoring parameter, threshold, etc.
    My situation is worse since I am the only DBA and the only one competent in it (*sigh*).
    Thank you.
    Richard Siburian

    just study following and try to grab
    #Current working directory
    cwd=`pwd`
    #DBA to whome mail will be sent
    DBALIST="[email protected]";
    while true
    do
    clear
    echo "**************************************************************************"
    echo "* MENU *"
    echo "**************************************************************************"
    echo "* ( 1) Check status of Listener !! *"
    echo "* ( 2) Check status of all Database whose entry in oratab *"
    echo "* ( 3) Display database uptime (days and hours) *"
    echo "* ( 4) Check the ORA- Error in alert log and mail it to dba *"
    echo "* ( 5) Displays information on all database sessions. *"
    echo "* ( *) Press any other key to Go back to main menu *"
    echo "**************************************************************************"
    echo "Enter Your Choice from Menu between 1 and 6 :-"
    read choice
    case $choice in
    1)
    echo "checking for the listiner"
    listiner_up=`ps -ef | grep LISTENER | grep -v grep |awk '{print$9}'|wc -l`     
    if [ $listiner_up -ge 2 ]
    then
         echo "listiner is up, Have a Great time......"
    while true
    do
    echo " Do you want to Stop the Listiner? (y or n) :"
    read CONFIRM1
    case $CONFIRM1 in
    y|Y|YES|yes|Yes)
    lsnrctl stop;
    callme;
    break ;;
    n|N|no|NO|No)
    echo Aborting - you entered $CONFIRM
    callme;
    break
    *) echo Please enter only y or n
    esac
    done
         else
         echo "Listiner is Down, ."
    while true
    do
    echo " Do you want to Start the Listiner? (y or n) :"
    read CONFIRM1
    case $CONFIRM1 in
    y|Y|YES|yes|Yes)
    lsnrctl start;
    callme;
    break ;;
    n|N|no|NO|No)
    echo Aborting - you entered $CONFIRM
    callme;
    break
    *) echo Please enter only y or n
    esac
    done
    fi
    2)
    #Script By DCP
    #Check status of all Database whose entry in oratab
    clear;
    if [ -f /etc/oratab ]
    then
    ORATAB=/etc/oratab
    elif [ -f /var/opt/oracle/oratab ]
    then
    ORATAB=/var/opt/oracle/oratab
    else
    echo "Unable to locate "
    fi
    echo "`date` "
    echo "Oracle Database(s) Status `hostname` "
    db=`egrep -i ":Y|:N" $ORATAB | cut -d":" -f1 | grep -v "\#" | grep -v "\*"`
    for i in $db ; do
    database_up=`ps -ef | grep ora_smon_$i|grep -v grep |awk '{print$8}'|wc -l`
    if [ $database_up -eq 1 ]
    then
         echo "Oracle Instance - $i : UP"
    else
    echo "Oracle Instance - $i : Down"
    fi
    done
    while true
    do
    echo "Do you want to Continue or not Please confirm ? (y or n) :"
    read CONFIRM
    case $CONFIRM in
    y|Y|YES|yes|Yes) break ;;
    n|N|no|NO|No)
    echo Aborting - you entered $CONFIRM
    exit
    *) echo Please enter only y or n
    esac
    done
    echo You entered $CONFIRM. Continuing ...;;
    3)
    #Script By DCP
    #Display database uptime (days and hours)
    clear;
    echo "---------------------------------------------------"
    echo "`date` "
    echo "Oracle Database(s) Status `hostname` "
    echo "---------------------------------------------------"
    Live=`ps -ef | grep ora_smon | grep -v grep |awk '{print$8}'|cut -d "_" -f2-3 >$cwd/live.txt`
    db=`egrep -i "smon" $cwd/live.txt |cut -d "_" -f2`
    for i in $db ; do
    database_up=`ps -ef | grep ora_smon_$i|grep -v grep |awk '{print$8}'|wc -l`
    if [ $database_up -eq 1 ]
    then
         echo "Oracle Instance - $i : UP"
    fi
    echo "---------------------------------------------------"
    done
    echo "Enter the Database name:- "
    read ORACLE_SID
    db=`ps -ef | grep ora_smon_$ORACLE_SID|grep -v grep |awk '{print$8}'|cut -d "_" -f3`
    if [ "$db" = "$ORACLE_SID" ]
    then
    export ORACLE_SID
    sqlplus -s "/ as sysdba" <<EOF
    set feed off
    set linesize 280
    set pagesize 200
    select SYSDATE-logon_time "Days", (SYSDATE-logon_time)*24 "Hours"
    from sys.v_\$session
    where program like '%PMON%';
    exit;
    EOF
    else
    echo "Enter the Valid Name or DB is shudown"
    fi
    while true
    do
    echo "Do you want to Continue or not Please confirm ? (y or n) :"
    read CONFIRM
    case $CONFIRM in
    y|Y|YES|yes|Yes) break ;;
    n|N|no|NO|No)
    echo Aborting - you entered $CONFIRM
    clear
    exit
    echo Please enter only y or n
    esac
    done
    echo You entered $CONFIRM. Continuing ...
    4)
    #Script By DCP
    # Check the ORA- Error in alert log and mail it to dba
    clear;
    echo "---------------------------------------------------"
    echo "`date` "
    echo "Oracle Database(s) Status `hostname` "
    echo "---------------------------------------------------"
    Live=`ps -ef | grep ora_smon | grep -v grep |awk '{print$8}'|cut -d "_" -f2-3 >$cwd/live.txt`
    db=`egrep -i "smon" $cwd/live.txt |cut -d "_" -f2`
    for i in $db ; do
    database_up=`ps -ef | grep ora_smon_$i|grep -v grep |awk '{print$8}'|wc -l`
    if [ $database_up -eq 1 ]
    then
         echo "Oracle Instance - $i : UP"
    fi
    echo "---------------------------------------------------"
    done
    echo "---------------------------------------------------------------------------"
    echo Alert \!!! This part is hardcoded, PLZ Modify it , just change Value of DLOC
    echo "---------------------------------------------------------------------------"
    sleep 2;
    DLOC=/u01/oracle/product/10.2.0/test/test/bdump
    while true
    do
    echo "Enter the database name: "
    read SID
    echo "Checking for alert log of $SID database"
    case $SID in
    $SID)
    cd $DLOC
    if [ -f alert_${SID}.log ]
    then
    echo Moving....................
         mv /$DLOC/alert_${SID}.log /$DLOC/alert_work.log
         echo Touching................
    touch /$DLOC/alert_${SID}.log
    cat /$DLOC/alert_work.log >> /$DLOC/alert_${SID}.hist
    echo greping.....................
    grep ORA- /$DLOC/alert_work.log > /$DLOC/alert.err
    if [ `cat /$DLOC/alert.err|wc -l` -gt 0 ]
    then
    mail -s "${SID} ORACLE ALERT ERRORS" $DBALIST < /$DLOC/alert.err
         echo Sending Mail.................
         else
         echo "No Error from last ......Nothing to Mail to DBA...."
    fi
    rm -f /$DLOC/alert.err
    rm -f /$DLOC/alert_work.log
    while true
    do
    echo "Do you want to Continue or not Please confirm ? (y or n) :"
    read CONFIRM
    case $CONFIRM in
    y|Y|YES|yes|Yes) break ;;
    n|N|no|NO|No)
    echo Aborting - you entered $CONFIRM
    clear
    exit
    echo Please enter only y or n
    esac
    done
    echo You entered $CONFIRM. Continuing ...
    else
    echo " "
    echo "No alert Log file found......Nothing to Mail to DBA...."
    echo " "     
    callme;
    fi
    break ;;
    n|N|no|NO|No)
    echo Aborting - you entered $CONFIRM
    exit
    *) echo Please enter only y or n
    esac
    done
    5)
    #Script By DCP
    #Displays information on all database sessions
    clear;
    echo "---------------------------------------------------"
    echo "`date` "
    echo "Oracle Database(s) Status `hostname` "
    echo "---------------------------------------------------"
    Live=`ps -ef | grep ora_smon | grep -v grep |awk '{print$8}'|cut -d "_" -f2-3 >$cwd/live.txt`
    db=`egrep -i "smon" $cwd/live.txt |cut -d "_" -f2`
    for i in $db ; do
    database_up=`ps -ef | grep ora_smon_$i|grep -v grep |awk '{print$8}'|wc -l`
    if [ $database_up -eq 1 ]
    then
         echo "Oracle Instance - $i : UP"
    fi
    echo "---------------------------------------------------"
    done
    echo "Enter the Database name:- "
    read ORACLE_SID
    db=`ps -ef | grep ora_smon_$ORACLE_SID|grep -v grep |awk '{print$8}'|cut -d "_" -f3`
    if [ "$db" = "$ORACLE_SID" ]
    then
    export ORACLE_SID
    sqlplus -s "/ as sysdba" <<EOF
    spool $cwd/curses.log
    #set feed off
    #set heading off
    set line 180
    SET LINESIZE 500
    SET PAGESIZE 1000
    SET VERIFY OFF
    COLUMN username FORMAT A15
    COLUMN machine FORMAT A25
    COLUMN logon_time FORMAT A20
    SELECT NVL(a.username, '(oracle)') AS username,
    a.osuser,
    c.value ,
    a.status,
    a.module,
    a.machine,
    a.program,
    TO_CHAR(a.logon_Time,'DD-MON-YYYY HH24:MI:SS') AS logon_time
    FROM v\$session a,
    v\$sesstat c,
    v\$statname d
    WHERE a.sid = c.sid
    AND c.statistic#
    = d.statistic#
    AND d.name = DECODE(UPPER('value'), 'READS', 'session logical reads',
    'EXECS', 'execute count',
    'CPU', 'CPU used by this session',
    'CPU used by this session')
    AND USERNAME IS NOT NULL
    ORDER BY c.value DESC;
    SET PAGESIZE 14
    spool off;
    exit;
    EOF
    if [ `cat $cwd/curses.log|wc -l` -gt 0 ]
    then
    cat $cwd/curses.log
    else
    echo "Oppppppssss....No Active user session"
    fi
    else
    echo "Enter the Valid Name or DB is shudown"
    fi
    while true
    do
    echo "Do you want to Continue or not Please confirm ? (y or n) :"
    read CONFIRM
    case $CONFIRM in
    y|Y|YES|yes|Yes) break ;;
    n|N|no|NO|No)
    echo Aborting - you entered $CONFIRM
    clear
    exit
    echo Please enter only y or n
    esac
    done
    echo You entered $CONFIRM. Continuing ...
    #hi
    clear
    exit
    esac
    done

Maybe you are looking for

  • USB ports does not work

    Hi I have problems with not working USB ports. It used to work. I downloaded actual drivers at msi.com for my gaming notebook GX 60 Destroyer and now my USB ports does not work. What should I do?

  • How to upload bank stament

    HI ALL Experts please give me some way how to upload bank stament if any way than give some solu.. Regards kalpen

  • I Phone 4 No Service

    I have had my I Phone 4 for one week and have not been able to make or receive phone calls consistently.  After reading the 20 page thread on the same problems, I think I'll exchange it for a Droid.  I like Verizon and I love Apple but a phone that d

  • Font rendering after resuming from hibernation

    my font looks like this after hibernating and not just the font my desktop: xfce my font settings: anti-aliasing enabled                          hinting - slight                          sub bixel color - RGB                          DPI - 96 $xdpyi

  • Speed issue: renaming exposed VO in AM data model page

    Hi JDev team I'm having some speed issues with a refactoring option in JDev 11gTP4. If I open the AM editor, navigate to the data model page, select an exposed VO, then rename it via the View Instance edit button dialog, it takes 1min 25seconds to co