How to upgrade APEX to 3.2 in Oracle 10g XE

I installed the Oracle XE on my PC and it works fine for me. Now I want to upgrade APEX to version 3.2. After download the zip file online and unzip it, the file couldn't be run in Sql*Plus with error message "can't open file apexin.sql". My guess is I didn't change my working directory to the APEX fold which contains the unzipped files. But I have no idea how to do it?
So any help or suggestion?
Thanks!

"can't open file apexin.sql" Is that a typo ? Correct name is apexins.sql.
My guess is I didn't change my working directory to the APEX fold which contains the unzipped files. But I have no idea how to do it?Did you read the documentation ?

Similar Messages

  • How to Find the Current Instance Id in Oracle 10g

    Hi,
    how to find the current instance id in oracle 10g studio,
    I have the below code :
    if (InstanceScreenFlow.processInstance.id.id.indexOf(text : ins.id) < 0) {
    /// do something
    it is saying that "'processInstance' is not a function"
    Thanks,
    Brijesh Kumar Singh.

    Why not just pass in the "id" predefined variable into your screenflow? Once you do that you'll be able to refer to it as "id.id" anywhere inside your screenflow.
    Dan

  • How do l create a new database in Oracle 10g Express

    How do l create a new database in Oracle 10g Express, other than the one that is created on installation?

    Hello,
    You cannot create a second XE database on the same server.
    But, Oracle database can support as many Schema as you want.
    "Oracle database" is like "SQL Server Instance" and "Oracle Schema" is like "SQL Server database". I means by this shortcut that for
    the end users accessing to different Schemas looks like accessing to different databases.
    You can have several applications on the same database. Each application has its own Schema and Datafile (Tablespace) structure.
    So on your XE database you can add a new Tablespace and create a new User/Schema as follows:
    sqlplus /nolog
    connect / as sysdba
    create tablespace {color:red}new_tablespace_name{color}
    extent management local autoallocate
    SEGMENT SPACE MANAGEMENT AUTO
    datafile '{color:red}complete_datafile_name{color}' size 100M autoextend on next 10M maxsize unlimited;
    create user {color:red}new_schema_name{color} identified by {color:red}password{color}
    default tablespace {color:red}new_tablespace_name{color}
    temporary tablespace TEMP
    quota unlimited on {color:red}new_tablespace_name{color}
    grant connect, resource to {color:red}new_schema_name{color};Then you can connect to this new User/Schema as you defined it and create your new structure and load datas.
    Hope it can help.
    Best regards,
    Jean-Valentin

  • How to provide access to  v$tables in oracle 10g to user

    Hi,
    can any one suggest me how to provide access to v$tables in oracle 10g to user .
    its requried for auditor.
    PLease help me.
    regards

    user12009184 wrote:
    HI have to provide access to all V$ tables
    it required for configuration of new tool.
    ThanksYou can grant it the select catalog role to the user. It should provide all the required access to the general v$* & dba_* views.
    GRANT SELECT_CATALOG_ROLE TO USER;
    Let me know if this helps.
    Regards,
    Rizwan

  • How to genrate and check wait statistics in oracle 10g

    Dear all,
    how to genrate and check WAIT STATISTICS in oracle 10g on RHEL4.
    Regards,
    Ali

    Oracle Kernel keeps track of these statistics. Query v$waitstat for overall system level wait statistics or v$session_wait for individual session wait statistics.

  • How to store photo images and thumbimpressions in oracle 10g database

    Hi all
    I have an web application running in Oracle 10g rel 1 database server in RHEL3. It has application server with forms and j2ee component as middle tier. I need to store centrally photo images and thumb impressions and use it in our application without any overhead on retrieval and performance of web application. what will be optimized method of storage of photo and thumb impressions. Awaiting your valuable suggestions.
    Regards
    Vijay Kumar

    Hi Vijay,
    How to store photo images and thumbimpressions in oracle 10g database I have working code here for storing photos in Oracle tables that you may find useful:
    http://www.dba-oracle.com/t_storing_insert_photo_pictures_tables.htm
    Hope this helps . . .
    Donald K. Burleson
    Oracle Press author
    Author of "Oracle Tuning: The Definitive Reference"
    http://www.rampant-books.com/book_2005_1_awr_proactive_tuning.htm

  • How do I configure my system so that Oracle 10g properly shuts down and sta

    How do I configure my system so that Oracle 10g properly shuts down and starts up when I reboot my Solaris system?

    http://download.oracle.com/docs/cd/B19306_01/server.102/b15658/strt_stp.htm#sthref255

  • How to upgrade Apex 2.2 to Apex 3.1

    Dear all
    please Mention the Procedure for Upgrading Apex 2.2 to Apex 3.1
    I am using Apex 2.2 , Oracle 10g on Windows 2000 Server
    thanks Alot
    Edited by: khaja on Jan 18, 2009 11:09 AM

    Hi All,
    I am seeing a problem with the upgrade from 2.2 to 3.1. After the upgrade (with apexins.sql) I still see the following synonyms in PUBLIC:
    SQL> select synonym_name, table_name
    2 from dba_synonyms
    3 where owner='PUBLIC' and table_owner='FLOWS_020200';
    SYNONYM_NAME TABLE_NAME
    WWV_FLOW_LIST_OF_VALUES_DATA WWV_FLOW_LIST_OF_VALUES_DATA
    WWV_FLOW_LISTS_OF_VALUES$ WWV_FLOW_LISTS_OF_VALUES$
    WWV_FLOW_GENERIC WWV_FLOW_GENERIC
    WWV_FLOW_FIELD_TEMPLATES WWV_FLOW_FIELD_TEMPLATES
    APPLICATION_AUTHENTICATION APPLICATION_AUTHENTICATION
    WWV_CREATE_FORUM_DEMO_SCRIPT WWV_CREATE_FORUM_DEMO_SCRIPT
    WWV_FLOW_LOOKUP_TABLES WWV_FLOW_LOOKUP_TABLES
    WWV_FLOW_WEB_SERVICES WWV_FLOW_WEB_SERVICES
    WWV_FLOW_REWRITE_QUERY WWV_FLOW_REWRITE_QUERY
    9 rows selected.
    The user flows_020200 still exists with over 2000 objects.
    How can I drop this user FLOWS_020200 without causing any problems?
    Regards,

  • How to upgrade Apex 2.1 to 3.2.1

    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
    plz tell me step by step i m new with this
    Edited by: user13342245 on Jan 6, 2011 11:36 PM

    You can find a complete installation guide here:
    http://download.oracle.com/docs/cd/E14373_01/install.32/e13366/overview.htm#i46634
    Upgrading from a previous Apex installation:
    http://download.oracle.com/docs/cd/E14373_01/install.32/e13366/overview.htm#CEGEFBFI
    Regards,
    Tuur

  • How to Upgrade apex 4.1.1 to 4.2 step by step ..

    Dear All
    good day
    step by step to upgrade apex to 4.2 without  any problems
    *1)-- download last version on : http://www.oracle.com/technetwork/developer-tools/apex/downloads/index.html*
    *2)-- unzip file to same directory where old apex directory on my computer was C:\ will ask you if you replace click yes to all .*
    *3)-- go to run > cmd > cd c:\ {change directory to drive where apex folder . then > cd apex will be like this C:\apex*
    *4)-- C:\apex splplus and press enter , must insert this >>*
    *5)-- username: sys as sysdba   and press enter must insert passward for Xe example : orcl this when istall application express edition 11g >*
    *6) SQL>@apexins.sql sysaux sysaux temp /i/  and press enter .*
    *7) Now wait for one hour and 7 mints to finsh.*
    *8)-- Now exit from black monitor (DOS) and open run > cmd > and change directory to C:\apex*
    *9)-- repeat steps number 4 , 5.*
    *10)-- SQL> @apxldimg.sql  C:\ and click enter , wait maybe 10 mints  Note: directory c  must be Capital .*
    *11)-- when finshed exit to folder C:\apex by commend exit .*
    *12)-- repeate steps 4 , 5.*
    *13)-- SQL> @apxchpwd.sql  and change your admin password Not: must be 6 character or more and must cotine Capital letter and - or ant signs and numbers.*
    *14)-- no go go work with last version apex 4.2 on : http://127.0.0.1:8080/apex/*
                   *good luck for all*
    Edited by: user12315805 on Oct 31, 2012 5:59 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Dear All
    good day
    step by step to upgrade apex to 4.2 without  any problems
    *1)-- download last version on : http://www.oracle.com/technetwork/developer-tools/apex/downloads/index.html*
    *2)-- unzip file to same directory where old apex directory on my computer was C:\ will ask you if you replace click yes to all .*
    *3)-- go to run > cmd > cd c:\ {change directory to drive where apex folder . then > cd apex will be like this C:\apex*
    *4)-- C:\apex splplus and press enter , must insert this >>*
    *5)-- username: sys as sysdba   and press enter must insert passward for Xe example : orcl this when istall application express edition 11g >*
    *6) SQL>@apexins.sql sysaux sysaux temp /i/  and press enter .*
    *7) Now wait for one hour and 7 mints to finsh.*
    *8)-- Now exit from black monitor (DOS) and open run > cmd > and change directory to C:\apex*
    *9)-- repeat steps number 4 , 5.*
    *10)-- SQL> @apxldimg.sql  C:\ and click enter , wait maybe 10 mints  Note: directory c  must be Capital .*
    *11)-- when finshed exit to folder C:\apex by commend exit .*
    *12)-- repeate steps 4 , 5.*
    *13)-- SQL> @apxchpwd.sql  and change your admin password Not: must be 6 character or more and must cotine Capital letter and - or ant signs and numbers.*
    *14)-- no go go work with last version apex 4.2 on : http://127.0.0.1:8080/apex/*
                   *good luck for all*
    Edited by: user12315805 on Oct 31, 2012 5:59 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How to upgrade APEX 4.1.1 to 4.2.2 ?

    Actually I wanted to apply the latest CPU patches but by reading the articles what I understood is that I need to upgrade it to 4.2.2. Please correct me if I am wrong ? And provide me the link or procedure to upgrade APEX to 4.2.2 ?
    Thanks
    Sami

    Some two years back I too experienced the same problem. Excelent Guys on this forum helped mee. I am sorry for those who helped mee step by step because I had forgotton to mark that thread correct. Now I mark it correct.
    See the thread
    Unable to upgrade Apex 4.0
    Sajjad

  • How to upgrade the 9.2.0.7 oracle database to 10gR2(10.2.0.1.0)

    Hi How can I upgrade the 9.2.0.7 oracle database to 10gR2(10.2.0.1.0)?
    What is the oracle note / doc id.
    What are pre,upgrade and post upgrad task?
    what are the various check lists?
    I request your highness to do the needful in providing the info
    Thanks
    Naveen

    You can start by reading the Upgrade guide<br>
    <br>
    Nicolas.

  • Install APEX to work on existing Oracle 10g R1 database

    I want to use APEX on an existing Oracle 10g R1 database. If I install it normally with the program downloaded from your site, it installs its own database that you use.
    How can I set / install it to use the existing database instead of its own database?
    Elsie Pretorius

    Hi guys,
    Thanks for the info and input. Is there anybody have sucessfully done this. Most of the info that out there, the README in the patchset all pointing to upgrading the OCS, not installing the OCS on top of an existing 10g AS and DB. I'm thinking installing the OCS R2, and then patching and upgrade it to 9.0.4.2 or 4.3 and then point or move it to the existing 10AS and DB. This is where I'm quit blur at the moment.
    Anyway thank for all the info.
    Regards
    Din

  • How to create a single executable file in oracle 10g

    hi all
    i am a fairly new user to oracle. i would like to know if there is any way that i can compile both the database and forms that i have created, using the oracle 10g developer suite, into a single executable file and be able to install it on another system without installing the development environment?
    can anyone please help
    thanks in advance

    Hi there
    The forum software was upgraded a few months back and many links to older content were lost.
    There are possibly a few different things you need to do. First, click Project > Skin > Borders tab and DE-select the "Show Borders" check box. That will eliminate the _skin.SWF from the mix. If you have full motion clips you may need to take other steps.
    Also note that while turning off the borders eliminates the _skin.SWF, it also has the side effect of coaxing the the playback controls up onto the main part of the presentation. If you don't like this, you need to resize the movie to make room for the playback controls to be placed into its own area.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • How to Create A new Database in the oracle 10g XE

    i have oracle 10g XE i tried to create a new database but its giveing me error when i execute the sql command that is create database testDatabase how to create a new database in oracle 10g XE

    Hi there 785434,
    (This is a generic SQL question relating to Database Triggers, please post future questions of this type into the relevant forum area.)
    Moderator, please move this if able
    I use Before Update and Before Delete Triggers to record a 'snapshot' of the row being changed in my applications.
    Example:
    CREATE TABLE TEST
    DATA VARCHAR2(64 CHAR),
    CREATING_USERID VARCHAR2(20 CHAR) DEFAULT user NOT NULL,
    CREATED_DATE DATE NOT NULL,
    CHANGED_BY_USERID VARCHAR2(20 CHAR),
    CHANGED_DATE DATE
    LOGGING
    STORAGE
    (MAXEXTENTS UNLIMITED);
    CREATE TABLE TEST_HISTORY
    DATA VARCHAR2(64 CHAR),
    CREATING_USERID VARCHAR2(20 CHAR) DEFAULT user NOT NULL,
    CREATED_DATE DATE NOT NULL,
    CHANGED_BY_USERID VARCHAR2(20 CHAR),
    CHANGED_DATE DATE,
    CHANGE_DESCRIPTION
    NOLOGGING
    STORAGE
    (MAXEXTENTS UNLIMITED);
    CREATE OR REPLACE TRIGGER TRG_BU_TEST
    BEFORE UPDATE ON TEST FOR EACH ROW
    BEGIN
    INSERT /*+ append */ INTO TEST_HISTORY
    (DATA, CREATING_USERID, CREATED_DATE, CHANGED_BY_USERID, CHANGED_DATE, CHANGE_DESCRIPTION)
    VALUES
    (:old.DATA, :old.CREATING_USERID, :old.CREATED_DATE, USER, SYSDATE, 'UPDATE');
    END;
    CREATE OR REPLACE TRIGGER TRG_BD_TEST
    BEFORE DELETE ON TEST FOR EACH ROW
    BEGIN
    INSERT /*+ append */ INTO TEST_HISTORY
    (DATA, CREATING_USERID, CREATED_DATE, CHANGED_BY_USERID, CHANGED_DATE, CHANGE_DESCRIPTION)
    VALUES
    (:old.DATA, :old.CREATING_USERID, :old.CREATED_DATE, USER, SYSDATE, 'DELETE');
    END;
    Using triggers like this will record who made an update or delete to the database and record the row before it was changed.
    Note that this method might not be suitable for very high transaction rates.
    You will need to 'clear' these history tables as part of routine maintenance.
    Hope that this Helps.
    Ronald.

Maybe you are looking for