Oracle DB 10g express edition & APEX for application development for free?

Can we use Oracle DB 10g express edition & APEX for application development for free? Are there any license fees?
Thanks

Hi,
both Oracle DB 10g express edition & APEX for application development is free.
Regards,
Kartik Patel
http://patelkartik.blogspot.com/
http://apex.oracle.com/pls/apex/f?p=9904351712:1

Similar Messages

  • Migration Oracle 9iR2 - Oracle Database 10g Express Edition, please, help

    Good day!
    Now I study examples from tutorial book "Oracle 9iR2 Data Warehousing"
    (translated to Russian) written by Lilian Hobbs, Susan Hilson, Shilpa Lawande. However my Oracle is "Oracle Database 10g Express Edition" and ( as I thought ) for this reason I can't perform these examples.
    Please, help me, if it no hard.
    First example founded on using "Oracle Database Configuration Assistant"
    and "Oracle Enterprise Manager Console". However, I not found them at
    "Oracle Database 10g Express Edition".
    Now I use only "Oracle Application Express" ( and SQL ). Please, tell me,
    if "Application Express" has enough functionality with comparision to
    "Oracle Database Configuration Assistant" and "Oracle Enterprise Manager Console"
    and how I need to do ? (It must, because 10 > 9)
    Second example founded on using SQL. First 80% SQL-commanfs of this executed succesfully. But command "CREATE TABLE easydw.purchases" has error message
    "PARTITIONing is not available." Really, in "2 Day Developer Guide"
    (SQL Reserved Words ) PARTITION is not exist.
    Can I CREATE TABLE easydw.purchases by "Oracle Database 10g Express Edition"
    (with PARTITIONing by other means of SQL )?
    There is full text of this SQL-Command:
    CREATE TABLE easydw.purchases
    (product_id varchar2(8)
    constraint not_null_product_id NOT NULL
    constraint fk_product_id
    REFERENCES product(product_id),
    time_key date
    constraint not_null_time NOT NULL
    constraint fk_time
    REFERENCES time(time_key),
    customer_id varchar2(10)
    constraint not_null_customer_id NOT NULL
    constraint fk_customer_id
    REFERENCES customer(customer_id),
    purchase_date date,
    purchase_time number(4,0),
    purchase_price number(6,2),
    shipping_charge number (5,2),
    today_special_offer varchar2(1)
    constraint special_offer
    CHECK (today_special_offer IN ('Y','N')) )
    PARTITION by RANGE (time_key )
    partition purchases_jan2002
    values less than (TO_DATE('01-02-2002', 'DD-MM-YYYY'))
    pctfree 0 pctused 99
    storage (initial 64k next 16k pctincrease 0)
    tablespace purchases_jan2002,
    partition purchases_feb2002
    values less than (TO_DATE('01-03-2002', 'DD-MM-YYYY'))
    pctfree 0 pctused 99
    storage (initial 64k next 16k pctincrease 0)
    tablespace purchases_feb2002,
    partition purchases_mar2002
    values less than (TO_DATE('01-04-2002', 'DD-MM-YYYY'))
    pctfree 0 pctused 99
    storage (initial 64k next 16k pctincrease 0)
    tablespace purchasee_mar2002 );
    Naturally, I also shall continue try find solution.
    Winni.

    Winni,
    Partitioning is only available with Oracle Enterprise Edition.
    Here is a list of features by edition:
    http://www.oracle.com/database/product_editions.html
    DBCA is not needed with Express edition because you can only have one XE database per server, and all options are pre-configured.
    Enterprise Manager Console is not included with XE - only with the other editions.
    You can get most of the functionality through SQL, Application Express and SQL Developer.

  • Problem upgrading Apex 2.1 to 3.2.1 in Oracle Database 10g Express Edition

    G'Day Apex gurus,
    I installed Oracle Database 10g Express edition in my Windows XP PC which comes with Apex 2.1 with no problems. Then I wanted to upgrade Apex 2.1 to 3.2.1 (Currently Apex download in OTN) following the document below:
    http://www.oracle.com/technology/products/database/application_express/html/3.1_and_xe.html
    I went to the steps:
    @apexins SYSAUX SYSAUX TEMP /i/
    Then to change the password for the admin account run apxchpwd.sql and when prompted enter a password for the ADMIN account.
    @apxchpwd
    with not problems
    Then I connected to SQL*Plus as SYS by:
    sqlplus /nolog
    CONNECT SYS as SYSDBA
    Enter password: xxxxxxxxxxx
    but when I tried to run:
    @APEX_HOME/apex/apxldimg.sql APEX_HOME
    where APEX_HOME is Apex3.2.1 in my case
    SQL> @Apex3.2.1/apex/apxldimg.sql Apex3.2.1 (I get the messages below)
    PL/SQL procedure successfully completed.
    old   1: create directory APEX_IMAGES as '&1/apex/images'
    new   1: create directory APEX_IMAGES as 'Apex3.2.1/apex/images'
    Directory created.
    declare
    *+
    ERROR at line 1:
    ORA-22288: file or LOB operation FILEOPEN failed
    The system cannot find the path specified.
    ORA-06512: at "SYS.DBMS_LOB", line 523
    ORA-06512: at "SYS.XMLTYPE", line 287
    ORA-06512: at line 15
    PL/SQL procedure successfully completed.
    PL/SQL procedure successfully completed.
    Commit complete.
    timing for: Load Images
    Elapsed: 00:00:00.17
    Directory dropped.
    Can anyone help me in how to trouble shout this?
    I tried to continue by following the steps document
    @APEX_HOME/apex/apxxepwd.sql password
    (where password is the password of the Application Express internal ADMIN account)
    but when I tried to login in:
    http://localhost:8080/apex/f?p=4550:1
    when I type the credentials
    system
    system
    systempassword
    nothing happens
    or even If I try:
    http://localhost:8080/apex/f?p=4550:10
    admin
    adminpassword
    nothing happens here too.
    I appreciate any help
    Kind regards
    Carlos

    My database version is 10.2.0.1.0 Oracle express.
    Operating system is Windows Vista.
    I started installing using the following commands.
    @ C:\temp\apex\apexins.sql
    it prompts me for the values of sysaux sysaux temp and c:\temp\apex\images\
    If I supply the value for images the sqlplus window closes after scrolling a lot of info.
    Enroute it also prompts me for a value for 9:
    I don't know what the input shall be.
    Then it again stops at enter value for version:
    I used 3.2.1.0
    The window scrols a while and closes.
    later I changed the password and ran the command.
    @c:\temp\apex\apxldimg.sql c:\temp
    but no success with installation.
    the output is as following.
    SQL*Plus: Release 10.2.0.1.0 - Production on Fri Nov 27 18:13:43 2009
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    SQL> connect system/sairam as sysdba;
    Connected.
    SQL> @ c:\temp\apex\apxchpwd
    Enter a value below for the password for the Application Express ADMIN user.
    Enter a password for the ADMIN user []
    Session altered.
    ...changing password for ADMIN
    wwv_flow_security.g_security_group_id := 10;
    ERROR at line 3:
    ORA-06550: line 3, column 5:
    PLS-00201: identifier 'WWV_FLOW_SECURITY.G_SECURITY_GROUP_ID' must be declared
    ORA-06550: line 3, column 5:
    PL/SQL: Statement ignored
    ORA-06550: line 4, column 5:
    PLS-00201: identifier 'WWV_FLOW_SECURITY.G_USER' must be declared
    ORA-06550: line 4, column 5:
    PL/SQL: Statement ignored
    ORA-06550: line 5, column 5:
    PLS-00201: identifier 'WWV_FLOW_SECURITY.G_IMPORT_IN_PROGRESS' must be declared
    ORA-06550: line 5, column 5:
    PL/SQL: Statement ignored
    ORA-06550: line 8, column 23:
    PL/SQL: ORA-00942: table or view does not exist
    ORA-06550: line 7, column 15:
    PL/SQL: SQL Statement ignored
    ORA-06550: line 13, column 32:
    PLS-00364: loop index variable 'C1' use is invalid
    ORA-06550: line 12, column 9:
    PL/SQL: Statement ignored
    ORA-06550: line 19, column 5:
    PLS-00201: identifier 'WWV_FLOW_SECURITY.G_IMPORT_IN_PROGRESS' must be declared
    ORA-06550: line 19, column 5:
    PL/SQL: Statement ignored
    Commit complete.
    SQL> @c:\temp\apex\apxldimg.sql c:\temp
    PL/SQL procedure successfully completed.
    Directory created.
    if wwv_flow_utilities.db_version_is_at_least('11') then
    ERROR at line 32:
    ORA-06550: line 32, column 25:
    PLS-00302: component 'DB_VERSION_IS_AT_LEAST' must be declared
    ORA-06550: line 32, column 3:
    PL/SQL: Statement ignored
    PL/SQL procedure successfully completed.
    if wwv_flow_utilities.db_version_is_at_least('11') then --11g only
    ERROR at line 16:
    ORA-06550: line 16, column 25:
    PLS-00302: component 'DB_VERSION_IS_AT_LEAST' must be declared
    ORA-06550: line 16, column 3:
    PL/SQL: Statement ignored
    Commit complete.
    timing for: Load Images
    Elapsed: 00:00:00.32
    Directory dropped.
    SQL>
    Does this require XE 11 or anything else.
    This will happen even if I supply as following(closing of sqlplus in the begining).
    @ C:\temp\apex\apexins.sql sysaux sysaux temp c:\temp\apex\images\
    Any help.

  • Oracle Database 10g Express Edition for Microsoft Windows-port 8080 proble

    I have installed Oracle Database 10g Express Edition for Microsoft Windows, it listen to port 8080, where can I change this port ?
    Thanks

    Inside the database. Search the XE forum for how to do it, it's been done there many times :)
    ~Jer

  • Oracle Database 10g Express Edition for Linux x86

    Hi all,
    I try to download Oracle Database 10g Express Edition (Universal) at
    http://www.oracle.com/technology/software/products/database/xe/htdocs/102xelinsoft.html
    but I get an error page. So how can I download rpm files?
    Thanks a lot.
    Kind Regards

    Ok, in fact it's very slow..
    Thanks a lot!
    I'm still not able to download.. I'will try until I get it.
    Regards,
    Lavinia

  • Oracle Database 10g Express Edition (Oracle Database XE)/ BI Publisher

    Hi,
    I have installed Oracle Database 10g Express Edition (Oracle Database XE) on my windows machine and would like to work with BI publisher for reporting in APEX applications.
    Question: Can I install and work with BI publisher on ORACLE DATABASE XE?
    If not any other options available?
    Appreciate any help.
    Thanks,
    Lakshmi

    hi,
    yes you can install.. try
    Oracle Discoverer 10g (Oracle BI Suite Standard Edition)
    regards,
    Deepak

  • Can't access Home Page - Oracle Database 10g Express Edition...

    Hi,
    I have been running the Oracle Database 10g Express Edition on my Windows XP machine for years from this location:
    C:\Applications\OracleDatabaseExpress\app\oracle\product\10.2.0\server\Database_homepage.url
    In Properties of the Database_homepage.url file, the URL is:
    http://127.0.0.1:8080/apex
    However, when I double-click on the Database_homepage.url file, I get the message "The Page cannot be displayed" in IE. I do run the "net start OracleXETNSListener" utility first.
    I only ran it last week. After that, I did run a couple of virus checks that deleted a couple of trojan viruses.
    What could have gone wrong suddenly? Any help would be greatly appreciated. Thanks a lot!
    Edited by: markk2 on Mar 1, 2011 9:18 PM

    Hi Mark;
    Nice to hear issue solved ;) Please dont forget to change thread status to answered if it possible when u belive your thread has been answered, it pretend to lose time of other forums user while they are searching open question which is not answered,thanks for understanding
    Regard
    Helios

  • Can't succesfully install Oracle Database 10g Express Edition on Ubuntu

    Hi,
    I've been trying to install Oracle Database 10g xe on Ubuntu 10.04 and when I execute the .deb package (oracle-xe-universal_10.2.0.1-1.0_i386.deb) I get a quick installation that doesn't ask me for any configuration settings. When the installation is finished I don't get any menu in my Applications menu named "Oracle Database 10g Express Edition" as specified in Getting Started Guide (I only get some items grouped into an category called "Other" (Backup Database, Get Started, Get Started With Oracle Database 10g Express Edition, Go To Online Forum, Read Documentation, Read Online Help, Register For Online Forum, Restore Database, Run SQL Command Line, Start Database and Stop Database). As a consequence I can't access the Oracle Database Home Page.
    In addition when I click on Start Database I get the following message: "Operation failed. josep is not member of 'dba' group".
    I've tried to re-download the packages and to configure it by editing /etc/init.d/oracle-xe but this doesn't solve my problem.
    can you give me some help?
    Thabk you in advance!

    Markus Waldorf wrote:
    Did you run the post-installation?
    $ sudo /etc/init.d/oracle-xe configureYes I've done it but it doesn't seem to work...

  • Oracle Database 10g Express Edition Bugs

    Product:Oracle Database 10g Express Edition
    Title:Tab Order Sequence on Login window
    Description: Tab Order sequence in Login window not proper, it should be proper
    Reproduce Steps:
    - Click on Run Application icon
    - Login Window opened
    - Press the Tab Button

    hi,
    Please, post this on the Oracle DB express FORUM
    when you install it it will create a menu to directly access to it.
    If you are not able to find it, then you can use the link below:
    Oracle Database Express Edition (XE)
    You have to register to see the forum.
    support for 10g express is provided in the mentioned forum.

  • UTF support in XML DB at Oracle Database 10g Express Edition Beta 2

    hello everybidy! ;)
    I use Oracle Database 10g Express Edition Beta 2 Release for Microsoft Windows (dated 16-Nov-05) and place into XML DB XSLT-file (UTF8-encoded and contained some Cyrillic chars) and 10g XP can`t apply such transformation but when i replace cyrillic chars with latin chars - everything work just fine. Is it known bug? Can it be fixed by some reconfiguration or moving to Linux version of 10g XP? When will new release?
    truly yours,
    Slav
    p.s. here some oracle forum testing ХАРЕ=XAPE, PAMA=РАМА :)

    Hello, Bhagat.
    I don't understand why you would install HTMLDB with apexins.sql (it's a procedure to install HTMLDB for 9i and 10G EE/SE not XE)
    because HTMLDB (APEX) is already install with Oracle Express Edition. Not need
    to install it with apexins.sql
    Mike

  • Consolidation of Oracle Database 10g Express Edition "Bugs"

    I'll take a stab at cleaning this up. This is a collection of postings, reported as bugs, but not really bugs or difficult to understand/reproduce. These were filed in the Database General forum and they should have been filed in the XE forum.
    Firstly, thank you for taking the time to report these issues and suspected issues. In the future, it would be quite helpful to everyone if you reported these in the XE forum.
    1. Oracle Database 10g Express Edition Bugs
    This is not a bug. The developer toolbar will show when you are authenticated to the development environment. You do not have to be authenticated to your application for the developer toolbar to appear.
    2. Oracle Database 10g Express Edition Bugs
    If data is present in the cache, this is up to the application developer (you) to implement the proper security which prevents this behavior.
    3. Oracle Database 10g Express Edition  Bugs
    This is a minor issue, at best. For this type of search interface, it is desirable to perform a case-insensitive query. Wouldn't it be a shame if you searched for "item" and it did not return results that contained "Item".
    4. Oracle Database 10g Express Edition Bugs
    This is not a bug. Different authentication schemes have different data restrictions. It is up to you, the application developer, to easily implement the data validations appropriate for your application.
    5. Oracle Database 10g Express Edition Bugs
    Insufficient information provided. You will have to specify what exact error message is arising and what data you changed which resulted in this error. A complete step-by-step test case is desirable, please.
    6. Oracle Database 10g Express Edition Bugs
    Duplicate of #5 above. And still insufficient information.
    7. Oracle Database 10g Express Edition Bugs
    Not a bug. This is intentional behavior. If I know I want to enter table name EMP, it would be bad from a usability standpoint to always force the user to employ their mouse.
    8. Oracle Database 10g Express Edition Bugs
    This could not be reproduced.
    9. Oracle Database 10g Express Edition Bugs
    Almost identical to #8. Please clarify what the expected behavior should be.
    Joel

    This discussion has been continued in the XE forum at:
    Consolidation of Oracle Database 10g Express Edition "Bugs"
    In the future, please attempt to post all XE-related issues in the XE forum.
    Joel

  • I have Installed Oracle Database 10g Express Edition so i have Problem.....

    Hello Friends
    I have Installed Oracle Database 10g Express Edition in "Ubuntu Linux" but i have Following Problems:
    1.) After i installed Oracle Database 10g Express Edition i gone to
    "Application" -> "Oracle Database 10g Express Edition" -> "Run SQL Command Line"
    SQL Window has been opened there i have typed "SELECT * FROM tab;" here i got Warning Messg of
    "SP2-0640: Not connected"
    2.) From There i have Again gone to
    "Application" -> "Oracle Database 10g Express Edition" -> "Start Database"
    i got Warning Messg of "Operation Failed. venu is not a Member of DBA Group"
    3.) Finally i want Solution For "How to get Connected in "Oracle Database 10g Express Edition"
    Please Post the Answer As Soon As Possible ...
    From Venu(INDIA)

    Was the oracle-xe configure completed successfully?
    Are the pmon and listener processes running ... set your environment and connect via sqlplus if so. If no processes, the instance needs a startup.
    $ ps -ef |egrep pmon
    oracle ... ora_pmon_XE
    $ ps -ef |egrep lsnr   # can also check the listener status, see below
    oracle ... /usr/.../tnslsnr ...
    $ lsnrctl status
    Endpoints Summary ...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=<your hostname>)(PORT=1521)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=http) ... (PORT=8080)))
    ...In the ORACLE_HOME/bin directory there is a shell script you can source to set up your environment variables for connecting to the database. The full path to the .sh should be revealed by the tnslsnr process, /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/oracle_env.sh
    $ /usr/.../oracle_env.sh
    $ sqlplus /nolog
    SQL> connect system
    Password: ...
    Connected.
    SQL> select status from v$instance;
    STATUS
    OPENThe oracle user created by the configure won't have a known password set. Set it and switch user to the oracle login. If you don't want to muck about with the oracle user, at least add your user to the dba group so that you can connect with the sysdba privilege when needed.
    Edited by: clcarter on Feb 22, 2011 7:06 AM

  • Oracle Database 10g Express Edition installing on win2003 SP2

    We are trying to install oracleXE on W2k3 SP2 and getting failed after diplaying "Publishing product information" at final stage. Noting is prompted after this step.

    Many Thanks for the response. These are the few lines. Please let me know if you wish to view the complete log. plz share you mail id, so that i can share the complete log.
    Property(S): RESOURCES = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\Resources\
    Property(S): DE = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\Resources\de\
    Property(S): DEFAULTS = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\admin\defaults\
    Property(S): DELX = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\delx\
    Property(S): DEMO = C:\oraclexe\app\oracle\product\10.2.0\server\demo\
    Property(S): DEMO1 = C:\oraclexe\app\oracle\product\10.2.0\server\nls\demo\
    Property(S): DIRPROPERTY1 = D:\
    Property(S): DOC1 = C:\oraclexe\app\oracle\product\10.2.0\server\doc\
    Property(S): DOC3 = C:\oraclexe\app\oracle\product\10.2.0\server\precomp\doc\
    Property(S): ODP.NET1 = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\
    Property(S): DOC6 = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\doc\
    Property(S): DesktopFolder = C:\Documents and Settings\All Users\Desktop\
    Property(S): ENLX = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\enlx\
    Property(S): ES = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\Resources\es\
    Property(S): ESLX = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\eslx\
    Property(S): FLASH_RECOVERY_AREA = C:\oraclexe\app\oracle\flash_recovery_area\
    Property(S): FR = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\Resources\fr\
    Property(S): FRLX = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\frlx\
    Property(S): FavoritesFolder = C:\Documents and Settings\-oper-lrajesh\Favorites\
    Property(S): FontsFolder = C:\WINDOWS\Fonts\
    Property(S): GIFS = C:\oraclexe\app\oracle\doc\dcommon\gifs\
    Property(S): GlobalAssemblyCache = D:\
    Property(S): HELP = C:\oraclexe\app\oracle\product\10.2.0\server\precomp\help\
    Property(S): HELP1 = C:\oraclexe\app\oracle\product\10.2.0\server\sqlplus\admin\help\
    Property(S): HELP2 = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\help\
    Property(S): ODBC = C:\oraclexe\app\oracle\product\10.2.0\server\odbc\
    Property(S): HELP3 = C:\oraclexe\app\oracle\product\10.2.0\server\odbc\help\
    Property(S): HTML = C:\oraclexe\app\oracle\doc\dcommon\html\
    Property(S): HTML2 = C:\oraclexe\app\oracle\product\10.2.0\server\odbc\html\
    Property(S): SCHEMA1 = C:\oraclexe\app\oracle\product\10.2.0\server\demo\schema\
    Property(S): HUMAN_RESOURCES = C:\oraclexe\app\oracle\product\10.2.0\server\demo\schema\human_resources\
    Property(S): IMG = C:\oraclexe\app\oracle\doc\img\
    Property(S): IMG_TEXT = C:\oraclexe\app\oracle\doc\img_text\
    Property(S): INCLUDE = C:\oraclexe\app\oracle\product\10.2.0\server\plsql\include\
    Property(S): OCI = C:\oraclexe\app\oracle\product\10.2.0\server\OCI\
    Property(S): INCLUDE2 = C:\oraclexe\app\oracle\product\10.2.0\server\OCI\include\
    Property(S): OLEDB = C:\oraclexe\app\oracle\product\10.2.0\server\oledb\
    Property(S): INCLUDE3 = C:\oraclexe\app\oracle\product\10.2.0\server\oledb\include\
    Property(S): INSTALL3 = C:\oraclexe\app\oracle\product\10.2.0\server\RDBMS\install\
    Property(S): ORACLEXE = C:\oraclexe\
    Property(S): ProgramFilesFolder = C:\Program Files\
    Property(S): ISMyCompanyDir = C:\Program Files\My Company Name\
    Property(S): ISMyProductDir = C:\Program Files\My Company Name\My Product Name\
    Property(S): IT = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\Resources\it\
    Property(S): ITLX = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\itlx\
    Property(S): LOG1 = C:\oraclexe\app\oracle\product\10.2.0\server\log\
    Property(S): IWINRBB09 = C:\oraclexe\app\oracle\product\10.2.0\server\log\iwinrbb09\
    Property(S): JA = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\help\ja\
    Property(S): JA1 = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\Resources\ja\
    Property(S): JA2 = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\help\ja\
    Property(S): JALX = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\jalx\
    Property(S): JDBC = C:\oraclexe\app\oracle\product\10.2.0\server\jdbc\
    Property(S): JLIB = C:\oraclexe\app\oracle\product\10.2.0\server\jlib\
    Property(S): JLIB1 = C:\oraclexe\app\oracle\product\10.2.0\server\RDBMS\jlib\
    Property(S): KO = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\Resources\ko\
    Property(S): KOLX = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\kolx\
    Property(S): LDAP = C:\oraclexe\app\oracle\product\10.2.0\server\ldap\
    Property(S): LIB = C:\oraclexe\app\oracle\product\10.2.0\server\OCI\lib\
    Property(S): LIB1 = C:\oraclexe\app\oracle\product\10.2.0\server\precomp\lib\
    Property(S): LIB2 = C:\oraclexe\app\oracle\product\10.2.0\server\opmn\lib\
    Property(S): LIB3 = C:\oraclexe\app\oracle\product\10.2.0\server\RDBMS\lib\
    Property(S): LIB4 = C:\oraclexe\app\oracle\product\10.2.0\server\LIB\
    Property(S): LIB5 = C:\oraclexe\app\oracle\product\10.2.0\server\jdbc\lib\
    Property(S): LIB6 = C:\oraclexe\app\oracle\product\10.2.0\server\oledb\lib\
    Property(S): LOG = C:\oraclexe\app\oracle\product\10.2.0\server\NETWORK\log\
    Property(S): LOG2 = C:\oraclexe\app\oracle\product\10.2.0\server\config\log\
    Property(S): LocalAppDataFolder = C:\Documents and Settings\-oper-lrajesh\Local Settings\Application Data\
    Property(S): SLAX = C:\oraclexe\app\oracle\product\10.2.0\server\slax\
    Property(S): MESG = C:\oraclexe\app\oracle\product\10.2.0\server\slax\mesg\
    Property(S): MESG1 = C:\oraclexe\app\oracle\product\10.2.0\server\oledb\mesg\
    Property(S): MESG10 = C:\oraclexe\app\oracle\product\10.2.0\server\opmn\mesg\
    Property(S): MESG11 = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\mesg\
    Property(S): MESG13 = C:\oraclexe\app\oracle\product\10.2.0\server\sqlplus\mesg\
    Property(S): MESG15 = C:\oraclexe\app\oracle\product\10.2.0\server\RDBMS\mesg\
    Property(S): MESG2 = C:\oraclexe\app\oracle\product\10.2.0\server\plsql\mesg\
    Property(S): MESG3 = C:\oraclexe\app\oracle\product\10.2.0\server\nls\mesg\
    Property(S): MESG4 = C:\oraclexe\app\oracle\product\10.2.0\server\NETWORK\mesg\
    Property(S): MESG5 = C:\oraclexe\app\oracle\product\10.2.0\server\odbc\mesg\
    Property(S): XDK = C:\oraclexe\app\oracle\product\10.2.0\server\xdk\
    Property(S): MESG6 = C:\oraclexe\app\oracle\product\10.2.0\server\xdk\mesg\
    Property(S): ORACORE = C:\oraclexe\app\oracle\product\10.2.0\server\oracore\
    Property(S): MESG7 = C:\oraclexe\app\oracle\product\10.2.0\server\oracore\mesg\
    Property(S): MESG8 = C:\oraclexe\app\oracle\product\10.2.0\server\ldap\mesg\
    Property(S): MIGRATE_DIR = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\migrate\
    Property(S): MSVC = C:\oraclexe\app\oracle\product\10.2.0\server\OCI\lib\MSVC\
    Property(S): ORACLE_CORPORATION = C:\Program Files\Oracle Corporation\
    Property(S): MY_PRODUCT_NAME = C:\Program Files\Oracle Corporation\My Product Name\
    Property(S): MyPicturesFolder = C:\Documents and Settings\-oper-lrajesh\My Documents\My Pictures\
    Property(S): NLLX = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\nllx\
    Property(S): ODE = C:\oraclexe\app\oracle\product\10.2.0\server\ODE\
    Property(S): _0.2.0 = C:\oraclexe\app\oracle\product\10.2.0\
    Property(S): WindowsVolume = C:\
    Property(S): ORACLE_XE = C:\Program Files\Oracle Corporation\Oracle XE\
    Property(S): OUI = C:\oraclexe\app\oracle\product\10.2.0\server\cfgtoollogs\oui\
    Property(S): OWM = C:\oraclexe\app\oracle\product\10.2.0\server\owm\
    Property(S): PRODUCT = C:\oraclexe\app\oracle\product\
    Property(S): PT_BR = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\Resources\pt-BR\
    Property(S): PUBLIC3 = C:\oraclexe\app\oracle\product\10.2.0\server\oramts\public\
    Property(S): PUBLISHERPOLICY = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\PublisherPolicy\
    Property(S): PersonalFolder = C:\Documents and Settings\-oper-lrajesh\My Documents\
    Property(S): PrimaryVolumePath = D:\
    Property(S): ProgramFiles64Folder = D:\
    Property(S): ProgramMenuFolder = C:\Documents and Settings\All Users\Start Menu\Programs\
    Property(S): SAMPLE = C:\oraclexe\app\oracle\product\10.2.0\server\NETWORK\ADMIN\SAMPLE\
    Property(S): SAMPLE2 = C:\oraclexe\app\oracle\product\10.2.0\server\admin\sample\
    Property(S): SAMPLES = C:\oraclexe\app\oracle\product\10.2.0\server\OCI\samples\
    Property(S): SCRIPTS1 = C:\oraclexe\app\oracle\product\10.2.0\server\config\scripts\
    Property(S): SEEDDB = C:\oraclexe\app\oracle\product\10.2.0\server\config\seeddb\
    Property(S): SRVM = C:\oraclexe\app\oracle\product\10.2.0\server\srvm\
    Property(S): SendToFolder = C:\Documents and Settings\-oper-lrajesh\SendTo\
    Property(S): StartMenuFolder = C:\Documents and Settings\All Users\Start Menu\
    Property(S): StartupFolder = C:\Documents and Settings\All Users\Start Menu\Programs\Startup\
    Property(S): System16Folder = C:\WINDOWS\system\
    Property(S): System64Folder = D:\
    Property(S): SystemFolder = C:\WINDOWS\system32\
    Property(S): SourceDir = C:\DOCUME~1\-oper-lrajesh\Local Settings\Temp\1\_is15\
    Property(S): TRACE = C:\oraclexe\app\oracle\product\10.2.0\server\RDBMS\trace\
    Property(S): TRACE1 = C:\oraclexe\app\oracle\product\10.2.0\server\oramts\trace\
    Property(S): TRACE2 = C:\oraclexe\app\oracle\product\10.2.0\server\NETWORK\trace\
    Property(S): TempFolder = C:\DOCUME~1\-oper-lrajesh\Local Settings\Temp\
    Property(S): TemplateFolder = C:\Documents and Settings\All Users\Templates\
    Property(S): USERPROFILE = C:\Documents and Settings\-oper-lrajesh\
    Property(S): VC71 = C:\oraclexe\app\oracle\product\10.2.0\server\OCI\lib\MSVC\vc71\
    Property(S): WindowsFolder = C:\WINDOWS\
    Property(S): XA = C:\oraclexe\app\oracle\product\10.2.0\server\RDBMS\XA\
    Property(S): XE2 = C:\oraclexe\app\oracle\flash_recovery_area\XE\
    Property(S): XML = C:\oraclexe\app\oracle\product\10.2.0\server\RDBMS\xml\
    Property(S): XXLX = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\xxlx\
    Property(S): ZHLX = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\zhlx\
    Property(S): ZONEINFO = C:\oraclexe\app\oracle\product\10.2.0\server\oracore\zoneinfo\
    Property(S): newfolder1 = C:\Documents and Settings\All Users\Start Menu\Programs\Oracle Database 10g Express Edition\
    Property(S): newfolder2 = C:\Documents and Settings\All Users\Start Menu\Programs\Oracle Database 10g Express Edition\Get Help\
    Property(S): _781042AB71DC4D58AEFDC83AFA6603C3 = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\delx\
    Property(S): _7DB1B2C8944C4054BCC8C4500F37049C = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\enlx\
    Property(S): _C47544281E2F4507BDADF8C3ECB1568E = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\eslx\
    Property(S): _91B054F49ECC497AB485FC09F4A586A2 = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\frlx\
    Property(S): _33DB7C9A5200482CB2F5310F002805A1 = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\itlx\
    Property(S): _7CD34E90D6F04BC88D98DE349DFF3CFD = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\jalx\
    Property(S): _4394EB4FE2AD4AC3977E96E14A074BE8 = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\kolx\
    Property(S): _B93C978070284B47AB72A0BBF9AE0206 = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\nllx\
    Property(S): _4CBEF1293D584608B7C996039CB10472 = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\xxlx\
    Property(S): _35AF789A79614E4FB411E8DD5E191A99 = C:\oraclexe\app\oracle\product\10.2.0\server\ctx\data\zhlx\
    Property(S): _125D15172A3E408AB30DF25DFACDA298 = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\help\ja\
    Property(S): _1D715EB43CA34692A8A7182FA7817BEC = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\Resources\de\
    Property(S): _2CAB3BBCB9354C9387FC313D7A2C1EEB = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\Resources\es\
    Property(S): _3904DD47B9F6426CAAC171797F64E1B3 = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\Resources\fr\
    Property(S): _DF56685F21CB4558BCD9A5B88ED4151E = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\Resources\it\
    Property(S): _C5DE329B16584BAE9DE223D4510192D7 = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\Resources\ja\
    Property(S): _12900F77D1294A7EAFA13ADF5B599D1C = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\Resources\ko\
    Property(S): _863AA42463B64FC2B896AE7A2D729BA1 = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\Resources\pt-BR\
    Property(S): _A62C1E6B40CC4EAB83EF4114BE8F5533 = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\Resources\zh-CHS\
    Property(S): _2AD8F73997334D64A411704F544084F7 = C:\oraclexe\app\oracle\product\10.2.0\server\ODP.NET\Resources\zh-CHT\
    Property(S): ProductState = -1
    Property(S): TRANSFORMSATSOURCE = 1
    Property(S): TRANSFORMSSECURE = 1
    Property(S): TRANSFORMS = |C:\DOCUME~1\-oper-lrajesh\Local Settings\Temp\1\_is15\1033.MST
    Property(S): RecacheTransforms = C:\DOCUME~1\-oper-lrajesh\Local Settings\Temp\1\_is15\1033.MST
    Property(S): PackageCode = {32D9C15A-C7C5-4D45-AAE0-B5DB53447098}
    Property(S): ___________3 = ?,?????????
    Property(S): ________p_3 = ?,???? %p?
    Property(S): _Modify = &Modify
    Property(S): ARPNOMODIFY = 1
    Property(S): ARPPRODUCTICON = ARPPRODUCTICON.exe
    Property(S): ARPURLINFOABOUT = http://www.oracle.com
    Property(S): AvailableSpaceInDrive = 0
    Property(S): Avvia__p_adesso. = Avvia %p adesso.
    Property(S): Avvia__p_adesso.1 = Avvia %p adesso.
    Property(S): BUILDTYPE = 87
    Property(S): DWUSINTERVAL = 30
    Property(S): DWUSLINK = CE9C27889E6CD79FFEACD0AF1EFB978FE98BA78FCE1CC08FCEABB7D8FE3CF788DECCE0FFD9AC
    Property(S): DefaultUIFont = Tahoma8
    Property(S): HOSTNAME = localhost
    Property(S): ISSCRIPT_ENGINE_VERSION = 11.0.0.28844
    Property(S): ISSCRIPT_VERSION_MISSING = The InstallScript engine is missing from this machine. If available, please run ISScript.msi, or contact your support personnel for further assistance.
    Property(S): ISSCRIPT_VERSION_OLD = The InstallScript engine on this machine is older than the version required to run this setup. If available, please install the latest version of ISScript.msi, or contact your support personnel for further assistance.
    Property(S): ISVROOT_PORT_NO = 0
    Property(S): IS_COMPLUS_PROGRESSTEXT_COST = Costing COM+ application: [1]
    Property(S): IS_COMPLUS_PROGRESSTEXT_INSTALL = Installing COM+ application: [1]
    Property(S): IS_COMPLUS_PROGRESSTEXT_UNINSTALL = Uninstalling COM+ application: [1]
    Property(S): IS_PROGMSG_XML_COSTING = Costing XML files...
    Property(S): IS_PROGMSG_XML_CREATE_FILE = Creating XML file %s...
    Property(S): IS_PROGMSG_XML_FILES = Performing XML file changes...
    Property(S): IS_PROGMSG_XML_REMOVE_FILE = Removing XML file %s...
    Property(S): IS_PROGMSG_XML_ROLLBACK_FILES = Rolling back XML file changes...
    Property(S): IS_PROGMSG_XML_UPDATE_FILE = Updating XML file %s...
    Property(S): IS_SQLSERVER_AUTHENTICATION = 0
    Property(S): IS_SQLSERVER_USERNAME = sa
    Property(S): Ja__ReadMe_Datei_jetzt_anzeigen. = Ja, ReadMe-Datei jetzt anzeigen.
    Property(S): Ja__ReadMe_Datei_jetzt_anzeigen.1 = Ja, ReadMe-Datei jetzt anzeigen.
    Property(S): Ja___p_jetzt_starten. = Ja, %p jetzt starten.
    Property(S): Ja___p_jetzt_starten.1 = Ja, %p jetzt starten.
    Property(S): MTSNOI = 1
    Property(S): MTSPORTNUM = 2030
    Property(S): Manufacturer = Oracle Corporation
    Property(S): NLS_LANG = ENGLISH_UNITED KINGDOM.WE8MSWIN1252
    Property(S): NewProperty1 = 0
    Property(S): NewProperty10 = 0
    Property(S): NewProperty11 = 0
    Property(S): NewProperty12 = 0
    Property(S): NewProperty13 = 0
    Property(S): NewProperty14 = 0
    Property(S): NewProperty15 = 0
    Property(S): NewProperty16 = 0
    Property(S): NewProperty17 = 0
    Property(S): NewProperty18 = 0
    Property(S): NewProperty19 = 0
    Property(S): NewProperty2 = 0
    Property(S): NewProperty3 = 0
    Property(S): NewProperty4 = 0
    Property(S): NewProperty5 = 0
    Property(S): NewProperty6 = 0
    Property(S): NewProperty7 = 0
    Property(S): NewProperty8 = 0
    Property(S): NewProperty9 = 0
    Property(S): Oui__je_d_sire_lancer__p_maintenant. = Oui, je désire lancer %p maintenant.
    Property(S): Oui__je_d_sire_lancer__p_maintenant.1 = Oui, je désire lancer %p maintenant.
    Property(S): Oui__je_souhaite_lire_le_fichier_Lisez_moi. = Oui, je souhaite lire le fichier Lisez-moi.
    Property(S): Oui__je_souhaite_lire_le_fichier_Lisez_moi.1 = Oui, je souhaite lire le fichier Lisez-moi.
    Property(S): PROGMSG_IIS_CREATEAPPPOOL = Creating application pool %s
    Property(S): PROGMSG_IIS_CREATEAPPPOOLS = Creating application Pools...
    Property(S): PROGMSG_IIS_CREATEVROOT = Creating IIS virtual directory %s
    Property(S): PROGMSG_IIS_CREATEVROOTS = Creating IIS virtual directories...
    Property(S): PROGMSG_IIS_CREATEWEBSERVICEEXTENSION = Creating web service extension
    Property(S): PROGMSG_IIS_CREATEWEBSERVICEEXTENSIONS = Creating web service extensions...
    Property(S): PROGMSG_IIS_EXTRACT = Extracting information for IIS virtual directories...
    Property(S): PROGMSG_IIS_EXTRACTDONE = Extracted information for IIS virtual directories...
    Property(S): PROGMSG_IIS_EXTRACTDONEz = Extracted information for IIS virtual directories...
    Property(S): PROGMSG_IIS_EXTRACTzDONE = Extracted information for IIS virtual directories...
    Property(S): PROGMSG_IIS_REMOVEAPPPOOL = Removing application pool
    Property(S): PROGMSG_IIS_REMOVEAPPPOOLS = Removing application pools...
    Property(S): PROGMSG_IIS_REMOVESITE = Removing web site at port %d
    Property(S): PROGMSG_IIS_REMOVEVROOT = Removing IIS virtual directory %s
    Property(S): PROGMSG_IIS_REMOVEVROOTS = Removing IIS virtual directories...
    Property(S): PROGMSG_IIS_REMOVEWEBSERVICEEXTENSION = Removing web service extension
    Property(S): PROGMSG_IIS_REMOVEWEBSERVICEEXTENSIONS = Removing web service extensions...
    Property(S): PROGMSG_IIS_ROLLBACKAPPPOOLS = Rolling back application pools...
    Property(S): PROGMSG_IIS_ROLLBACKVROOTS = Rolling back virtual directory and web site changes...
    Property(S): PROGMSG_IIS_ROLLBACKWEBSERVICEEXTENSIONS = Rolling back web service extensions...
    Property(S): ProductCode = {F0BC0F9E-C4A8-485C-93ED-424DB9EA3F75}
    Property(S): ProductName = Oracle Database 10g Express Edition
    Property(S): ProductVersion = 10.2.1015
    Property(S): REBOOT = Suppress
    Property(S): RequiredSpaceInDrive = 0
    Property(S): STANDARD_USE_SETUPEXE = This installation cannot be run by directly launching the MSI package. You must run setup.exe.
    Property(S): S___deseo_consultar_el_archivo_L_ame. = Sí, deseo consultar el archivo Léame.
    Property(S): S___deseo_consultar_el_archivo_L_ame.1 = Sí, deseo consultar el archivo Léame.
    Property(S): S___deseo_lanzar__p_ahora. = Sí, deseo lanzar %p ahora.
    Property(S): S___deseo_lanzar__p_ahora.1 = Sí, deseo lanzar %p ahora.
    Property(S): SecureCustomProperties = ISALWAYSINSTALLELEVATED;ISSETUPDRIVEN;ARPSYSTEMCOMPONENT;ARPNOMODIFY;ARPNOREMOVE;INSTALLDIR
    Property(S): Sim__desejo_executar_o__p_agora. = Sim, desejo executar o %p agora.
    Property(S): Sim__desejo_executar_o__p_agora.1 = Sim, desejo executar o %p agora.
    Property(S): Sim__quero_visualizar_o_arquivo_Leiame. = Sim, quero visualizar o arquivo Leiame.
    Property(S): Sim__quero_visualizar_o_arquivo_Leiame.1 = Sim, quero visualizar o arquivo Leiame.
    Property(S): Visualizza_il_file_Leggimi. = Visualizza il file Leggimi.
    Property(S): Visualizza_il_file_Leggimi.1 = Visualizza il file Leggimi.
    Property(S): Yes__I_want_to_launch__p_now. = Yes, I want to launch %p now.
    Property(S): Yes__I_want_to_launch__p_now.1 = Yes, I want to launch %p now.
    Property(S): Yes__I_want_to_launch__p_now.2 = Yes, I want to launch %p now.
    Property(S): Yes__I_want_to_launch__p_now.3 = Yes, I want to launch %p now.
    Property(S): Yes__I_want_to_launch__p_now.4 = Yes, I want to launch %p now.
    Property(S): Yes__I_want_to_launch__p_now.5 = Yes, I want to launch %p now.
    Property(S): Yes__I_want_to_view_the_ReadMe_file. = Yes, I want to view the ReadMe file.
    Property(S): Yes__I_want_to_view_the_ReadMe_file.1 = Yes, I want to view the ReadMe file.
    Property(S): Yes__I_want_to_view_the_ReadMe_file.2 = Yes, I want to view the ReadMe file.
    Property(S): Yes__I_want_to_view_the_ReadMe_file.3 = Yes, I want to view the ReadMe file.
    Property(S): Yes__I_want_to_view_the_ReadMe_file.4 = Yes, I want to view the ReadMe file.
    Property(S): Yes__I_want_to_view_the_ReadMe_file.5 = Yes, I want to view the ReadMe file.
    Property(S): ___ReadMe__________. = ?, ReadMe ??? ?????.
    Property(S): ___ReadMe__________.1 = ?, ReadMe ??? ?????.
    Property(S): ___ReadMe____________ = ???ReadMe ???????????
    Property(S): ___ReadMe____________1 = ???ReadMe ???????????
    Property(S): ___________ = ?,?????????
    Property(S): ___________1 = ?,?????????
    Property(S): ___________2 = ?,?????????
    Property(S): ________p_ = ?,???? %p?
    Property(S): ________p_1 = ?,???? %p?
    Property(S): ________p_2 = ?,???? %p?
    Property(S): ________p________ = ?????? %p ???????
    Property(S): ________p________1 = ?????? %p ???????
    Property(S): ________p_____________. = ?, ?? '%p'?(?) ???????.
    Property(S): ________p_____________.1 = ?, ?? '%p'?(?) ???????.
    Property(S): ARPINSTALLLOCATION = C:\oraclexe\
    Property(S): ProductLanguage = 1033
    Property(S): COMPANYNAME = KPMG
    Property(S): INSTALLLEVEL = 1
    Property(S): INSTALLSHIELDSETUPLANGUAGE = 1033
    Property(S): ISSETUPDRIVEN = 1
    Property(S): ISSETUPFILESCOMPLETED = Completed
    Property(S): ISSETUP_UISEQUENCE_PROCESSED = 1
    Property(S): ROOTDRIVE = D:\
    Property(S): SETUPEXEDIR = C:\temp\fabric manager
    Property(S): SUPPORTDIR = C:\DOCUME~1\-oper-lrajesh\Local Settings\Temp\{F0BC0F9E-C4A8-485C-93ED-424DB9EA3F75}
    Property(S): USERNAME = KPMG
    Property(S): ARPSYSTEMCOMPONENT = 1
    Property(S): ARPNOREMOVE = 1
    Property(S): CURRENTDIRECTORY = C:\WINDOWS\system32
    Property(S): CLIENTUILEVEL = 3
    Property(S): CLIENTPROCESSID = 4636
    Property(S): VersionDatabase = 200
    Property(S): VersionMsi = 3.01
    Property(S): WindowsBuild = 3790
    Property(S): ServicePackLevel = 2
    Property(S): ServicePackLevelMinor = 0
    Property(S): MsiNTProductType = 3
    Property(S): RemoteAdminTS = 1
    Property(S): NetHoodFolder = C:\Documents and Settings\-oper-lrajesh\NetHood\
    Property(S): PrintHoodFolder = C:\Documents and Settings\-oper-lrajesh\PrintHood\
    Property(S): RecentFolder = C:\Documents and Settings\-oper-lrajesh\Recent\
    Property(S): GPTSupport = 1
    Property(S): OLEAdvtSupport = 1
    Property(S): ShellAdvtSupport = 1
    Property(S): Intel = 15
    Property(S): PhysicalMemory = 2047
    Property(S): VirtualMemory = 3152
    Property(S): AdminUser = 1
    Property(S): LogonUser = -oper-lrajesh
    Property(S): UserSID = S-1-5-21-1965243242-631715425-1848903544-213045
    Property(S): UserLanguageID = 2057
    Property(S): ComputerName = UKWATAPP29
    Property(S): SystemLanguageID = 2057
    Property(S): ScreenX = 1024
    Property(S): ScreenY = 768
    Property(S): CaptionHeight = 19
    Property(S): BorderTop = 1
    Property(S): BorderSide = 1
    Property(S): TextHeight = 16
    Property(S): ColorBits = 16
    Property(S): TTCSupport = 1
    Property(S): Time = 10:45:57
    Property(S): Date = 07/05/2009
    Property(S): MsiNetAssemblySupport = 1.1.4322.2300
    Property(S): MsiWin32AssemblySupport = 5.2.3790.3959
    Property(S): RedirectedDllSupport = 2
    Property(S): Privileged = 1
    Property(S): DATABASE = C:\WINDOWS\Installer\3d91347.msi
    Property(S): OriginalDatabase = C:\DOCUME~1\-oper-lrajesh\Local Settings\Temp\1\_is15\Oracle Database 10g Express Edition.msi
    Property(S): UILevel = 2
    Property(S): Preselected = 1
    Property(S): ACTION = INSTALL
    Property(S): ISStartupEvent = E4351944
    Property(S): ff9ef67406aa11d5ab9800b0d02332eb = g
    Property(S): CLEANUPUNINSTALLROLLBACK = Waiting
    Property(S): CostingComplete = 1
    Property(S): OutOfDiskSpace = 0
    Property(S): OutOfNoRbDiskSpace = 0
    Property(S): PrimaryVolumeSpaceAvailable = 0
    Property(S): PrimaryVolumeSpaceRequired = 0
    Property(S): PrimaryVolumeSpaceRemaining = 0
    Property(S): SOURCEDIR = C:\DOCUME~1\-oper-lrajesh\Local Settings\Temp\1\_is15\
    Property(S): SourcedirProduct = {F0BC0F9E-C4A8-485C-93ED-424DB9EA3F75}
    Property(S): ProductToBeRegistered = 1
    MSI (s) (DC:0C) [10:45:57:884]: Note: 1: 1708
    MSI (s) (DC:0C) [10:45:57:884]: Product: Oracle Database 10g Express Edition -- Installation operation failed.
    MSI (s) (DC:0C) [10:45:57:884]: Attempting to delete file C:\WINDOWS\Installer\3d91348.mst
    MSI (s) (DC:0C) [10:45:57:884]: Unable to delete the file. LastError = 32
    MSI (s) (DC:0C) [10:45:57:900]: Cleaning up uninstalled install packages, if any exist
    MSI (s) (DC:0C) [10:45:57:900]: MainEngineThread is returning 1602
    MSI (s) (DC:D4) [10:45:57:916]: Destroying RemoteAPI object.
    MSI (s) (DC:AC) [10:45:57:916]: Custom Action Manager thread ending.
    === Logging stopped: 07/05/2009 10:45:57 ===
    MSI (c) (1C:40) [10:45:58:150]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied. Counter after decrement: -1
    MSI (c) (1C:40) [10:45:58:150]: MainEngineThread is returning 1602
    === Verbose logging stopped: 07/05/2009 10:45:58 ===

  • Oracle Database 10g Express Edition and Forms 6i

    Hello
    Is it possible to combine those two in an application? I mean...can i make an application in Forms&Reports 6i with Oracle Database 10g Express Edition?
    Sorry if that sounded silly but i didnt found a phrase on this subject on Oracle's forums
    Thanks,
    Oana

    Hi,
    yes, it will work, but only with the Western European Edition, not the Unicode release.
    See this thread for details:
    Re: Connection error from SqlPlus 8.0 to Oracle XE in the same computer
    Regards,
    ~Dietmar.

  • Download problems Oracle Database 10g Express Edition

    Completed download.
    Attempted to start application but cannot find the server.
    Removed the software using add/remove programs.
    Attempted to reinstall but it seems that some applications are still on my system.
    Attempted to remove the application but the add/remove program does not recognized the application
    What can I do.

    Hello,
    I need to install "Oracle database 10g Express Edition" with different database name example dev but it is taking
    default name that is XE and there is no option come during installation where i can put the name of database as per my desire.First, note that you can't install more than one instance of XE per server. Changing the instance name won't help you with that.
    As you've already found out, the installer always creates a database instance with default names. That's part of the "Express" concept: As little configuration as necessary to get a Oracle Database installed with just a few clicks. The second advantage is, that you can also simplify the documentation, as you can forget about several aspects when you don't have to configure them...
    Since you don't have tools like dbca in XE, your only option would be to rename the database once it's created. There are a few threads on that topic in this forum, e. g. {thread:id=403056}.
    But before you start working on that, could you explain why exactly you have to use a different database/instance name?
    And also explain why we use "Oracle database 10g Express Edition" instead of Oracle database 10g. what is the meaning of Express Edition.Why and how should we answer why you picked a certain edition? The most likely cause is license costs: XE is available for free, all others are just free as long as you use the OTN license...
    For an overview, there is a [url http://www.oracle.com/us/products/database/enterprise-edition/comparisons/index.html]Comparison Matrix for Oracle Database Editions.
    I'd furthermore ask why you still use 10g XE instead of the current 11g XE?
    -Udo

Maybe you are looking for