Forms/Reports: Role of the Database cache and Web cache

Hello oracle experts,
I am running a purely Forms and Reports based environment (9iAS).
My question are:
a. Is it possible to use features from the Web Cache and
Database Cache to boost the performance of my applications?
b. Are all components monitorable from the OEM?
Please guide me so that i can configure my OEM to monitor my
forms and reports services.
thanks in advance for your reply
Kind regards
Yogeeraj

Hi BradW,
The way this is supposed to be done in Web Cache is by keeping separate copies of a cached page for different types of browsers distinguished by User-Agent header.
In case of cache miss, Web Cache expects origin servers to return appropriate version of the page based on browser type, and the page from the origin server is just forwarded back to browser.
Here, if the page is cacheable, Web Cache retains a separate copy for each type of User-Agent header value.
And when there is a hit on this cached page, Web Cache returns the version of page with the User-Agent header that matches the request.
Check out the config screen titled "Header Association" for this feature.
About forwarding requests to different origin servers based on User-Agent header value, Web Cache does not have such capability.

Similar Messages

  • Roles in the database

    Hi Team !
    I need to find out the Roles in the database which contains only Read only Permission on the Objects .
    Could you please help me out .
    Thanks in advance .
    Regards,
    Augustine

    Try with this. Not very elegant but found the role for me :)
    select a.role from role_tab_privs a
    group by role
    having count(*) = (select count(*) from role_tab_privs b where b.privilege='SELECT' and a.role= b.role);

  • IPhoto 9.5.1 has suddenly got all blank photos.  If I scroll through the photos they appear briefly.  I have not updated to Yosemite.  I have been through the database rebuild and repair routines.

    iPhoto 9.5.1 has suddenly got all blank photos.  If I scroll through the photos they appear briefly and disappear.  I have not updated to Yosemite - I am still running Mavericks on an iMac.  I have been through the database rebuild and repair routines.  I uploaded photos and movies three days ago and all was well.  Then I used the migration assistant to copy from Time Machine to a new Macbook Air and noticed blank photos.  I thought it was a problem with the Macbook Air, but then I went back to the iMac to check and they were all blank as well.

    what does appear after the photo "flashes"?
    Have you repaired permissions? If not backup your iPhoto library and option-command launch and repair permissions - then repair the database and if needed rebuild the database
    If that does not do it down iPhoto Library Manager on the iMac and use the free trial's rebuild command to create a totally new library leaving the existing one alone
    Once you have the iMac working correctly then connect the two systems together (or use an external drive formatted Mac OS extended (journaled) ) and drag the iPhoto library form the iMac to the pictures folder of the MBA (rather than migration assistant)
    LN

  • May i can't have Forms+Reports server on the same machine ?

    Gurus!
    I have installed Forms+Reports server on the same machine with their builders too. But then Forms & Reports server does not function when i call my .fmx file in browser the message,
    "Java applet loading" appears but then the process hang up.
    But when only installed Form server my .fmx file works.I also want to call my .rep files from forms.
    May i can not have Forms+Reports server on the same machine?
    Separately they work but not both but i require both how!
    I have also seen when both installed and when i start services of both then ifweb60.exe is called two times in memory, it shows from task manager's process tab.
    Please help!
    Many thanks

    1. Check these files to make sure you have the correct port settings for your forms: formsweb.cfg, base.htm
    2. In your Windows Registry:
    a. Add path for Reports Server (REPORTSxx_PATH)
    b. Make sure you also have FORMSxx_PATH defined
    c. Check values of your OracleFormsServer.
    HKEY_LOCAL_MACHINE
    SYSTEM
    ControlSet001
    Services
    OracleFormsServer
    Verify the values of Host, Mode, Pool and Port.
    3. Check Metalink Note 97487.1 for additional info.
    And YES, Apache, Forms, Reports and Graphics can all run in the same machine.

  • The type of the database table and work area (or internal table)...

    Hello
    I am trying to use a database and select all records from it and store them into an internal table.
    My code:
    Select * from xixi_dbcurrency into table gt_currency.
    The error:
    "The type of the database table and work area (or internal table) "GT_CURRENCY" are not Unicode-convertible . . . . . . . . . .     "
    Any suggestions?
    Thank you

    Hi Thomas,
    Thank you for your inputs above.
    But as you suggested is we use INTO CORRESPONDING FIELDS OF TABLE then it resolve the error.
    But I have below piece of code:
    DATA:    it_new_source TYPE STANDARD TABLE OF _ty_s_sc_1,
                  wa_source TYPE _ty_s_sc_1,
                  wa_new_source TYPE _ty_s_sc_1,
                  ls_target_key TYPE t_target_key.
    SELECT * INTO CORRESPONDING FIELDS OF TABLE it_new_source
           FROM /bic/afao06pa100
           FOR ALL ENTRIES IN SOURCE_PACKAGE
           where /bic/fcckjobno = SOURCE_PACKAGE-/bic/fcckjobno
           and /bic/fcckjitid = SOURCE_PACKAGE-/bic/fcckjitid.
    But since this is reading into corresponding fields of table the data load from one DSO to other DOS is running for long more that 15 hours and still not getting completed and giving dump.
    So if I switch the search to below:
    SELECT * FROM /bic/afao06pa100
       INTO TABLE it_new_source
           FOR ALL ENTRIES IN SOURCE_PACKAGE
           where /bic/fcckjobno = SOURCE_PACKAGE-/bic/fcckjobno
           and /bic/fcckjitid = SOURCE_PACKAGE-/bic/fcckjitid.
    Then I am getting below error:E:The type of the database table and work area (or internal table) "IT_NEW_SOURCE" are not Unicode convertible.
    Can you please advice on this, as performance need to improve in start routine code.
    Thank You.

  • The type of the database table and work area are not Unicode convertible

    ***Data declaration
    TYPES : BEGIN OF t_zle_lagerplanung,
                       SEl, "stores which row user has selected
                       kdauf TYPE zle_lagerplanung-kdauf,
                       kdpos TYPE zle_lagerplanung-kdpos,
                       etenr TYPE zle_lagerplanung-etenr,
                       papiermaschine TYPE zle_lagerplanung-papiermaschine,
                       runnr TYPE zle_lagerplanung-runnr,
                       prio TYPE zle_lagerplanung-prio,
                       werk TYPE zle_lagerplanung-werk,
                       durchmesser TYPE zle_lagerplanung-durchmesser,
                       breite TYPE zle_lagerplanung-breite,
                       anzle TYPE zle_lagerplanung-anzle,
                       lgpla TYPE zle_lagerplanung-lgpla,
                       lgtyp TYPE zle_lagerplanung-lgtyp,
                       art TYPE zle_lagerplanung-art,
                       anzhoehe TYPE zle_lagerplanung-anzle,
                       fa TYPE zle_lagerplanung-fa,
    END OF t_zle_lagerplanung.
    DATA : it_zle_lagerplanung TYPE STANDARD TABLE OF t_zle_lagerplanung INITIAL SIZE 0,
                wa_zle_lagerplanung TYPE t_zle_lagerplanung.
    Here I am getting the data in internal table by using thiis select statement.
    SELECT kdauf kdpos etenr papiermaschine runnr prio werk durchmesser breite
                  anzle lgpla lgtyp art anzhoehe fa
    FROM    zle_lagerplanung INTO CORRESPONDING FIELDS OF TABLE it_zle_lagerplanung
    WHERE  kdauf IN s_kdauf
    AND       KDPOS IN s_kdpos
    AND      werk = p_werks.
    But while updating the particular field in zle_lagerplanung using this statement
    UPDATE zle_lagerplanung from table it_zle_lagerplanung.
    it is giving syntax error
    "The type of the database table and work area (or internal table)
    "IT_ZLE_LAGERPLANUNG" are not Unicode convertible. "
    Could any one help me out how to resolve this problem....
    Thanks in advance

    Dear Shayamal,
    XXX....are not Unicode convertible
    This  error comes while inserting or updating database and the fields are not matching between  data base table and structure .
    Check you fields of data base table and  "zle_lagerplanung" and struture "it_zle_lagerplanung" . There fields must match.
    thanks and regrds,
    Anup Banerjee

  • My ipad was stolen. I reported it to the Toronto Police and put it as lost mode. Now what?

    I reported it to the Toronto Police and put it as lost mode. Now what?

    If the iPad was running iOS 7, the thief will not ever be able to use it.
    iCloud: Find My iPhone Activation Lock in iOS 7
    http://support.apple.com/kb/HT5818
    Apple (and no one else) can not assist (with serial number or iCloud) in finding a lost or stolen iPad.
    Report to police along with serial number. Change all your passwords.
    These links may be helpful.
    How to Track and Report Stolen iPad
    http://www.ipadastic.com/tutorials/how-to-track-and-report-stolen-ipad
    Reporting a lost or stolen Apple product
    http://support.apple.com/kb/ht2526
    What to do if your iOS device is lost or stolen
    http://support.apple.com/kb/HT5668
    iCloud: Locate your device on a map
    http://support.apple.com/kb/PH2698
    iCloud: Lost Mode - Lock and Trace
    http://support.apple.com/kb/PH2700
    iCloud: Remotely Erase your device
    http://support.apple.com/kb/PH2701
    Report Stolen iPad Tips and iPad Theft Prevention
    http://www.stolen-property.com/report-stolen-ipad.php
    How to recover a lost or stolen iPad
    http://ipadhelp.com/ipad-help/how-to-recover-a-lost-or-stolen-ipad/
    How to Find a Stolen iPad
    http://www.ehow.com/how_7586429_stolen-ipad.html
    What NOT to do if your iPhone or iPad is lost or stolen
    http://www.tomahaiku.com/what-not-to-do-if-your-iphone-or-ipad-lost-or-stolen/
    Apple Product Lost or Stolen
    http://sites.google.com/site/appleclubfhs/support/advice-and-articles/lost-or-st olen
    Oops! iForgot My New iPad On the Plane; Now What?
    http://online.wsj.com/article/SB10001424052702303459004577362194012634000.html
    If you don't know your lost/stolen iPad's serial number, use the instructions below. The S/N is also on the iPad's box.
    How to Find Your iPad Serial Number
    http://www.ipadastic.com/tutorials/how-to-find-your-ipad-serial-number
    iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number
    http://support.apple.com/kb/HT4061
     Cheers, Tom

  • I need to  know the name of the database table and the fields in that table

    hi,
    i need to I need to  know the name of the database table and the fields in that table for the following fields of the front end .
    1) incident details.
    2) ownership details
    3) injury type
    4) % of investigation completed withen 7 days.
    5) count of incident type
    6) cost of workers compensation claim.
    7) injury resulting from for workers compensation claim
    8) investigation free text.
    9) investigation contribution factors.
    10) investigation root cause.
    11) investigation root cause free text
    12) employee risk assesment
    13) protential infrigment notice issued
    14) actual infrigment notice issued.
    15) actual infrigment notice reference number.
    16)vehicle damaged text.
    18) when the incident occured.
    thanks and regards,
    pronoy .

    Hello,
    Check CCIHT* under se16 and search for relevant information
    Thanks
    Jayakumar

  • When the Database startup and open? please please not alert log

    Hello all
    is there is a script or dinamic view which query what time the database startup and shutdown.
    please don't answer me with opent alert log, am looking for view or script only
    thank you
    regards

    You wrote you don't want to use the alert.log. But
    still this could provide all the information you want
    to have.
    If you dont want to use the alert.log because you
    need to query the information by using sql you may
    consider to access the alert.log via a external table.Even the alert log may not meet the new requirements of 'all startup and shutdown history'. In a typical shop, the alert log is periodically archived or wiped.
    The answer to the OPs question probably lies in creating a new table to store the v$instance information, and create a database startup and possibly a database shutdown trigger to fill that table.
    Or start using Grid Control which has that information tucked away in one of the internal sysman tables.

  • How to report print to the printer immediately and display the popup?

    Dear friends,
    I am running my report in background and displaying the confirm results on popup window and sending the results to printer,
    but now i want to send the results page to printer then  want to display the popup.
    i have writen my popup perform after printer perform only but its not working...when i am clossing the popup or came back from that popup then only the results sending to printer...
    How to report print to the printer immediately and display the popup?
    Thanks in advance
    Sridhar

    Hi Sudheer,
    I am using my print parameters like this :
        NEW-PAGE PRINT ON DESTINATION ws_printer
                             IMMEDIATELY 'X'
                             KEEP IN SPOOL 'X'
                             NEW LIST IDENTIFICATION 'X'
                             SAP COVER PAGE 'X'
                             ARCHIVE MODE '1'
                             LINE-COUNT 64
                             LINE-SIZE 170
                             NEW-SECTION
                             NO DIALOG.
    Then also its not printing immediatly.
    here one thing for displaying the popup i am using submit report(calling another report for popup purpose)
    before trigering the submit programe i need to print this.
    Thanks
    Sridhar.

  • Sample report for filling the database table with test data .

    Hi ,
    Can anyone provide me sample report for filling the database table with test data ?
    Thanks ,
    Abhi.

    hi
    the code
    data : itab type table of Z6731_DEPTDETAIL,
           wa type Z6731_DEPTDETAIL.
    wa-DEPT_ID = 'z897hkjh'.
    wa-DESCRIPTION = 'computer'.
    append wa to itab.
    wa-DEPT_ID = 'z897hkjhd'.
    wa-DESCRIPTION = 'computer'.
    append wa to itab.
    loop at itab into wa.
    insert z6731_DEPTDETAIL from wa.
    endloop.
    rewards if helpful

  • I am running Lightroom 6 in conjunction with 64 bit Photoshop CS6. I need to install Camera Raw 9 plus other relevan updates for the Adobe Design and Web Premium CS6 package. Running Adobe Application manager finds the relevant updates but won't download

    I am running Lightroom 6 in conjunction with 64 bit Photoshop CS6. I need to install Camera Raw 9 plus other relevan updates for the Adobe Design and Web Premium CS6 package. Running Adobe Application manager finds the relevant updates but won't download / install them. Clicking the update button results in an error message "Application Manager has stopped working". This is a windows system running 64 bit Windows 7

    update manually:
    pre cc updates:  http://www.adobe.com/downloads/updates/
    cc updates:  http://prodesigntools.com/adobe-cc-updates-direct-links-windows.html
    cc 2014 updates:  win (http://prodesigntools.com/adobe-cc-2014-updates-links-windows.html) / mac (http://prodesigntools.com/adobe-cc-2014-updates-links-mac.html)

  • How to configure Oracle forms/reports 10g to Oracle Database 10g

    Dear All,
    I have downloaded oracle Developer Suite 10g for microsoft Windows (CD1/CD2) from edelivery.oracle.com.
    I have also downloaded Oracle 10g xe edition from oracle.com.
    Both above software are on the same machine.
    Now, I have creaated new database, created few tablespaces,tables,indexes,functions etc on it. SID_NAME=xe.
    I want to configure both the software(connect them) so that i can generate some reports, create forms and applications(on the same machine not on network).
    How do i do that?
    Best Regards,

    did you set tns_admin? do you know what it's for?
    don't edit tnsnames.ora manually if you can help it.
    you have 2 tnsnames.ora. one is from the xe install. the other is from the developer suite install.
    what does the one for your developer suite look like?
    if you used the the network config assistant in a straightforward way, then it should end up with an entry similar to what you have in your tnsnames.ora from your xe installation.
    the netconfig assistant has a TEST step in it. did you try that? you might need to change the username/password when you test it.
    the main thing here is the tnsnames.ora. the way it will be located is in a particular order. it will check in this order, more or less
    1. in current working directory
    2. TNS_ADMIN defined by the session
    3. TNS_ADMIN defined as a global environment (in control panel)
    4. TNS_ADMIN defined in registry
    5. default location (network\admin directory).
    so if your developer says it can't resolve the name, then it means it is not defined in the tnsnames.ora it used. you need to determine which tnsnames.ora file it's using, and is it configured correctly.
    if you did not set tns_admin, check your E:\DevSuiteHome_1\NETWORK\ADMIN\tnsnames.ora
    this is the one developer will use by default.
    it should have an entry similar to the one from your xe install e.g.
    XE =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = oraclelaptop.yic.edu.sa)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = XE)
    then when you run forms/reports, you should connect as user/password@xe

  • Form & Reports Server uses the wrong alias (localhost.localdomain)

    We installed Oracle Application Server 9i (1.0.2.2.1) on a RedHat 7.1 machine. The database (8.1.7) is installed on another computer with RedHat 6.2 installed.
    At the installation something goes wrong. He took the localhost.localdomain as alias for the computername and inserted this in some scripts - a large part of them are APACHE scripts.
    Rerun the SSODATAN script solved the problem with the login server.
    Install.log contains no errors!
    But we have not found the points where the forms- and reportsserver is registerd.
    It is possible to edit this entries by hand or is there a possiblity to install the forms- and report server manually.
    Thx

    Hi,
    Its not possible to selectively install Forms and Reports, you will have to reinstall iAS.
    Thanks,
    Mathew

  • Can the database cache be installed w/ 9ias http server only install

    The 9ias 1.0.2.2 db cache is offered as an option only with the Enterprise install. This a 4.32 GB installation most of which I don't require like Forms, Reports, Discoverer etc.
    Is there a way for me to install just the 9ias http server and the db cache??
    Note, in the Enterprise install, even though you are given the option to deselect components , it has no effect. The installer still goes ahead and installs all the components.

    For Http Server without any other components, you can go for
    Core Edition of iAS10221 & during installation deselect
    Oracle9iAS Web cache from Component Configuration & Startup
    screen.

Maybe you are looking for

  • WebAPI or Repository

    I have multi-tiered application with SQL databases and MVC and SPA frontend.  Some of the data needed by my web application don't reside on the same SQL server while some reside on the same database but in a different schema.  The schema has differen

  • How to split shopping cart qty to create two PO

    Hello SRM guys Could you give me a tip to develop for this requirement? We use the classic scenario. My customer want to split shopping cart qty to create PO with different vendor. I know that buyer can change the shopping cart data in workarea. But

  • CS3 to CS5 - can't install upgrade

    I'm trying to install my PS CS5  Extended upgrade on my desktop running Vista. I now have CS3 Extended on  the machine and activated. When I try to install the CS5 upgrade, I  first get a message that no qualifying product is found on my machine.  As

  • Sound wrong after QT

    Okay, I have a couple .avi files that when played in either Quicktime or VLC they are fine, but once encoded and burnt to DVD using Toast 8, the sound is way off. Anyone have any idea what codec(if that is what that is) is missing? I thought I had em

  • C program not running from terminal as expected

    Hi everyone I am starting C programming as part of my university degree, I understand most of the content so far. I am compiling and running my program in Terminal and I am having a small amount of trouble with running it. Here is how I have set my p