Strange Error in Application Express 3.2

Hi all,
I have installed Apex 3.2 over 10G XE. I am running this from about 2 months and have created various applications on it. Suddenly today, i am getting an error when i am trying to access my home page
HTTP 404 Not Found
I am getting the same error if i am running apex admin too. Don't know what wrong has happened suddenly? Has anyone some hint what wrong has happened to my apex?
With Regards,
Sunil Bhatia

where should i run this command....????
in sqlplus an error is coming while running command
SQL> alter system purge shared_pool;
alter system purge shared_pool
ERROR at line 1:
ORA-02065: illegal option for ALTER SYSTEM
Do reply,
Sunil Bhatia

Similar Messages

  • Error installing Application Express 3.1.2 on oracle 11g

    Hi
    I was trying to install APEX on Oracle 11g.
    Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    PL/SQL Release 11.1.0.6.0 - Production
    CORE 11.1.0.6.0 Production
    TNS for Linux: Version 11.1.0.6.0 - Production
    NLSRTL Version 11.1.0.6.0 - Production
    After some trying and dropping users FLOWS_FILES,FLOWS_030100 i was running:
    @apexins SYSAUX SYSAUX TEMP /i/
    This is what i get:
    ...CONNECT as the Oracle user who will own the flows engine
    Session altered.
    I. I N S T A L L P R E - C R E A T E T A B L E S P E C S
    ...wwv_flow_init_htp_buffer
    create or replace procedure wwv_flow_init_htp_buffer
    ERROR at line 1:
    ORA-00600: internal error code, arguments: [kqlindp-bad-user], [100], [], [],
    No errors.
    grant execute on wwv_flow_init_htp_buffer to public
    ERROR at line 1:
    ORA-04045: errors during recompilation/revalidation of
    PUBLIC.WWV_FLOW_INIT_HTP_BUFFER
    ORA-00980: synonym translation is no longer valid
    create or replace package wwv_flow_image_prefix
    ERROR at line 1:
    ORA-00600: internal error code, arguments: [kqlindp-bad-user], [100], [], [],
    No errors.
    create or replace package wwv_flow_global
    ERROR at line 1:
    ORA-00600: internal error code, arguments: [kqlindp-bad-user], [100], [], [],
    Do someone have an idea?
    best regards
    adrian

    I had the exact same problem on 11g. I tried several installs and cleaned up after each failed attempt...
    I ended up installing 3.1 and then running the patch for 3.1.2 which seems to have worked.... the FULL install of 3.1.2 has some script errors and would NOT install "fresh".
    I'm still having configuration issues though... XDB asks for a password, and then I get a URL doesn't exist ....
    <sigh>
    SQL> @apxconf
    PORT
    8080
    Enter values below for the XDB HTTP listener port and the password for the Appli
    cation Express ADMIN user.
    Default values are in brackets [ ].
    Press Enter to accept the default value.
    Enter a password for the ADMIN user [] ken
    Enter a port for the XDB HTTP listener [      8080] 8080
    ...changing HTTP Port
    PL/SQL procedure successfully completed.
    PL/SQL procedure successfully completed.
    ERROR:
    ORA-01435: user does not exist
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - 64
    bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    D:\app\Owner\product\11.1.0\db_1\apex>
    Edited by: Canucklehead on Oct 1, 2008 10:17 AM

  • Error ORA-01785, while viewing Application Express views in Utilities tab.

    Hi,
    I am unable to see data in Application Express Views in Utilities tab. I am using APEX 3.1.2.
    I am getting the following error,
    failed to parse SQL query:
    ORA-01785: ORDER BY item must be the number of a SELECT-list expression.
    There is no sort by in the SQL query. select WORKSPACE, APPLICATION_ID, APPLICATION_NAME
    from APEX_APPLICATION_BC_ENTRIES .
    Can anyone throw some light on this?
    Thanks
    Nimmi

    No, It is not that view I get the same error whenever I am in the Utilities Tab of APEX and trying to query Application Express views.
    Thanks

  • Error ORA-20001 when Creating an Application Express Workspcce

    I have a 11.1.0.6.0 Enterprise Edition database running on a Fedora 10 box that was created using dbca. At the time, I did not select Oracle Application Express for installation. However, I can configure APEX and start it with URL http://<host>:8080/apex/apex_admin and log in as ADMIN. Looks like I'm ready to go... Database accounts APEX_PUBLIC_USER, FLOWS_030000 and FLOWS_FILES existed at the time I configured APEX.
    Following the 2 Day + Application Express Developer's Guide, I get error "ORA-20001: Unable to create user. ORA-01935: missing user or role name" when I attempt to create a workspace for the demo application. In an attempt to resolve this, I've run dbca again to install Application Express in the database, and I then get "ORA-04063: package body "FLOWS_030000.WWV_FLOWS" has errors: ORA-06508: PL/SQL: could not find program unit being called: "FLOWS_03000.WWV_FLOW" ORA-06512: at line 2". DBA_OBJECTS reports table WWV_FLOWS owned by this user, but no package body of the same name.
    Can anyone advise what I need to do to resolve the ORA-20001 error when I attempt to create a APEX workspace, or resolve the ORA-04063 error when I attempt to use dbca to install APEX in the database?
    TIA
    Jon

    ..and show me the results, I might know what is wrong.SQL> alter session set current_schema = flows_030100;
    Session altered.
    SQL> select distinct provisioning_company_id from wwv_flow_companies;
    PROVISIONING_COMPANY_ID
    0
    10
    11
    9.4232E+14
    9.5741E+14
    1.7393E+15
    (I imported the file to my workspace http://apex.oracle.com/pls/otn.... it loaded succesfully but couldn't login.)
    I found a site where the file might have been downloaded from:
    [http://www.oracle.com/technology/products/database/application_express/packaged_apps/packaged_apps.html#CUST]

  • 2 Day Plus Application Express Developer Guide - error?

    Good day !
    In "Oracle Database Express Edition 2 Day Plus Application Express Developer Guide" chapter 8 "How to Upload and Download Files in an Application" at the topic "Store the Document in a Custom Table" ( page 8-10, 8-11) is recommended:
    6. Under Source, replace the process with the following:
    IF ( :P1_FILE_NAME is not null ) THEN
    INSERT INTO file_subjects(id,NAME, SUBJECT, BLOB_CONTENT, MIME_TYPE)
    SELECT ID,:P1_FILE_NAME,:P1_SUBJECT,blob_content,mime_type
    FROM HTMLDB_APPLICATION_FILES WHERE name = :P1_FILE_NAME;
    WHERE name = :P1_FILE_NAME;
    DELETE from HTMLDB_APPLICATION_FILES WHERE name = :P1_FILE_NAME;
    END IF;
    7. Scroll up to the top of the page and click Apply Changes.
    After this I receive Error Message:
    ORA-06550: line 6, column 1: PLS-00103: Encountered the symbol "WHERE" when expecting one of the following: begin case declare else elsif end exit for goto if loop mod null pragma raise return select update while with << close current delete fetch lock insert open rollback savepoint set sql execute commit forall merge pipe
    Now I can't find mistake. Please, help me ( if difficulties not so big )
    Winni

    Replace by:IF ( :P1_FILE_NAME is not null ) THEN
    INSERT INTO file_subjects(id,NAME, SUBJECT, BLOB_CONTENT, MIME_TYPE)
    SELECT ID,:P1_FILE_NAME,:P1_SUBJECT,blob_content,mime_type
    FROM HTMLDB_APPLICATION_FILES WHERE name = :P1_FILE_NAME;
    DELETE from HTMLDB_APPLICATION_FILES WHERE name = :P1_FILE_NAME;
    END IF;The second WHERE clause is superfluous.
    Regards, Marc

  • Application Express 4.0.1.00.03 -   ORA-01841 error when attempting to edit

    I am logged into a development workspace and am able to add new users in HOME|ADMINISTRATION|USERS but when I try to edit them afterward I get the following error:
    Application Express Users
    ORA-01841: (full) year must be between -4713 and 9999, and not be 0+
    Obviously APEX is looking for a date value and not finding it. Anyone else encounter this or know where to look to resolve this? I got the same error in APEX 4.0 so the patch didn't resolve this error. I've done some research in the tables but couldn't find anything that looked like a missing date value.
    I'm using an 11gR2 database on OEL 5.5 running in VBOX on my laptop.
    Thanks.
    Rob

    FIX:
    Cause
    The issue appears due to a problem with the PASSWORD_LIFE_TIME.
    Solution
    Using the apex_admin application, navigate to Home > Manage Service > Security then enter integer values for:
    * Account Password Lifetime (days) - enter 11688, for example
    Apply Changes.
    Looks like it is a bug in apex 4.0 which has also affected previous versions (known about since version 1.5)........

  • Strange Error ! For Reading Application Server File

    Hi Friends,
    I am getting very strange error while compliling my code. As I am reading a text file for input from Application server for further processing. But my system is giving me an error.
    As the file and the path is not yet configured on the application server but i believe
    it has to allow me to compile the program and when i execute it then it will give an error as I have tracked.
    Kindly help.
    I have pasted the code below for reference.
    ===============================
    TYPES : BEGIN OF ty_file,
             line(1055) TYPE c,
              end of ty_file.
    data : gs_file type ty_file.
    data : g_file4 TYPE string VALUE '\usr\sap\CISCO\SP\CISCO_SP_CHG.TXT'.
    OPEN DATASET g_file4  IN TEXT MODE FOR INPUT
                             ENCODING DEFAULT
                             WITH SMART LINEFEED.
      IF sy-subrc NE 0.
        MESSAGE e012.
        LEAVE LIST-PROCESSING.
      ENDIF.
      CLEAR : gs_file.
      DO.
        READ g_file4 INTO gs_file.
        IF sy-subrc NE 0.
          EXIT.
        ENDIF.
        APPEND gs_file into gt_cust_tmp.
        clear gs_file.
      ENDDO.
      CLOSE DATASET g_file4.
    ERROR i am getting
    Unable to interpret g_file4. Possible cause of error "Incorrect Spelling or Comma error".
    =======================
    Regards,
    pradeep

    TYPES : BEGIN OF ty_file,
    line(1055) TYPE c,
    end of ty_file.
    data : gs_file type ty_file.
    data gt_cust_tmp type table of ty_file.
    data : g_file4 TYPE string VALUE '\usr\sap\CISCO\SP\CISCO_SP_CHG.TXT'.
    OPEN DATASET g_file4 IN TEXT MODE FOR INPUT
    ENCODING DEFAULT
    WITH SMART LINEFEED.
    IF sy-subrc NE 0.
    MESSAGE e012.
    LEAVE LIST-PROCESSING.
    ENDIF.
    CLEAR : gs_file.
    DO.
    READ dataset g_file4 INTO gs_file.
    IF sy-subrc NE 0.
    EXIT.
    ENDIF.
    APPEND gs_file to gt_cust_tmp.
    clear gs_file.
    ENDDO.
    CLOSE DATASET g_file4.
    check this coding. in the read statement dataset is missing.
    with regards,
    Vamsi

  • Strange error while deploying application client

    Yesterday my app client was working perfectly. I worked on a different computer though but today as I wanted to test my app client again I encountered this strange error:
    Copying 1 file to G:\StressLabo\StressLabo-app-client\dist
    run-tool:
    23-feb-2007 12:51:44 com.sun.enterprise.appclient.MainWithModuleSupport <init>
    WARNING: ACC003: Application threw an exception.
    java.lang.UnsupportedClassVersionError: Bad version number in .class file
            at java.lang.ClassLoader.defineClass1(Native Method)
            at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
            at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
            at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
            at java.net.URLClassLoader.access$100(URLClassLoader.java:56)
            at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
            at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:299)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
            at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
            at java.lang.Class.getDeclaredFields0(Native Method)
            at java.lang.Class.privateGetDeclaredFields(Class.java:2259)
            at java.lang.Class.getDeclaredField(Class.java:1852)
            at com.sun.enterprise.deployment.util.DefaultDOLVisitor.acceptWithCL(DefaultDOLVisitor.java:349)
            at com.sun.enterprise.deployment.util.EjbBundleValidator.accept(EjbBundleValidator.java:196)
            at com.sun.enterprise.deployment.ApplicationClientDescriptor.visit(ApplicationClientDescriptor.java:620)
            at com.sun.enterprise.deployment.archivist.AppClientArchivist.validate(AppClientArchivist.java:148)
            at com.sun.enterprise.appclient.AppClientInfo.completeInit(AppClientInfo.java:177)
            at com.sun.enterprise.appclient.AppClientInfoFactory.buildAppClientInfo(AppClientInfoFactory.java:136)
            at com.sun.enterprise.appclient.MainWithModuleSupport.<init>(MainWithModuleSupport.java:287)
            at com.sun.enterprise.appclient.Main.main(Main.java:180)
    Exception in thread "main" java.lang.RuntimeException: java.lang.UnsupportedClassVersionError: Bad version number in .class file
            at com.sun.enterprise.appclient.MainWithModuleSupport.<init>(MainWithModuleSupport.java:364)
            at com.sun.enterprise.appclient.Main.main(Main.java:180)
    Caused by: java.lang.UnsupportedClassVersionError: Bad version number in .class file
            at java.lang.ClassLoader.defineClass1(Native Method)
            at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
            at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
            at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
            at java.net.URLClassLoader.access$100(URLClassLoader.java:56)
            at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
            at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:299)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
            at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
            at java.lang.Class.getDeclaredFields0(Native Method)
            at java.lang.Class.privateGetDeclaredFields(Class.java:2259)
            at java.lang.Class.getDeclaredField(Class.java:1852)
            at com.sun.enterprise.deployment.util.DefaultDOLVisitor.acceptWithCL(DefaultDOLVisitor.java:349)
            at com.sun.enterprise.deployment.util.EjbBundleValidator.accept(EjbBundleValidator.java:196)
            at com.sun.enterprise.deployment.ApplicationClientDescriptor.visit(ApplicationClientDescriptor.java:620)
            at com.sun.enterprise.deployment.archivist.AppClientArchivist.validate(AppClientArchivist.java:148)
            at com.sun.enterprise.appclient.AppClientInfo.completeInit(AppClientInfo.java:177)
            at com.sun.enterprise.appclient.AppClientInfoFactory.buildAppClientInfo(AppClientInfoFactory.java:136)
            at com.sun.enterprise.appclient.MainWithModuleSupport.<init>(MainWithModuleSupport.java:287)
            ... 1 more
    Java Result: 1I really don't know what may be causing this and I was hoping someone knows the answer and how to solve it?

    Hello,
    My first though is that your application has been compiled with a newer version of the java compiler on that computer.
    So, try to use the same jdk.
    Regards,
    Sebastien Degardin
    Java EE Architect

  • Error in marvel.conf file in Oracle Application Express 2.2

    Hi All..
    i have installed.. oracle 10g database , then installed oracle application server 10g 10.1.3
    and then installing.. Oracle Application Express 2.2(APEX) , i have successfully installed APEX as instruction of documentation included in installation..
    but i am getting error in.. marvel.conf file.. after creating marvel.conf file i am unable to stop or start Oracle Application Server or Oracle HTTP server ..
    marvel.conf file Content as below..
    Alias /i/ "D:\Oracle\Oracle10gAs\Apache\Apache\Images"
    AddType text/xml xbl
    AddType text/x-component htc
    <Location /pls/apex>
    Order deny,allow
    PlsqlDocumentPath docs
    AllowOverride None
    PlsqlDocumentProcedure wwv_flow_file_manager.process_download
    PlsqlDatabaseConnectString Workshop2.jbdomain:1521:Ora10g ServiceNameFormat
    PlsqlNLSLanguage AMERICAN_AMERICA.AL32UTF8
    PlsqlAuthenticationMode Basic
    SetHandler pls_handler
    PlsqlDocumentTablename wwv_flow_file_objects$
    PlsqlDatabaseUsername APEX_PUBLIC_USER
    PlsqlDefaultPage apex
    PlsqlDatabasePassword apex
    Allow from all
    </Location>
    i have also include path in httpd.conf
    include "D:\Oracle\Oracle10gAs\Apache\modplsql\conf\marvel.conf"
    after that i am going to stop or start HTTP Server i am getting error like thi..
    "Syntax error on line 16 of d:/oracle/oracle10gas/apache/modplsql/conf/marvel.conf:
    Invalid command 'PlsqlDocumentPath', perhaps mis-spelled or defined by a module not included in the server configuration"
    Please.. Help..

    I also have been puzzling around in the marvel.conf for hours yesturday, since I did not get the login-screen as well. Finally I found the solution (in the documentation of the DAD_README) : I removed the word "ServiceNameFormat", restarted the server and it worked. Maybe thes string is confusing the server.....
    Jan.

  • Check Box Bug in Application Express 4.0.2.00.06

    Hi All
    I was wondering if someone can help me with checkboxes, I'm trying to implement in the report.
    I was following Oracle instruction, but it does not work in my application, for some reason.
    First Issue:
    If I add in a query report the following line apex_item.checkbox(1,attachment_id) del, in the report display as *<input type="checkbox" name="f01" value="48" />* and not the checkbox item.
    However, I can overcome this problem by going into the region report and in display change as simple checkbox.
    Second Issue
    When I check any of checkboxes and click on delete button, I'm getting the following error.
    Not found
    The requested URL /apex/wwv_flow.accept was not found on this server
    I'm using Application Express 4.0.2.00.06
    Any ideas why this is happening?
    Any sugestions are welcome
    Please help me
    Thanks in advance.
    Edited by: Malas on 01-Dec-2010 11:09
    Edited by: Malas on 01-Dec-2010 16:05

    I'm getting a very strange error using the API for APEX_ITEM as well on Application Express 4.0.2.00.07
    select APEX_ITEM.checkbox (1, style_color) as "Selection", image,item,sizes,available_date, price, suggested_retail, Percent_Savings
    from sav_tab
    This is a table.
    There are NO where conditions.
    The on_submit process updates a page item :p3_selected with the checkbox contents:
    declare
    v_select varchar2(4000);
    begin
    :P3_SELECTED :='';
    FOR I in 1..APEX_APPLICATION.G_F01.COUNT LOOP
    if APEX_APPLICATION.G_F01(i) is not null then
    :P3_SELECTED := :P3_SELECTED ||(APEX_APPLICATION.G_F01(i))||',';
    end if;
    END LOOP;
    end;
    It was returning: item,item,item
    all of a sudden, it's now it's returning item, column4 contents from the whole page.
    What the heck!!!!!
    Edited by: Canucklehead on Mar 15, 2011 2:16 PM
    I was able to get this working again, by using a different field:
    APEX_ITEM.checkbox (5, style_color) and G_F05
    Edited by: Canucklehead on Mar 15, 2011 2:39 PM

  • Can not login to Oracle Application Express after upgrade to 3.2

    I installed oracle database express and then I upgrade APEX to 3.2 on it. I got the login page but I can not login by using any account, like SYS, SYSTEM. From the document, internal ADMIN account should exist but I did not see it from dba_users table.
    Thanks,
    Julie

    HI Don,
    I did run apxchpwd.sql to change the Application Express ADMIN user password. Then I invoked http://mymachine:8080/apex and got the Application Express login page. I put ADMIN in workspace and ADMIN in Username and the new password. But I still cannot login. I also tried http://mymachine:8080/apex/apex_admin page login. I typed ADMIN as username and the new password. Then I clicked on Login button. Nothing happened. No error message.
    Any idea?
    By the way, what does apxxepwd.sql do?
    Thanks,
    Julie

  • Strange error in APP server installation

    Hi All,
    We installed Oracle Application server Version 10.1.2.3.0 in E drive
    Oracle Home: E:\oracle\FRHome_1
    While testing we get following errors.
    Java Plug-in 1.6.0_26
    Using JRE version 1.6.0_26-b03 Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\log2kor
    c:   clear console window
    f:   finalize objects on finalization queue
    g:   garbage collect
    h:   display this help message
    l:   dump classloader list
    m:   print memory usage
    o:   trigger logging
    q:   hide console
    r:   reload policy configuration
    s:   dump system and deployment properties
    t:   dump thread list
    v:   dump thread stack
    x:   clear classloader cache
    0-5: set trace level to <n>
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    Forms Applet version is : 10.1.2.3
    Exception in thread "thread applet-oracle.forms.engine.Main-1" java.lang.NoSuchMethodError: oracle.ewt.util.BIDIText.setDigitSubstitution(I)V
         at oracle.forms.engine.Runform.onUpdate(Unknown Source)
         at oracle.forms.engine.Runform.onUpdateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
         at oracle.forms.engine.Runform.startRunform(Unknown Source)
         at oracle.forms.engine.Main.createRunform(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)If I remove the ewt jar , I get a strange error Error open Error opening Oracle*Terminal file C:\Oracle\Product\OracleMidTier10gR2\Forms\pc_tastatur.res . If Appserver is installed in E drive why there is a hard-coded values like this*
    C:\Oracle\Product\OracleMidTier10gR2\Forms\*
    Regards,
    Lokanath
    Solution :-> Old config was copied so removed.
    Edited by: Lokanath Giri on १८ जनवरी, २०१२ ११:०० पूर्वाह्न

    Assuming that you are following the written instructions available at http://docs.oracle.com that walk you through the install. And assuming you installed the correct versions of libraries. And assuming you set permissions correctly.
    I'd suggest metalink and opening an SR.
    If you didn't follow the docs ... rm -rf would be a good place to start.

  • Application Express Printing in 3.1 and Oracle 9i

    Hi,
    I am running Application Express 3.1 on a Oracle 9i box using application server 10.1.2 for the web server and when ever we try to do any printing to PDF files it files, changing to HTML give me the following errors; (it works fine from our 10g2 box also running Apex 3.1)
    Any ideas on this?
    Fri, 18 Apr 2008 17:45:41 GMT
    ORA-03113: end-of-file on communication channel
    DAD name: apex
    PROCEDURE : f
    URL : http://nww.infoportal.wiltshire.nhs.uk:80/pls/apex/f?p=105:7:4081603134239502428:FLOW_XMLP_OUTPUT_R383146513321010166_en-gb
    PARAMETERS :
    ===========
    p:
    105:7:4081603134239502428:FLOW_XMLP_OUTPUT_R383146513321010166_en-gb
    ENVIRONMENT:
    ============
    PLSQL_GATEWAY=WebDb
    GATEWAY_IVERSION=2
    SERVER_SOFTWARE=Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server
    GATEWAY_INTERFACE=CGI/1.1
    SERVER_PORT=80
    SERVER_NAME=nww.infoportal.wiltshire.nhs.uk
    REQUEST_METHOD=GET
    QUERY_STRING=p=105:7:4081603134239502428:FLOW_XMLP_OUTPUT_R383146513321010166_en-gb
    PATH_INFO=/f
    SCRIPT_NAME=/pls/apex
    REMOTE_HOST=
    REMOTE_ADDR=10.184.150.119
    SERVER_PROTOCOL=HTTP/1.1
    REQUEST_PROTOCOL=HTTP
    REMOTE_USER=apex_public_user
    ORACLE_SSO_USER=
    OSSO_IDLE_TIMEOUT_EXCEEDED=
    OSSO_USER_GUID=
    HTTP_CONTENT_LENGTH=
    HTTP_CONTENT_TYPE=
    HTTP_USER_AGENT=Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 1.1.4322)
    HTTP_HOST=nww.infoportal.wiltshire.nhs.uk
    HTTP_ACCEPT=image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-shockwave-flash, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, */*
    HTTP_ACCEPT_ENCODING=gzip, deflate
    HTTP_ACCEPT_LANGUAGE=en-gb
    HTTP_ACCEPT_CHARSET=
    HTTP_COOKIE=ORA_WWV_R1=%23ALL; ORA_WWV_R2=%23ALL; ORA_WWV_R3=%23ALL; LOGIN_USERNAME_COOKIE=dpithouse; ORA_WWV_REMEMBER_UN=DPITHOUSE:cascard; ORA_WWV_USER=180C4AB57E701292; WT_FPC=id=2c0fb891060c298ae401208366087265:lv=1208518017286:ss=1208517692850; WWV_CUSTOM-F_6578422443884676_105=AEA5DD5F752363DA; WWV_CUSTOM-F_6578422443884676_100=180C4AB57E701292
    HTTP_IF_MODIFIED_SINCE=
    HTTP_REFERER=http://nww.infoportal.wiltshire.nhs.uk/pls/apex/f?p=105:7:4081603134239502428:::::
    HTTP_SOAPACTION=
    HTTP_ORACLE_ECID=1208540734:10.162.200.150:1328:5536:2513,0
    HTTP_ORACLE_CACHE_VERSION=
    HTTP_AUTHORIZATION=
    WEB_AUTHENT_PREFIX=
    DAD_NAME=apex
    DOC_ACCESS_PATH=docs
    DOCUMENT_TABLE=wwv_flow_file_objects$
    PATH_ALIAS=
    REQUEST_CHARSET=WE8MSWIN1252
    REQUEST_IANA_CHARSET=WINDOWS-1252
    SCRIPT_PREFIX=/pls
    HTTP_IF_MATCH=
    HTTP_CACHE_CONTROL=
    SOAP_BODY=
    HTTP_X_ORACLE_DEVICE_CLASS=
    HTTP_X_ORACLE_DEVICE_ORIENTATION=
    HTTP_X_ORACLE_DEVICE_MAXDOCSIZE=
    HTTP_X_ORACLE_DEVICE=
    HTTP_X_ORACLE_ORIG_ACCEPT=
    HTTP_X_ORACLE_ORIG_USER_AGENT=
    HTTP_X_ORACLE_USER_LOCALE=
    HTTP_X_ORACLE_USER_NAME=
    HTTP_X_ORACLE_USER_DISPLAYNAME=
    HTTP_X_ORACLE_USER_USERKIND=
    HTTP_X_ORACLE_USER_AUTHKIND=
    HTTP_X_ORACLE_USER_DEVICEID=
    HTTP_X_ORACLE_USER_LOCATION_ADDRESSLINE1=
    HTTP_X_ORACLE_USER_LOCATION_ADDRESSLINE2=
    HTTP_X_ORACLE_USER_LOCATION_ADDRESSLASTLINE=
    HTTP_X_ORACLE_USER_LOCATION_BLOCK=
    HTTP_X_ORACLE_USER_LOCATION_CITY=
    HTTP_X_ORACLE_USER_LOCATION_COMPANYNAME=
    HTTP_X_ORACLE_USER_LOCATION_COUNTY=
    HTTP_X_ORACLE_USER_LOCATION_STATE=
    HTTP_X_ORACLE_USER_LOCATION_POSTALCODE=
    HTTP_X_ORACLE_USER_LOCATION_POSTALCODEEXT=
    HTTP_X_ORACLE_USER_LOCATION_COUNTRY=
    HTTP_X_ORACLE_USER_LOCATION_TYPE=
    HTTP_X_ORACLE_USER_LOCATION_X=
    HTTP_X_ORACLE_USER_LOCATION_Y=
    HTTP_X_ORACLE_SERVICE_HOME_URL=
    HTTP_X_ORACLE_SERVICE_PARENT_URL=
    HTTP_X_ORACLE_HOME_URL=
    HTTP_X_ORACLE_MODULE_CALLBACK_URL=
    HTTP_X_ORACLE_MODULE_CALLBACK_LABEL=
    HTTP_X_ORACLE_CACHE_USER=
    HTTP_X_ORACLE_CACHE_SUBID=
    HTTP_X_ORACLE_CACHE_AUTH=
    HTTP_X_ORACLE_CACHE_DEVICE=
    HTTP_X_ORACLE_CACHE_LANG=
    HTTP_X_ORACLE_CACHE_ENCRYPT=
    HTTP_X_ORACLE_ASSERT_USER=

    Unfortunately I can't provide much help, other than that we have seen this before with 9iR2, but haven't yet figured out when this does occur, so not sure if it's related to a specific patch version. If possible, I'd recommend upgrading to database 10g or higher. And if we do figure out under what circumstances this problem comes up in 9iR2, I'll post this on the forum.
    Regards,
    Marc

  • Upgrading Application Express on Oracle XE (installed on Ubuntu 8.04)

    I'd installed on my laptop (OP is Ubuntu 8.04) Oracle XE and is wotking quite fine.
    But I really like to upgrade apex to last version (3.1.2). I read documentation but are not many information about how to upgrade.
    Daniel

    Thanks Arie,
    On whatever version of Windows I've updated without problems Application Express.
    I'm talking here about Ubuntu (a debian distribution of Linux).
    My problem is where to unzip apex, where to use sqlplus command prompt etc., because is different than Windows.
    If you don't have DBA rights on the account (user account other than root) you have errors in installation process and more.
    For example they say in doc...:0
    "To run the apxconf.sql configuration script:
    1. Change your working directory to ORACLE_BASE\ORACLE_HOME\apex or whatever convention used to indicate the Oracle home.
    2. Start SQL*Plus and connect to the database where Oracle Application Express is installed as SYS. For example:
    * On Windows:
    SYSTEM_DRIVE:\ sqlplus /nolog
    SQL&gt; CONNECT SYS as SYSDBA
    Enter password: SYS_password
    * On UNIX and Linux:
    $ sqlplus /nolog
    SQL&gt; CONNECT SYS as SYSDBA
    Enter password: SYS_password".....
    When you install Oracle what version you need, OP (Linux) create a different user account for Oracle. Usually if you want to use your account like dba for oracle, you need to give to that account the proper rights.
    So, I need a installation rutine (for upgrading) for apex on Linux.

  • Need help on installing Oracle Application express 3.2

    Hi,
    I had downloaded Oracle 11g database and installed the personal edition.I got the Enterprise manager login page working and also the DBConsole
    I had Downloaded APEX 3.2 and wanted to install apex 3.2.I wanted to do the following scenario
    Scenario 3: Install from the Database and Configure the Embedded PL/SQL
    Gateway
    Planning to do these steps: ( I have few questions on these steps and are below each step)
    ■ Running the apxconf.sql Configuration Script
    Do I have to install Oracle Application express or is it already installed in 11g personal edition?
    Do I have to create a seperate database or schema for this step( I have only one instance orcl1) ?■ Verifying the Oracle XML DB HTTP Server Port
    Can I do this step in my current orcl1 instance,if so which user■ Enabling Oracle XML DB HTTP Server
    Once I carry out these steps, Can I access the admin page for apex with https://localhost:port/apex_admin ?
    Am I missing any other steps ?
    Thanks

    I have one idea..
    Try to install again:
    1) download and unzip apex_3.2 in $ORACLE_HOME
    You will have:
    $ORACLE_HOME/apex - old directory
    $ORACLE_HOME/apex_3.2 - new directory
    2) in command line go to $ORACLE_HOME/apex_3.2/apex
    run sqlplus "/as sysdba"
    in sqlplus run @apexins tablespace_apex tablespace_files tablespace_temp images
    Where:
    tablespace_apex is the name of the tablespace for the Oracle Application Express application user.
    tablespace_files is the name of the tablespace for the Oracle Application Express files user.
    tablespace_temp is the name of the temporary tablespace.
    images is the virtual directory for Oracle Application Express images. To support future Oracle Application Express upgrades, define the virtual image directory as /i/.
    Example:
    @apexins SYSAUX SYSAUX TEMP /i/
    3) check installation log for errors
    4) in command line go to $ORACLE_HOME/apex_3.2/apex
    run sqlplus "/as sysdba"
    in sqlplus run @apxconf
    set admin password
    set port
    5) run @apxldimg.sql $ORACLE_HOME/apex_3.2
    6) check for running listener and try to login apex: http:\\host:port\apex\apex_admin
    Good luck!

Maybe you are looking for