Slow XSQL Servlet - any seetings that might improve the performance?

Hi,
I am using:
- oracle 10g
- XSQL 10.1.0.2.0
I am using the XSQLServlet to generate web pages(xsql + xsl).
For a certain sql execution it takes about 20 seconds(for 70 records retrieved from a table of 2,5 million records).
The exact same query executed in Toad takes 1 second - this is what intrigues me.
Is there any XSQL configuration to speed up?
My current configuration is like this:
default-fetch-size=50
result-cache-size=50
page-cache-size=25
stylesheet-cache-size=25
stylesheet-pool=initial 1, increase with 1
connection-pool=1, increase with 2Would you recommend any settings to boost up the performance of XSQLServlet?
Thank you.

The name of this forum is "SQL and PL/SQL" so your inquiry with respect to XSQL is off-topic.
If it is the SQL which is slow ... post it and the corresponding explain plan report. If not please change the subject to "Please Ignore" and post in a more appropriate forum.
Thank you.

Similar Messages

  • Time Machine not backing up.  Very slow, essentially hanging.  I have 10.7.5 Mac OS X Lion (11G63).  I have put in all updates.  I tried to put my folders into "private" in the Spotlight (b/c I read that might be the problem).  Still not working.

    Time Machine not backing up.  Very slow, essentially hanging.  I have 10.7.5 Mac OS X Lion (11G63).  I have put in all updates.  I tried to put my folders into "private" in the Spotlight (b/c I read that might be the problem).  Still not working.
    Thanks in advance for any help! 

    For all things Time Machine see Pondini's excellent information here...
    http://pondini.org/OSX/Home.html
    Start at Troubleshooting.

  • My sister gave me her 1st gen iPad to see if I could solve an issue.  It won't turn on, and when it's plugged into a power cord there is a slow pulsing sort of flash that happens on the screen....any ideas?

    My sister gave me her 1st gen iPad to see if I could solve an issue.  It won't turn on, and when it's plugged into a power cord there is a slow pulsing sort of flash that happens on the screen....any ideas?

    Try a Reset [Hold the Home and Sleep/Wake buttons down together for 10 seconds or so (until the Apple logo appears) and then release. When the screen goes blank power On again in the normal way.] It is absolutely/appsolutely safe! Now see if it charges normally and after a period try to turn it on again. If the batter has been drained it could take 20 minutes or so for it to show that it is charging.
    Also considering if the battery need replacing!

  • Any tips that might make auto brightness work?

    The auto brightness on my iPad Mini (iOS 7.0.4) does not work. I have tried everything. Resetting all settings to resetting network settings does not work for me. Any tips that might make auto brightness work?

    Auto brightness will not darken your screen when you enter a dark place until you lock/unlock the screen. If it did the screen would darken everytime something covered the light sensor (which is opposite the home button on the top of the screen next to the front camera).
    Autobrightness will automatically raise the brightness of the screen (slowly) when the ambient light brightens.

  • One of the key on my macbook pro is not working properly, can it be fixed by a cleaning spray or something. there is lot of dust in where I live and thought that might be the culprit. thanks Jason

    one of the key on my macbook pro is not working properly, can it be fixed by a cleaning spray or something. there is lot of dust in where I live and thought that might be the culprit. thanks Jason

    Don't use any cleaning spray. Wipe with a moist but not wet microfiber cloth.
    1. Reset SMC.     http://support.apple.com/kb/HT3964
        Choose the method for:
        "Resetting SMC on portables with a battery you should not remove on your own"
    2.Reset PRAM. http://support.apple.com/kb/PH4405

  • I installed Firefox 3.6. Since then, I am unable to open pdf documents in Firefox. I get a black page. I tried opening the same document in Internet Explorer. It worked fine. I recently installed Nuance's pdf reader and thought that might be the problem.

    I installed Firefox 3.6. Since then, I am unable to open pdf documents in Firefox. I get a black page. I tried opening the same document in Internet Explorer. It worked fine. I recently installed Nuance's pdf reader and thought that might be the problem. Uninstalled it. Still have the problem with Firefox.
    == This happened ==
    Every time Firefox opened

    How about if you right click on the PDF and select Save Link As..., and then open it locally from within Reader? Does it work ok then?  That might be a workaround until the issue within the browser is resolved.
    Rob Jaworski
    Intl Program Manager

  • Is There any way to improve the performance on this code

    Hi all can any one tell me how to improve the performance of this below code.
    Actually i need to calculate opening balance of gl account so instead of using bseg am using bsis
    So is there any way to improve this code performance.
    Any help would be appreciated.
    REPORT  ZTEMP5 NO STANDARD PAGE HEADING LINE-SIZE 190.
    data: begin of collect occurs 0,
           MONAT TYPE MONAT,
           HKONT TYPE HKONT,
           BELNR TYPE BELNR_D,
           BUDAT TYPE BUDAT,
           WRBTR TYPE WRBTR,
           SHKZG TYPE SHKZG,
           SGTXT TYPE SGTXT,
           AUFNR TYPE AUFNR_NEU,
           TOT   LIKE BSIS-WRBTR,
    end of collect.
    TYPES: BEGIN OF TY_BSIS,
           MONAT TYPE MONAT,
           HKONT TYPE HKONT,
           BELNR TYPE BELNR_D,
           BUDAT TYPE BUDAT,
           WRBTR TYPE WRBTR,
           SHKZG TYPE SHKZG,
           SGTXT TYPE SGTXT,
           AUFNR TYPE AUFNR_NEU,
    END OF TY_BSIS.
    DATA: IT_BSIS TYPE TABLE OF TY_BSIS,
          WA_BSIS TYPE TY_BSIS.
    DATA: TOT TYPE WRBTR,
          SUMA TYPE WRBTR,
          VALUE TYPE WRBTR,
          VALUE1 TYPE WRBTR.
    SELECTION-SCREEN: BEGIN OF BLOCK B1.
    PARAMETERS:  S_HKONT LIKE WA_BSIS-HKONT DEFAULT '0001460002' .
    SELECT-OPTIONS: S_BUDAT FOR WA_BSIS-BUDAT,
                    S_AUFNR FOR WA_BSIS-AUFNR DEFAULT '200020',
                    S_BELNR FOR WA_BSIS-BELNR.
    SELECTION-SCREEN: END OF BLOCK B1.
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF SCREEN-NAME = 'S_HKONT'.
          SCREEN-INPUT = 0.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    START-OF-SELECTION.
      SELECT MONAT
             HKONT
             BELNR
             BUDAT
             WRBTR
             SHKZG
             SGTXT
             AUFNR
             FROM BSIS
             INTO TABLE IT_BSIS
             WHERE HKONT EQ S_HKONT
             AND   BELNR IN S_BELNR
             AND   BUDAT IN S_BUDAT
             AND   AUFNR IN S_AUFNR.
    *  if sy-subrc <> 0.
    *    message 'No Data' type 'I'.
    *  endif.
      SELECT SUM( WRBTR )
             FROM BSIS
             INTO COLLECT-TOT
             WHERE HKONT EQ S_HKONT
             AND BUDAT < S_BUDAT-LOW
             AND AUFNR IN S_AUFNR.
    END-OF-SELECTION.
      CLEAR: S_BUDAT, S_AUFNR, S_BELNR, S_HKONT.
      LOOP AT IT_BSIS INTO WA_BSIS.
    IF wa_bsis-SHKZG = 'H'.
       wa_bsis-WRBTR = 0 - wa_bsis-WRBTR.
    ENDIF.
        collect-MONAT  = wa_bsis-monat.
        collect-HKONT  = wa_bsis-hkont.
        collect-BELNR  = wa_bsis-belnr.
        collect-BUDAT  = wa_bsis-budat.
        collect-WRBTR  = wa_bsis-wrbtr.
        collect-SHKZG  = wa_bsis-shkzg.
        collect-SGTXT  = wa_bsis-sgtxt.
        collect-AUFNR  = wa_bsis-aufnr.
        collect collect into  collect.
        CLEAR: COLLECT, WA_BSIS.
      ENDLOOP.
      LOOP AT COLLECT.
        AT end of HKONT.
          WRITE:/65 'OpeningBalance',
                 85  collect-tot.
          skip 1.
        ENDAT.
        WRITE:/06 COLLECT-BELNR,
               22 COLLECT-BUDAT,
               32 COLLECT-WRBTR,
               54 COLLECT-SGTXT.
        AT end of MONAT.
          SUM.
          WRITE:/ COLLECT-MONAT COLOR 1.
          WRITE:32 COLLECT-WRBTR COLOR 1.
          VALUE = COLLECT-WRBTR.
          SKIP 1.
        ENDAT.
        VALUE1 = COLLECT-TOT +  VALUE.
        AT end of MONAT.
          WRITE:85 VALUE1.
        ENDAT.
      endloop.
      CLEAR: COLLECT, SUMA, VALUE, VALUE1.
    TOP-OF-PAGE.
      WRITE:/06 'Doc No',
             22 'Post Date',
             39 'Amount',
             54 'Text'.
    Moderator message : See the Sticky threads (related for performance tuning) in this forum. Thread locked.
    Edited by: Vinod Kumar on Oct 13, 2011 11:12 AM

    Hi Ben,
    both BSIS selects would become faster if you can add Company Code BUKRS as 1st field of WHERE clause, because it's the 1st field of primary key and HKONT is the 2nd field of primary key.
    If you have no table index with HKONT as 1st field it's a full database access.
    If possible, try to add BUKRS as 1st field of WHERE clause, otherwise ask for an additional BSIS index at your basis team.
    Regards,
    Klaus

  • My iPod says to connect to iTunes, and then it crashes, error 3014, I've tried everything it says that might solve the error but nothing,

    my iPod says to connect to iTunes, and then it crashes, error 3014, I've tried everything it says that might solve the error but nothing

    Not knowing what everything is:
    Error 3194, Error 17, or "This device isn't eligible for the requested build" - Apple Support
    - Try another cable                                                       
    - Try on another computer                                                       
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar                                     

  • Function module or any BAPI that lets park the document in the transaction

    Function module or any BAPI that lets park the document in the transaction FBV1.
    I need to park the invoice by providing some test value in FBV1. I want to know is there any function module or BAPI that is used to park the doucument in transaction FBV1

    hi,
    Use the BAPI BAPI_INCOMINGINVOICE_PARK to park the Document
    Regards
    Sudheer

  • TS1717 Error message received "iTunes has stopped working" when plug my classic ipod to laptop running window 7. It was fine before. Any idea what might be the problem and how to get it fixed? thanks!

    I have received window error message "iTunes has stopped working" everytime I plug my classic ipod to the laptop which running window 7. iTunes was working fine with the same ipod, but starts to receive the error msg. after the second plug to update the music files this morning. All the music files were removed from the ipod. Any idea what might cause the problem and how to get it fixed? thanks!

    Thanks! i finished to run Check your iPod with Diagnostics Mode. here is results:
    Retract:15
    Reallocs: 0
    Pending Sectors:0
    Poweron Hours:556
    Start/Stop:5071
    Right now, i am runing Check iPod hard-drive for errors and will let you know if it gets ipod fixed or not

  • Is there any support that comes with the OnPlus ON100 devices

    Is there any support that comes with the OnPlus service, or just this forum?  I lost conectivity with all three of the ON100 devices that I had deployed several weeks ago shortly after a firmware upgrade according to the event logs.  Rebooting the devices have not helped.  Two of the sites have Cisco ASA firewalls, the other is 3rd party.         

    OnPlus is supported by the Small Business Support Center. Additionally, this forum allows you to interact directly with the OnPlus Team.
    Regarding the devices losing connectivity, have you attempted a cold reboot or resetting PoE, if applicable? In the new releases our TCP/UDP ports required have not changed. Have any network changes been made since that would block the required ports? Does the site have port scanning?
    If you can confirm the network changes and the device has been cold rebooted, the next step would be to reset the device. This is completed by holding down reset for 15 seconds. I would also recommend trying it at a different site/network to verify the network is not the issue.
    If you do not have a connection after these steps, the next step would be to RMA the device.
    Please let me know if you have any questions.
    Thanks,
    The OnPlus Team

  • I updated my ipod the other day and since i have been unable to open any apps that connect to the internet, its says "operation could not be completed. invalid argument". anybody help please?

    i updated my ipod the other day and since i have been unable to open any apps that connect to the internet, its says "operation could not be completed. invalid argument". anybody help please?

    Have yu tried the standard fixes:
    - Reset the iPod:
    Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    Restore the iPod via iTunes,  First from backup and if problems persist, restore to factory defaults/new iPod.

  • Are there any headphones that work from the 30 pin connector?

    Are there any headphones that work from the 30 pin connector? Neither of my kids auxilary ports on their iPhone/iPods work.  Need another way to use with headphones.

    http://www.sonicelectronix.com/item_14260_1PR2-Universal-iPod-Adapter-to-RCA-Aud io-Connection-Cable-w-Charging-Capabilities.html

  • HT1310 do you have any programs that can hold the start up manager everytime when I turn on the computer?

    Do you have any programs that can hold the start up manager everytime when I turn on the computer?

    I am not sure but if they do have the way to do it, I would like to try. But I prefered the easy way  ^_^
    I do have intel iMac and the version of OS X is 10.9.1 .
    Thank you  so much

  • Ways to improve the performance of my query?

    Hi all,
    I have created a multi provider which enables to fetch the data from 3 ods. And each ods contains huge amount of data. As a result my query performance is very slow..
    apart from creating indexes on ods? is there any other to be carried out to improve the performance of my query. Since all the 3 info providers are ods.
    thanxs
    haritha

    Haritha,
    If you still need more info, just have a look below:
    There are few ways your queries can be improved:
    1. Your Data volume in your InfoProviders.
    2. Dim table, how you have manage your objects into your dim table.
    3. Query that runs from multiprovider vs cube itself. when running from multiproviders at the time of execution the system has to create more tables hence the query performance will be affected.
    4. Aggregates into the cube, and they perfection of designing the aggregates.
    5. OLAPCHACHE
    6. Calculation formula
    etc.
    and also you can go thru the links below:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/cccad390-0201-0010-5093-fd9ec8157802
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/ce7fb368-0601-0010-64ba-fadc985a1f94
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/c8c4d794-0501-0010-a693-918a17e663cc
    Hope this helps you.
    ****Assign Points*******
    Gattu

Maybe you are looking for