Oracle Timesten with apex oracle

I use Oracle 11 g 2 and apex 4.2.4 how to use oracle timesten with oracle apex?

I want to use timesten to improve performance on the report by adding two tables oracle timsten.

It is the configuration of linux.

http://blogs.DataDirect.com/2014/04/Oracle-TimesTen-database-gateway-ODBC-realtime-downstream.html

Tags: Database

Similar Questions

  • All fortune we have Oracle integrated with APEX Social Network

    Hello friends,

    A fortune for us have Oracle Social Network integrated with APEX, or having any kind of cat for end users.

    Kind regards
    Fateh

    Chat in APEX tool: http://apextoday.blogspot.com/2008/05/adding-im-xmppjabber-messaging-to-apex.html

    Thank you

    Tony Miller
    Dallas, TX

  • Oracle Application Testing Suite with Apex

    Hello

    I review the feasibility of the use of Oracle Application Testing Suite with Apex to test the features and scalability. I tried to test the navigation and the process but am unable to get accurate results. Is it possible to make a page fails if an ora error message appears on the screen.

    I also tried to create a control test it is a logon has succeeded. If the operation is successful, the user is navigated to a page. I then adjust the code in the application to make the logon fails. I'm waiting for the result of demonstrated not in the script. No matter how hard I try, I can't get the results of success. Does anyone have an idea on how test Application Apex Oracle

    Any help would be much appreciated

    KeV

    "Insert a custom object of test."
    What version do you use?

  • Report/print Set - up with Apex 3.1 and Oracle XE

    I am trying to set up my local computer to run: Oracle XE, Oracle APEX v.3.1, with OC4J to allow printing via Apache FOP. So far, I've got XE and APEX 3.1 works well, OC4J looks OK, and I sent the FOP with APEX .war file. But I don't know where to configure APEX to use service of FOP. The instructions to http://www.oracle.com/technology/products/database/application_express/html/configure_printing.html say:

    "Step 2: Configure Oracle Application Express to use JSP for PDF printing.

    Once you have the PFO installed, access settings to print the report:
    Access to the Services Administration Homepage
    Select manage Service
    Select Instance settings, under manage environment settings
    To focus on only the attributes to print the report, click Print report.

    But I can't find any 'parameters of Instance' or "Managing the environment settings" options in my APEX 3.1 admin screens (connection as SYS or any other user of the administrator). Can someone tell me how/where to find these?

    To be honest, maybe I'm missing something, but this approach seems a little weird to me. The main advantage of the APEX (which doesn't seem to be all that common here in the United Kingdom), is that you can build web applications based on the database quickly and easily without having to run a big fat J2EE server. If I have to run a J2EE server for my impression, I lose this advantage. Still, it would at least make it work on my local machine, so tips are welcome.

    You must log on as administrator using the internal workspace

  • How o use an icon in a standard report to display the details by using a hyperlink with APEX 5.0

    Hello

    I work with APEX 5.0.

    I would like a report (classic) display a report of details (also classical report) using a hyperlink, but not a "text-hyperlink" like 'click here for details'.

    Instead, I want to use a small icon which will occur the same result when you click on.

    It works fine, when the hyperlink is defined as text like: 'click here for details'.

    When I try to use an image, I don't get the desired result.

    Here's what I tried to Hare:

    1)

    Link-> Link attributes, then filled column: src = "& WORKSPACE_IMAGES. "" #ICON_NAME # "width ="40"height = 40 ' or img src =" & WORKSPACE_IMAGES. " "" #ICON_NAME # "width ="40"height = 40.

    = > no picture for the items in the column, but the link already created for each column of the remains (and works)

    2)

    Formatting of column-> HTML Expression, then filled: < img src = "& WORKSPACE_IMAGES. "" #ICON_NAME # "width ="40"height = 40" >

    = > the image appears for each column element, but the hyperlink is gone.

    Somone has idea how to use a picture/icon to have a hyperling in screens reported a detail?

    Thank you in advance for sharing your experience.

    Kimd cordially

    Hi Patrick,

    Link to the column-> then filled:

    Link text = #ICON_IS #

    Link attributes =.

    Target = this Application Page

    Page = 5

    Article 1 = P5_DEPTNO

    Value 1 = #DEPTNO #.

    Article 2 = P5_DEPARTMENT

    Value 2 = #DNAME #.

    Put this   in the link text not in attributes of link

    Remove the code from the link attributes.

    I don't have how to make it the way that describe you.

    Apex. Oracle.com is a hosted version of application Express, you can build online applications.

    Go to this link and the application workspace https://apex.oracle.com/en/

    Hope this helps you,

    Kind regards

    Jitendra

  • Print PDF with APEX 5.0

    Hello

    I would use option to print pdf with APEX 5.0 and Oracle 12 c, what web listener configuration should I choose?

    Kind regards

    Devi

    Hi Devi b.

    Devi B says:

    I would use option to print pdf with APEX 5.0 and Oracle 12 c, what web listener configuration should I choose?

    If you want the port to listen web in APEX as print PDF, ADR 2.0 engine and later (last ADR 3.0) is a good option to consider:

    Reference:

    NOTE: The links are for APEX 4.2, but they still apply for APEX 5.0 and Oracle 12 c, if you plan to use ADR 2.0 and later versions.

    Kind regards

    Kiran

  • SSO with Apex 4.1.1.00.23

    Hello community of Apex,

    I want to implement a solution of SSO between the apex and the non-apex demand. This solution worked with Apex 4.0, but seems not work with current 4.1.1.00.23.
    I've set up a scenario of test on the hosted environment.

    Dev user:
    Workspace: authtest
    User: authtest
    Pass: authtest

    End user:
    User: test
    Pass: test1

    Things I've done:

    (1) created a custom authentication, System (shown under the current name) "auth_scheme" with following authentication:
    create or replace FUNCTION auth_function(
          p_username IN VARCHAR2,
          p_password IN VARCHAR2)
        RETURN BOOLEAN
      AS
        v_is_authenticated BOOLEAN := false;
      BEGIN
        
          IF lower(p_username)= 'test' OR APEX_UTIL.IS_LOGIN_PASSWORD_VALID(p_username => p_username,
                                                                            p_password => p_password)
        THEN
          v_is_authenticated := true;
        
        ELSE
          v_is_authenticated := false;
        
        END IF;
        
        RETURN v_is_authenticated;
      
      END auth_function;
    (2) created a process of "on the load - before the header' with sequences 5 on page 101:
    DECLARE
      v_user                VARCHAR2(4000);
      v_pass                VARCHAR2(4000);
      v_fsp_after_login_url VARCHAR2(4000) := :FSP_AFTER_LOGIN_URL;
    BEGIN
      
      SELECT SUBSTR(v_fsp_after_login_url, instr(v_fsp_after_login_url, 'P101_UNAME') + LENGTH('P101_UNAME') + 1)
      INTO v_user
      FROM dual; 
      
      wwv_flow_custom_auth_std.login(
        P_UNAME       => v_user,
        P_PASSWORD    => v_pass,
        P_SESSION_ID  => v('APP_SESSION'),
        P_FLOW_PAGE   => :APP_ID||':1'
        );
    
    END;
    Treat the condition: request = AUTOMATIC logon:

    (3) created a hidden element "P101_UNAME" on page 101.

    (4) expected behavior: user loads after the URL:
    http://apex.oracle.com/pls/apex/f?p=30964:1::AUTOLOGON:YES::P101_UNAME:test
    schould user logged in without typing in his letters of credence.

    What's happening: login user faces page. What I don't understand: set to 'None', automatic logon process condition works. But if you have a look at the debug report, apex recognizes the "AUTOMATIC login" request, even if the automatic connection does not work. On my dev with Apex 4.1.1.00.23 environment change of State process does not help.

    I can't understand what I'm doing wrong. With the Group of hotfixes 4.1.1 there is some changes in FSP_AFTER_LOGIN_URL Re: Deep Link (FSP_AFTER_LOGIN_URL) does not work at the APEX 4.1 I would be grateful of any suspicion.

    Thank you very much for your answers.

    Kind regards

    Anton

    Edit: Any ideas? I'd appreciate any suspicion.

    Edit2: Maybe of any advice? Explicit definition of the FSP_AFTER_LOGIN_URL in the Url is not helped either...

    Published by: anton on 20.08.2012 01:26

    Hi Anton,.

    http://Apex.Oracle.com/pls/Apex/f?p=56772:1:P101_UNAME:test

    works fine, after I changed the front header process of

    DECLARE
      v_user                VARCHAR2(4000);
      v_pass                VARCHAR2(4000);
      v_fsp_after_login_url VARCHAR2(4000) := :FSP_AFTER_LOGIN_URL;
      v_user_pos            pls_integer    := instr(v_fsp_after_login_url, 'P101_UNAME:');
    BEGIN
      if v_user_pos is not null then
        v_user := substr(v_fsp_after_login_url, v_user_pos+11);
    
        wwv_flow_custom_auth_std.login(
            P_UNAME       => v_user,
            P_PASSWORD    => v_pass,
            P_SESSION_ID  => v('APP_SESSION'),
            P_FLOW_PAGE   => :APP_ID||':1' );
        :FSP_AFTER_LOGIN_URL := null;
      end if;
    END;
    

    and that is the condition for: FSP_AFTER_LOGIN_URL is not not null.

    Kind regards
    Christian

  • How to get started with APEX?

    Hi all


    I'm new in the APEX and I am very interested to learn and deploy any application with APEX. Can someone help me start to APEX.

    For your kind information I installed oracle Express Edition database in RHL5. Then from where start I do not understand. Help, please.


    Arif

    Hi Arif,

    Welcome to the world of the ApEx.

    You can start working with ApEx using the documentation available from the link below

    http://www.Oracle.com/technetwork/developer-tools/Apex/documentation/index.html

    And also to view some of the oracle by example (OBE) for ApEx. you get an idea of how to work with ApEx

    in the following link for ApEx, you will get of OBE

    http://Apex.Oracle.com/pls/Apex/f?p=44785:2:4371329140543008:FORCE_QUERY:2, CIR, RIR:P2_TAGS:APEX

    All the best

    ----------------
    Mark responds promptly

    Kind regards
    Mini

  • Server with APEX 4.0.1 and XE to print

    Hello
    I have a stand-alone environment with the following components responsible:

    Windows XP
    Oracle XE
    APEX 4.0.1
    Microsoft Office

    I have an application developed and works well. Certain requirements of printing came, and they are pretty simple (for example, we cannot print to PDF or XML, etc.)

    I went into APEX_Admin and tried to set up the standard print using the default values. When I enable the printing of a report in the Apex and run it, I get the message:
    report error < pre >:
    ORA-29273: HTTP request failed
    ORA-06512: at "SYS." UTL_HTTP", line 1186
    ORA-12570: drive TNS:packet failure < / pre >

    The Oracle BI tool seems exaggerated for simple printing needs. Is there another alternative?

    Thanks a lot for your help.

    I have installed Oracle Containers for Java, and then installed the FOP. WAR that came with APEX (apex_install_directory/utlities/fop)
    Thanks for your help.

  • XE with Apex 3.2.1 upgrade

    Hello

    I have upgraded XE with Apex 3.2.1 but when click 'enter' I get no answer.
    I enter

    Workspace: internal
    User: Admin
    Password: htmldb

    Control does ' t move on to the next. When I click on the "connect" button.



    Maury

    Have you copied all files in the images of the patch directory folder in your 'virtual drive' referenced by is (the prefix of APEX image)?

    Looks like there are a few JavaScript files lack then I suggest to read the guide to install here: http://download.oracle.com/docs/cd/E14373_01/install.32/e13366/otn_install.htm#BHAJIGDA

    and looking at the section: 3.3.5.2 updating the Images directory during the upgrade from a previous version

    Hope that helps

    Duncs

    ---------------------------------------------------------------------------------------------------------------------------------------------------------
    http://djmein.blogspot.com

    By courtesy, please remember to mark the useful or correct accordingly :) answers

  • 5.6.3 (EBS) editor XML can be integrated with APEX?

    On the following document, Publisher 5.6.2 XMP supports no integration with APEX. Can I know 5.6.3? What is the product being an add-on with EBS causing the supporting integration (i.e., 5.6.3 even is not taken in charge)?

    http://www.Oracle.com/technology/products/database/application_express/HTML/configure_printing.html

    Thank you
    Rownald

    APEX integrates with the standalone version of BI Publisher. It was not a component of server with the standalone 5.6.3. The integration is based on the editor providing a servlet for APEX contact, 5.6.3 do not have that.
    If you're talking 5.6.3 under EBS then I guess you could build a servlet on the mid-tier that calls the API conversion of BEEP - it would all be a custom job.

    The integration of the APEX needs 10.1.3.2 BEEP to work with out of the box.

    Concerning

    Tim

  • problem with apex

    I have installed oracle 10g and oracle application server 10g (http server)

    and I install apex and I use the guide as appendxed with apex intallation for intallation

    After you run the scripts

    I edited the file dads with the following information

    Alias is "g:/apex/images / '.
    AddType text/xml xbl
    AddType text/x-component htc

    < apex/pls/location >
    Order deny, allow
    Docs PlsqlDocumentPath
    AllowOverride None
    PlsqlDocumentProcedure wwv_flow_file_mgr.process_downloadd
    Apex of nasser: 7777:service_name PlsqlDatabaseConnectString
    PlsqlNLSLanguage AMERICAN_AMERICA. AL32UTF8
    PlsqlAuthenticationMode Basic
    SetHandler pls_handler
    PlsqlDocumentTablename wwv_flow_file_objects$
    PlsqlDatabaseUsername APEX_PUBLIC_USER
    Apex PlsqlDefaultPage
    PlsqlDatabasePassword pub
    PlsqlRequestValidationFunction wwv_flow_epg_include_modules.authorize
    Allow all the
    < / location >

    After that, I ask the url http://nasser:7777/pls/apex

    but I got "Internal Server Error"

    What is the problem

    If there is an error in the file of dads

    Help me please

    Published by: user3683976 on February 9, 2009 15:19

    If I understand correctly, you are using the Windows environment, right? So, your alias images should not be 'g:\apex\images/ '?
    Hope this helps.
    -------------------------
    Alias is-"g:/apex/images /"-"g:\apex\images/".
    AddType text/xml xbl
    AddType text/x-component htc


    Order deny, allow
    Docs PlsqlDocumentPath
    AllowOverride None
    PlsqlDocumentProcedure wwv_flow_file_mgr.process_download - d-
    Apex of nasser: 7777:service_name PlsqlDatabaseConnectString
    PlsqlNLSLanguage AMERICAN_AMERICA. AL32UTF8
    PlsqlAuthenticationMode Basic
    SetHandler pls_handler
    PlsqlDocumentTablename wwv_flow_file_objects$
    PlsqlDatabaseUsername APEX_PUBLIC_USER
    Apex PlsqlDefaultPage
    PlsqlDatabasePassword pub
    PlsqlRequestValidationFunction wwv_flow_epg_include_modules.authorize
    Allow all the

  • How to set up printing with apex 3.1.2

    I try to use Apache FOP with Apex 3.1.2 and I can't find the place to set up Apex.
    The document that I use is located at [http://www.oracle.com/technology/products/database/application_express/html/configure_printing.html] and the important point is this:

    Step 2: Configure Oracle Application Express to use JSP for PDF printing

    Once you have the PFO installed, access settings to print the report:

    1. access to the Services Administration Homepage
    2. Select manage Service
    3. Select settings of Instance, under manage environment settings
    4. click on print to concentrate on only the attributes of the report print report

    I'm trying to locate these settings. In the page with the 'Home & gt navigation bar; Administration & gt; Manage Services"is not"environment to manage settings.
    I looking in the wrong place? Y at - it a special user who should be used as sys?

    The installation is an Oracle XE with Apex upgraded to 3.1.2

    You must be connected to the "internal" workspace

    CITY

  • GTT - Global temporary Table - problem with Apex

    Hello

    I'm having a problem using TWG with Apex. The data generated by a session can be selected by another user in another session. How can this happen?

    Thank you

    Márcio Goncalez

    Sounds like the connection pooling. You might want to try to change your TWG flush on the end of session to flush the commit.

  • jUpload with Apex 3

    Is that what someone has successfully used jUpload with Apex 3?

    I got jUpload actually upload files in a directory on the server, but I can't seem to understand the next step...


    I need to be able to obtain the names of downloaded files so I can then load into the database...

    Someone at - it samples?

    We use jupload with apex listener. Listener of the apex, you could set up a model of resource http-post. The model of resource url is the url target of the jupload applet:

    <>
    Code = "wjhk.jupload2.JUploadApplet"
    name = "JUpload".
    Archive="/i/wjhk.jupload.jar".
    Width = "640".
    Height = "300".
    MAYSCRIPT = 'true '.
    ALT = "the pugin java must be installed." >

    Java 1.5 or higher plugin required.

    Definition of the resource with name 'download' model, type PL/SQL:

    Start
    Insert into table1 (contenttype, contentblob) values (: contentType,: body);
    commit;
    : status: = 200;
    exception when others then
    : status: = 500;
    end;

    We have changed the jupload applet to be able to transfer the file names as parameters to jupload to the listener of the apex.

    Published by: services on 12.02.2012 13:17

Maybe you are looking for