Long page load / cfquery issue

Hi all,
I am developing a CFM page that is essentially a data dump of data that resides in our AS400.  This is really my first coldfusion project, so I am still learning a few ins and outs of the language.  I have a query, and it's taking over 15 minutes to return data.  Is there a tag I could use to speed this along, or is my syntax wrong, or any query optimization suggestions?  When I remove my <cfquery tag> everything loads fine. Any assistance would be appreciated.  Thanks in advance!!!  Here is my code:

It might help if I remember to paste in my code
<cfquery name="GetData" datasource="Web_Catalog" result="GetDataResult" >
        SELECT    DISTINCT WSFILE001.DEL1.DDEAL## AS DEAL## , WSFILE001.DEL1.DVER## AS VERSION##, WSFILE001.PRD1.PGROUP AS GROUP, WSFILE001.PRD1.PPROD## AS ITEM##,
        WSFILE001.PRD1.PDESC AS PRODUCT_DESC, WSFILE001.PRD1.PSIZE AS SIZE,
        (SELECT MAX(WSFILE001.COS1.CFOBP) FROM WSFILE001.COS1 WHERE WSFILE001.PRD1.PPROD## = WSFILE001.COS1.COSPRD AND WSFILE001.COS1.COSDAT < '1090505')   AS FOB,
        (SELECT MAX(WSFILE001.COS1.CFRTP) FROM WSFILE001.COS1 WHERE WSFILE001.PRD1.PPROD## = WSFILE001.COS1.COSPRD AND WSFILE001.COS1.COSDAT < '1090505') AS FREIGHT,
        WSFILE001.COS1.CPURCP AS PA,
        (SELECT MAX(WSFILE001.COS1.CDEIM) FROM WSFILE001.COS1 WHERE WSFILE001.PRD1.PPROD## = WSFILE001.COS1.COSPRD AND WSFILE001.COS1.COSDAT < '1090505') AS OCEAN_FREIGHT,
        WSFILE001.COS1.CDUTYP AS IMPORT_DUTY, WSFILE001.COS1.CPBANK AS BANK, WSFILE001.COS1.CMISC AS MISC, WSFILE001.COS1.COTAXP AS FEDERAL_TAXES, WSFILE001.COS1.CSTAXC AS STATE_TAXES,
        (SELECT MAX(WSFILE001.PRC1.PSEL8P) FROM WSFILE001.PRC1 WHERE WSFILE001.PRD1.PPROD## = WSFILE001.PRC1.PRCPRD AND WSFILE001.COS1.COSDAT < '1090505') AS LANDED,       
        (SELECT MAX(WSFILE001.PRC1.PSEL1P) FROM WSFILE001.PRC1 WHERE WSFILE001.PRD1.PPROD## = WSFILE001.PRC1.PRCPRD AND WSFILE001.COS1.COSDAT < '1090505') AS LIST_PRICE,
        WSFILE001.NDEP1.NPRC01 AS DA,
        ((SELECT MAX(WSFILE001.PRC1.PSEL8P) FROM WSFILE001.PRC1 WHERE WSFILE001.PRD1.PPROD## = WSFILE001.PRC1.PRCPRD AND WSFILE001.COS1.COSDAT < '1090505') - WSFILE001.NDEP1.NPRC01) AS NETCOST,
        WSFILE001.DEL1.DM1 AS QUANTITY
        FROM     WSFILE001.DEL1, WSFILE001.PDEL, WSFILE001.PRD1, WSFILE001.COS1, WSFILE001.PRC1, WSFILE001.NDEP1, WSFILE001.DIS1
        WHERE    
            WSFILE001.DEL1.DDEAL## > '71' AND
            WSFILE001.DEL1.DDEAL## < '1400' AND
            WSFILE001.PRD1.PGROUP = WSFILE001.PDEL.PDGRUP AND
            WSFILE001.PRD1.PPROD## = WSFILE001.COS1.COSPRD AND
            WSFILE001.PRD1.PPROD##  = WSFILE001.NDEP1.NETPRD AND   
            WSFILE001.PRD1.PPROD## = WSFILE001.PRC1.PRCPRD AND
            WSFILE001.PRD1.PSUPPL = WSFILE001.PDEL.PDCMP AND
        WSFILE001.DEL1.DDEAL## > 0 AND WSFILE001.DEL1.DDEAL## =
        COALESCE  (CASE WHEN WSFILE001.PDEL.PDX = 0 THEN NULL ELSE WSFILE001.PDEL.PDX END,
                              CASE WHEN WSFILE001.PDEL.PDW = 0 THEN NULL ELSE WSFILE001.PDEL.PDW END,
                              CASE WHEN WSFILE001.PDEL.PDV = 0 THEN NULL ELSE WSFILE001.PDEL.PDV END,
                              CASE WHEN WSFILE001.PDEL.PDU = 0 THEN NULL ELSE WSFILE001.PDEL.PDU END,
                              CASE WHEN WSFILE001.PDEL.PDT = 0 THEN NULL ELSE WSFILE001.PDEL.PDT END,
                              CASE WHEN WSFILE001.PDEL.PDS = 0 THEN NULL ELSE WSFILE001.PDEL.PDS END,
                              CASE WHEN WSFILE001.PDEL.PDR = 0 THEN NULL ELSE WSFILE001.PDEL.PDR END,
                              CASE WHEN WSFILE001.PDEL.PDQ = 0 THEN NULL ELSE WSFILE001.PDEL.PDQ END,
                              CASE WHEN WSFILE001.PDEL.PDP = 0 THEN NULL ELSE WSFILE001.PDEL.PDP END,
                              CASE WHEN WSFILE001.PDEL.PDO = 0 THEN NULL ELSE WSFILE001.PDEL.PDO END,
                              CASE WHEN WSFILE001.PDEL.PDN = 0 THEN NULL ELSE WSFILE001.PDEL.PDN END,
                              CASE WHEN WSFILE001.PDEL.PDM = 0 THEN NULL ELSE WSFILE001.PDEL.PDM END,
                              CASE WHEN WSFILE001.PDEL.PDL = 0 THEN NULL ELSE WSFILE001.PDEL.PDL END,
                              CASE WHEN WSFILE001.PDEL.PDK = 0 THEN NULL ELSE WSFILE001.PDEL.PDK END,
                              CASE WHEN WSFILE001.PDEL.PDJ = 0 THEN NULL ELSE WSFILE001.PDEL.PDJ END,
                              CASE WHEN WSFILE001.PDEL.PDI = 0 THEN NULL ELSE WSFILE001.PDEL.PDI END,
                              CASE WHEN WSFILE001.PDEL.PDH = 0 THEN NULL ELSE WSFILE001.PDEL.PDH END,
                              CASE WHEN WSFILE001.PDEL.PDG = 0 THEN NULL ELSE WSFILE001.PDEL.PDG END,
                              CASE WHEN WSFILE001.PDEL.PDF = 0 THEN NULL ELSE WSFILE001.PDEL.PDF END,
                              CASE WHEN WSFILE001.PDEL.PDE = 0 THEN NULL ELSE WSFILE001.PDEL.PDE END,
                              CASE WHEN WSFILE001.PDEL.PDD = 0 THEN NULL ELSE WSFILE001.PDEL.PDD END,
                              CASE WHEN WSFILE001.PDEL.PDC = 0 THEN NULL ELSE WSFILE001.PDEL.PDC END,
                              CASE WHEN WSFILE001.PDEL.PDB = 0 THEN NULL ELSE WSFILE001.PDEL.PDB END,
                              CASE WHEN WSFILE001.PDEL.PDA = 0 THEN NULL ELSE WSFILE001.PDEL.PDA END) 
        AND
        WSFILE001.DEL1.DVER##  > 0 AND WSFILE001.DEL1.DVER## =
        COALESCE  (CASE WHEN WSFILE001.PDEL.PDVX = 0 THEN NULL ELSE WSFILE001.PDEL.PDVX END,
                              CASE WHEN WSFILE001.PDEL.PDVX = 0 THEN NULL ELSE WSFILE001.PDEL.PDVW END,
                              CASE WHEN WSFILE001.PDEL.PDVX = 0 THEN NULL ELSE WSFILE001.PDEL.PDVV END,
                              CASE WHEN WSFILE001.PDEL.PDVU = 0 THEN NULL ELSE WSFILE001.PDEL.PDVU END,
                              CASE WHEN WSFILE001.PDEL.PDVT = 0 THEN NULL ELSE WSFILE001.PDEL.PDVT END,
                              CASE WHEN WSFILE001.PDEL.PDVS = 0 THEN NULL ELSE WSFILE001.PDEL.PDVS END,
                              CASE WHEN WSFILE001.PDEL.PDVR = 0 THEN NULL ELSE WSFILE001.PDEL.PDVR END,
                              CASE WHEN WSFILE001.PDEL.PDVQ = 0 THEN NULL ELSE WSFILE001.PDEL.PDVQ END,
                              CASE WHEN WSFILE001.PDEL.PDVP = 0 THEN NULL ELSE WSFILE001.PDEL.PDVP END,
                              CASE WHEN WSFILE001.PDEL.PDVO = 0 THEN NULL ELSE WSFILE001.PDEL.PDVO END,
                              CASE WHEN WSFILE001.PDEL.PDVN = 0 THEN NULL ELSE WSFILE001.PDEL.PDVN END,
                              CASE WHEN WSFILE001.PDEL.PDVM = 0 THEN NULL ELSE WSFILE001.PDEL.PDVM END,
                              CASE WHEN WSFILE001.PDEL.PDVL = 0 THEN NULL ELSE WSFILE001.PDEL.PDVL END,
                              CASE WHEN WSFILE001.PDEL.PDVK = 0 THEN NULL ELSE WSFILE001.PDEL.PDVK END,
                              CASE WHEN WSFILE001.PDEL.PDVJ = 0 THEN NULL ELSE WSFILE001.PDEL.PDVJ END,
                              CASE WHEN WSFILE001.PDEL.PDVI = 0 THEN NULL ELSE WSFILE001.PDEL.PDVI END,
                              CASE WHEN WSFILE001.PDEL.PDVH = 0 THEN NULL ELSE WSFILE001.PDEL.PDVH END,
                              CASE WHEN WSFILE001.PDEL.PDVG = 0 THEN NULL ELSE WSFILE001.PDEL.PDVG END,
                              CASE WHEN WSFILE001.PDEL.PDVF = 0 THEN NULL ELSE WSFILE001.PDEL.PDVF END,
                              CASE WHEN WSFILE001.PDEL.PDVE = 0 THEN NULL ELSE WSFILE001.PDEL.PDVE END,
                              CASE WHEN WSFILE001.PDEL.PDVD = 0 THEN NULL ELSE WSFILE001.PDEL.PDVD END,
                              CASE WHEN WSFILE001.PDEL.PDVC = 0 THEN NULL ELSE WSFILE001.PDEL.PDVC END,
                              CASE WHEN WSFILE001.PDEL.PDVB = 0 THEN NULL ELSE WSFILE001.PDEL.PDVB END,
                              CASE WHEN WSFILE001.PDEL.PDVA = 0 THEN NULL ELSE WSFILE001.PDEL.PDVA END)    
        AND 
        WSFILE001.DEL1.DVER##  > 0 AND WSFILE001.DEL1.DM1 =
        COALESCE  (CASE WHEN WSFILE001.DEL1.DVER## = 12 THEN WSFILE001.DEL1.DM12 ELSE NULL END,
                              CASE WHEN WSFILE001.DEL1.DVER## = 11 THEN WSFILE001.DEL1.DM11 ELSE NULL END,
                              CASE WHEN WSFILE001.DEL1.DVER## = 10 THEN WSFILE001.DEL1.DM10 ELSE NULL END,
                              CASE WHEN WSFILE001.DEL1.DVER## = 9 THEN WSFILE001.DEL1.DM9 ELSE NULL END,
                              CASE WHEN WSFILE001.DEL1.DVER## = 8 THEN WSFILE001.DEL1.DM8 ELSE NULL END,
                              CASE WHEN WSFILE001.DEL1.DVER## = 7 THEN WSFILE001.DEL1.DM7 ELSE NULL END,
                              CASE WHEN WSFILE001.DEL1.DVER## = 6 THEN WSFILE001.DEL1.DM6 ELSE NULL END,
                              CASE WHEN WSFILE001.DEL1.DVER## = 5 THEN WSFILE001.DEL1.DM5 ELSE NULL END,
                              CASE WHEN WSFILE001.DEL1.DVER## = 4 THEN WSFILE001.DEL1.DM4 ELSE NULL END,
                              CASE WHEN WSFILE001.DEL1.DVER## = 3 THEN WSFILE001.DEL1.DM3 ELSE NULL END,
                              CASE WHEN WSFILE001.DEL1.DVER## = 2 THEN WSFILE001.DEL1.DM2 ELSE NULL END,
                              CASE WHEN WSFILE001.DEL1.DVER## = 1 THEN WSFILE001.DEL1.DM1 ELSE NULL END)
        AND       
        WSFILE001.NDEP1.NPRC01 = 
        COALESCE    (CASE  WHEN  WSFILE001.NDEP1.NPRC01 > MIN(WSFILE001.NDEP1.NPRC02, WSFILE001.NDEP1.NPRC03, WSFILE001.NDEP1.NPRC04, WSFILE001.NDEP1.NPRC05, WSFILE001.NDEP1.NPRC06, WSFILE001.NDEP1.NPRC07,
                                WSFILE001.NDEP1.NPRC08, WSFILE001.NDEP1.NPRC09, WSFILE001.NDEP1.NPRC10) THEN WSFILE001.NDEP1.NPRC01 ELSE NULL END,
             CASE WHEN  WSFILE001.NDEP1.NPRC02 > MIN(WSFILE001.NDEP1.NPRC01, WSFILE001.NDEP1.NPRC03, WSFILE001.NDEP1.NPRC04, WSFILE001.NDEP1.NPRC05, WSFILE001.NDEP1.NPRC06, WSFILE001.NDEP1.NPRC07,
                                WSFILE001.NDEP1.NPRC08, WSFILE001.NDEP1.NPRC09, WSFILE001.NDEP1.NPRC10) THEN WSFILE001.NDEP1.NPRC01 ELSE NULL END,
             CASE WHEN  WSFILE001.NDEP1.NPRC03 > MIN(WSFILE001.NDEP1.NPRC01, WSFILE001.NDEP1.NPRC02, WSFILE001.NDEP1.NPRC04, WSFILE001.NDEP1.NPRC05, WSFILE001.NDEP1.NPRC06, WSFILE001.NDEP1.NPRC07,
                                WSFILE001.NDEP1.NPRC08, WSFILE001.NDEP1.NPRC09, WSFILE001.NDEP1.NPRC10) THEN WSFILE001.NDEP1.NPRC01 ELSE NULL END,
             CASE WHEN  WSFILE001.NDEP1.NPRC04 > MIN(WSFILE001.NDEP1.NPRC01, WSFILE001.NDEP1.NPRC02, WSFILE001.NDEP1.NPRC03, WSFILE001.NDEP1.NPRC05, WSFILE001.NDEP1.NPRC06, WSFILE001.NDEP1.NPRC07,
                                WSFILE001.NDEP1.NPRC08, WSFILE001.NDEP1.NPRC09, WSFILE001.NDEP1.NPRC10) THEN WSFILE001.NDEP1.NPRC01 ELSE NULL END,
             CASE WHEN  WSFILE001.NDEP1.NPRC05 > MIN(WSFILE001.NDEP1.NPRC01, WSFILE001.NDEP1.NPRC02, WSFILE001.NDEP1.NPRC03, WSFILE001.NDEP1.NPRC04, WSFILE001.NDEP1.NPRC06, WSFILE001.NDEP1.NPRC07,
                                WSFILE001.NDEP1.NPRC08, WSFILE001.NDEP1.NPRC09, WSFILE001.NDEP1.NPRC10) THEN WSFILE001.NDEP1.NPRC01 ELSE NULL END,
             CASE WHEN  WSFILE001.NDEP1.NPRC06 > MIN(WSFILE001.NDEP1.NPRC01, WSFILE001.NDEP1.NPRC02, WSFILE001.NDEP1.NPRC03, WSFILE001.NDEP1.NPRC04, WSFILE001.NDEP1.NPRC05, WSFILE001.NDEP1.NPRC07,
                                WSFILE001.NDEP1.NPRC08, WSFILE001.NDEP1.NPRC09, WSFILE001.NDEP1.NPRC10) THEN WSFILE001.NDEP1.NPRC01 ELSE NULL END,
             CASE WHEN  WSFILE001.NDEP1.NPRC07 > MIN(WSFILE001.NDEP1.NPRC01, WSFILE001.NDEP1.NPRC02, WSFILE001.NDEP1.NPRC03, WSFILE001.NDEP1.NPRC04, WSFILE001.NDEP1.NPRC05, WSFILE001.NDEP1.NPRC06,
                                WSFILE001.NDEP1.NPRC08, WSFILE001.NDEP1.NPRC09, WSFILE001.NDEP1.NPRC10) THEN WSFILE001.NDEP1.NPRC01 ELSE NULL END,
             CASE WHEN  WSFILE001.NDEP1.NPRC08  > MIN(WSFILE001.NDEP1.NPRC01, WSFILE001.NDEP1.NPRC02, WSFILE001.NDEP1.NPRC03, WSFILE001.NDEP1.NPRC04, WSFILE001.NDEP1.NPRC05, WSFILE001.NDEP1.NPRC06, 
                                WSFILE001.NDEP1.NPRC07, WSFILE001.NDEP1.NPRC09, WSFILE001.NDEP1.NPRC10) THEN WSFILE001.NDEP1.NPRC01 ELSE NULL END,
             CASE WHEN  WSFILE001.NDEP1.NPRC09  > MIN(WSFILE001.NDEP1.NPRC01, WSFILE001.NDEP1.NPRC02, WSFILE001.NDEP1.NPRC03, WSFILE001.NDEP1.NPRC04, WSFILE001.NDEP1.NPRC05, WSFILE001.NDEP1.NPRC06, 
                                WSFILE001.NDEP1.NPRC07, WSFILE001.NDEP1.NPRC08, WSFILE001.NDEP1.NPRC10) THEN WSFILE001.NDEP1.NPRC01 ELSE NULL END,
             CASE WHEN  WSFILE001.NDEP1.NPRC10  > MIN(WSFILE001.NDEP1.NPRC01, WSFILE001.NDEP1.NPRC02, WSFILE001.NDEP1.NPRC03, WSFILE001.NDEP1.NPRC04, WSFILE001.NDEP1.NPRC05, WSFILE001.NDEP1.NPRC06,
                                WSFILE001.NDEP1.NPRC07, WSFILE001.NDEP1.NPRC08, WSFILE001.NDEP1.NPRC09) THEN WSFILE001.NDEP1.NPRC01 ELSE NULL END)
    ORDER BY DEAL##
</cfquery>

Similar Messages

  • Android long page loading

    I have a long page with buttons that change an object from one state to another.
    This does not work until the entire page has been viewed.
    Navigate to the page, and the buttons don't work. Scroll to the bottom and now they work.
    I'm sure i missed the memo on this. Is there a resolve/workaround?

    The primary reason your site loads slowly is the amount of unnecessary image data.
    When an image is brought into Muse via File:Place (or import in a slideshow) the exact size of the image is dictated by it's size in the Muse Design view and Muse will resize the image to that exact size during Publish/Export/Upload and encode as JPEG when possible, otherwise PNG.
    When an image is brought in via import to be a background fill, Muse may or may not resize the image smaller. If the image is a background on a object that contains text or has other items on top of it, then the item may change height (or in some cases both height and width) in the browser due to changes in set layout between browsers, dynamic content, or other changes. When using background images the task currently falls to the Muse user to size the image appropriately before importing it into Muse. (That's something I'd like to see us revisit for the next release of Muse.)
    Many of the images on your home page are background images that are much larger (in terms of dimensions) than they appear on the web page. There are also a few images with transparent masks that result in the images being export as PNG. If these images where opaque (with white backgrounds) Muse could convert them to JPEG and they'd likely be 1/5th their current file size, or less. If they are resized to the pixel dimensions they're being used at in Muse, they'd likely drop by an additional factor of 10 (or more) in size.
    For example, the Mirage Tandem Island sailboard image (tendem-island-studio-3-4-full.png) on the home page is currently a 3.1 Mb PNG image that 2177x3000 pixels in dimensions. If a white background is added to the image and it's resized to 135x186 (the size it's being used at) and Saved for Web from Photoshop as a high quality JPEG the new file is 7k.

  • Long page loads - spinny icon - constantly

    I know this problem is probably unique to me, but Dreamweaver
    CS3 cannot make a simple change to a page, even when adding text
    without the "spinny" please wait icon (the rainbow colored one on
    Mac) -- I'm fully updated, I'm running a dual-core 2.66GHZ with 3
    GB of ram.. Mac OS 10.4.11 --- I have troubleshooted by NOT
    connecting to the remote FTP site.. the stalling still happens, I
    do have "put on save" UNCHECKED so it doesn't even connect to any
    FTP site at all, yet it waits with the spinny icon after any change
    I do. I guess my question is: "Does anyone have any idea how
    dreamweaver reloads a page, or any debugging that can be done
    through dreamweaver as to why it's stalling contantly"?

    We had the same problem. We got the best results from these changes:
    1. Optimize your media. Compress your audio farther than Apple recommends.
    2. If you are specifying any audio files in the XHTML, remove them. Code like this was especially problematic for us:
    <audio id="myid" src="audio/myaudio.m4a" ibooks:pause-readaloud="true" />
    3. If you are using javascript, carefully consider where to reference the javascript file, in the head, body or foot. They cause different perceptions of page loading.

  • OBIEE 11g Dashboard page load performance issue

    Hi All,
    One of my dashboard is taking for 5 to 15 min to load,Once the dashboard is displayed reports are coming fast. Dashboard has 5 pages.
    Eg:
    When I click on Dashboard -> XXXX Dashboard. It took 5 to 15 min to display the dashboard page. Reports are coming fast once the page is loaded.
    Please help me on this.
    Regards,
    Hari

    Cool,
    Thank you for sharing the opinions of you.
    My English i'snt so good. May not have expressed myself correctly.
    In response to my post, I said that "OTHER" point which should also be evaluated is the environment you are using. not that this point is paramount.
    Since the OBIEE is generated queries, the evaluation of queries generated and sent the data sources for sure should be evaluated.
    thank you guys

  • Interactive "on page load" animations in swf get messed up if clicked too fast

    interactive "on page load" animations in swf get messed up if I click too fast "next page" or "previous page".
    It seemes it can't manage on "page load" animations so fast, so as a result i have mixed animations for example of page1 and page2.
    if page1 has animation1 and 2 and i clicked next page, the next animation to appear is number 3 of page 2 , instead of number 1 which must be the first one to be triggered.
    This only happens if i click fast and several times the "next page" or "previous page.

    I have to say what you are trying might not be the best technique. The show hide might work ok for one or two items on a page but when you use it in the manner you are you are going to have the issues that you are now having...not to mention longer page loading do to larger file size of the page. My suggestion is to look into jquery and there are many plugins that can be modded to look the way you want however perform ten times better then using AP divs with show/hide.
    Here is one example that I found of a jquery plugin. There  plugin after plugin on the web for every scenario and they all can be modded to fit you needs. Do a search and you will eventually find something that fits your needs.
    http://www.twospy.com/galleriffic/#7
    http://www.twospy.com/galleriffic/example-2.html

  • Home page loading takes longer in a JSF

    My application takes a little longer to load its home page when a user try to access the site. This delay in getting the home page loaded for the
    first time happens to each user accessing the site. So we thought it would be the session scoped managed beans that we use in our application causing
    the issue. But we checked the session scoped bean, which are not doing any particular job to slow down the process. Then we placed a phaselistener and
    got the following printed in console. Doesent it shows that the request for home page goes twice through the JSF life cycle? Is it this that slows down
    the home page access for the first time. If so why should it go through the life cycle twice?
    14:06:45,359 INFO [Engine] BEFORE - RESTORE_VIEW 1
    14:06:45,421 INFO [Engine] AFTER - RESTORE_VIEW 1
    14:06:45,484 INFO [Engine] BEFORE - RENDER_RESPONSE 6
    14:06:47,437 INFO [STDOUT] <- Song List in Memory -> starting
    14:06:47,484 INFO [STDOUT] ################## INITIALIZING ALL URLS FOR ARTIST SEARCH ###########################..
    14:06:48,906 INFO [STDOUT] Processing ALL URLS FOR ARTIST SEARCH
    14:06:50,328 INFO [Engine] AFTER - RENDER_RESPONSE 6
    14:06:50,562 INFO [Engine] BEFORE - RESTORE_VIEW 1
    14:06:50,562 INFO [Engine] AFTER - RESTORE_VIEW 1
    14:06:50,562 INFO [Engine] BEFORE - RENDER_RESPONSE 6
    14:06:50,609 INFO [Engine] AFTER - RENDER_RESPONSE 6
    I'm new to JSF and has to support an application developed in JSF. Any inputs on this is appreciated.
    Thanks in advance.

    download google chrome,  I bet you it will open faster.   probably just an IE thing. 

  • Some web pages take long to load

    I just recently got my mac and i like it better than my PC. There is only one problem I run into. I have noticed that some web pages take long to load and once they are loaded i try scrolling down or up and the web page lags big time. Also the grapics are not all that great. My PC runs the pages just fine. This is not a problem for all web pages but only a few. Mainly I see the problem on some myspace profiles. I was just wanted to see if anyone knows why I am having this problem.
    imac intel core duo   Mac OS X (10.4.6)  

    Welcome to the discussions!
    It is slower in a measureable sense, or just a "seat of the pants" feeling?
    Go to PC Pitstop and run their test. If you are getting the bandwidth that you are paying for, then it is an issue with your broswer.
    I do not like Safari. It is slower than Camino, especially in conjunction with CamiTools. Safari is a memory hog and grabs CPU cycles like nobody's business. I have never had any issues with either Camino or Firefox. Either are much better than Safari, IMO.
    If you miss the look of Safari, there are skins and even a great RSS reader that can be added to Firefox called Sage. It offers better RSS integration than Safari IMO.
    In my experience, Macs just render pages slower than PCs due to poor coding or IE specific coding that lazy web authors. Safari is one of the most standards compliant browsers out there, but if the pages are coded poorly or browser specific, then there is nothing that Safari can do about it.
    You can take a look at some settings, but let us know what speeds you are paying for from your ISP and compare those to the actual speeds. Then we can talk about possible solutions.

  • WRT54GS2 - Page taking too long to load?

    Recently our Internet Service Provider turned our internet back on. About a day or two after using the internet, I've been noticing problems with slow internet connection. At times it will load fast, and other times it'll take a little bit too long to load.
    For example, I had a couple tabs open this morning and tried to get on a website in a different tab. The page was taking so long to load that it gave up and I got the message "Unable to connect to the Internet".
    But I have internet. 
    On my taskbar, there's an icon in the bottom right corner showing that I have internet connection. 
    Other times I'll try to load a page and it's just blank, and in the corner of the page's tab, there's just an icon of a white sheet of paper followed by the web title.
    How come some pages are taking too long to load and others are loading just fine?
    Additional detail if it helps:
    I unplugged the power cord from my router and plugged it back in to try and fix it and that didn't work.
    My second and third attempt, I refreshed my router. Still nothing.
    Also, I have a secure network, password protected.
    There have been no severe storms recently that could have messed with the router.
    What can I do to fix this issue of a slow loading page?

     Hi ashtonlevry, it looks like your router has a messed  up settings right now. That could be because you had it on stand by for a while since you said that your ISP has just turned your connection back on.
    It's actually best for you to just reset the device back to the default settings and reinstall it afterwards.
    To do the proper reset :
    1. Press and hold the reset button at the back of the router for 30 seconds while the device is on.
    2. Release the button and unplug or power off the device.
     Once done, reinstall the settings.
     For Cable connection, check this link, http://kb.linksys.com/Linksys/ukp.aspx?vw=1&docid=0ff4c94586a345d082828ec2161aaecf_3686.xml&pid=80&r...
    For DSL connection, here's the link, http://kb.linksys.com/Linksys/ukp.aspx?vw=1&docid=9017a6f6bece444dbb4a0746eb87682a_2210.xml&pid=80&r...
    To set up the wireless connection,  here's the link, http://kb.linksys.com/Linksys/ukp.aspx?vw=1&docid=2bf7dc19b4a94d03b0fd91f9ce426e8a_Manually_Setting_...
    Hope these steps help.

  • I'm using Firefox 3.6.23 on my windows 2000 and lately i've been having issues with web pages loading and need help figuring out why.

    Some of the issues : '''1'''. Page loads blank showing web address in tab. Try reloading usually with no results.(problem have the most!) '''2'''. Message appears "problem loading page, server not found" (diff times & diff websites). '''3.''' Pg with msg "oops link broke, DNS error, server not found" then lists suggested links to sites for fix though all links connect to site IGEARED.COM. (new issue) I don't know what to do please help me identify and fix my issue(s) in english, kind of a newbie : ). thx

    Try this.
    Type in the address bar about:config.
    Accept the warning.
    In the page that appears, in the Filter box, type network.http.max-connections. Change the value to 32 (which is probably set to 256 in your case).
    Close that page. Restart the browser.

  • Issue homepage custom report doesnot load on page load

    Hi Gurus,
    I have created custom report and displayed the same report on the main homepage and Issue homepage. For the main homepage the report is displayed properly on page load but on the issue homepage it does not automatically load on page load.
    It loads the following message:
    Generating analysis... Click here to view the results
    Once i click on the link it then loads the report. Can anyone offer a suggestion to resolve this problem?

    I believe the answer to your question was posted in this thread -:
    Custom Reports to Homepage
    Regards,
    Cameron

  • Web pages loading with a long wait period

    Hello
    I have just i have just installed windows server 2012 R2 on my new PC
    Here is my configuration:
    Core i7 3370
    4 GB RAM
    1GB Graphics
    I am using Netgear wireless adapter WNA3100
    Internet connection seems to be OK, download is OK
    However web pages are loading very slowly on first load and then on subsequent loads it is more rapid.
    Do i need to do any additional config to solve this issue?
    Thanks

    Hello
    I have the same latency issue with all web pages on this server (firefox, IE and chrome)
    on my laptop which uses the same connection web pages load instantly
    I have a 2mbps internet connection
    in internet download manager i have a download rate of 225 kbps
    below is the tracert result for one of my website http://www.newturf.com:
    Microsoft Windows [Version 6.3.9600]
    (c) 2013 Microsoft Corporation. All rights reserved.
    C:\Users\Administrator>tracert newturf.com
    Tracing route to newturf.com [109.104.87.150]
    over a maximum of 30 hops:
      1     *        *        *     Request timed out.
      2    18 ms    18 ms    28 ms  197.226.32.1
      3   223 ms   113 ms    88 ms  196.20.255.10
      4    23 ms    22 ms    18 ms  tengig4-1-tr.telecomplus.net [196.20.254.169]
      5   258 ms   257 ms   255 ms  81.52.188.125
      6   306 ms   259 ms   291 ms  gigabitethernet13-2-1.marcr2.Marseille.opentrans
    it.net [193.251.133.209]
      7   276 ms   322 ms   326 ms  tengige0-9-0-9.pastr1.Paris.opentransit.net [193
    .251.128.242]
      8   270 ms   275 ms   276 ms  telia-3.GW.opentransit.net [193.251.250.222]
      9   262 ms   261 ms   261 ms  prs-bb1-link.telia.net [213.155.132.192]
     10   293 ms   282 ms   272 ms  ldn-bb1-link.telia.net [80.91.247.7]
     11   293 ms   277 ms   270 ms  ldn-b5-link.telia.net [80.91.246.145]
     12   295 ms   279 ms   275 ms  hosteurope-ic-143126-ldn-b5.c.telia.net [213.248
    .96.50]
     13   288 ms   274 ms   276 ms  109.104.95.102
     14   275 ms   315 ms   273 ms  cr5-cr4.core.webfusion.com [109.104.95.145]
     15   302 ms   276 ms   276 ms  cr4-ld4.core.webfusion.com [109.104.95.142]
     16   275 ms   276 ms   275 ms  ds7073.dedicated.turbodns.co.uk [109.104.87.150]
    Trace complete.
    Is there any config i need to make for DNS?

  • Firefox 3.6.16 won't keep the "custom settings for history", thus causing page-load issues - any clue how to make it "stick"?

    Ever since I updated to Firefox 3.6.x I am getting constant page-load errors on apps in Facebook. I've cleared the history, the cache, cookies... and will literally set it for the "custom history settings" in my tools/options/privacy tab, reload the page, it's fine. I go to another page and come back to the app (same window) and get the error message again. Back to tools/options/privacy and "Remember History" is showing, rather than the custom settings. This is happening incessantly.

    I also have this problem and it just started in the last week or so. It seems to be dependent on my home network and the problem only exists with firefox. I have used chrome and IE8 with no issues. I can verify tomorrow that it only exists in my network but one thing I was able to test is that the problem exists even on my linux boot. I am totally dumbfounded with this problem and I can't find anything that will allow the gmail page to load. All other pages I have tried load fine, all be it a little slower than normal but they load. If anyone knows of a difference between firefox and all other browsers on how it goes through the router I would appreciate the info cause I don't know of any differences.

  • Pages loading - but 'loading' icon no longer spins

    I've just noticed that the loading icon (in the address bar) is no longer spinning when a page is loading, in Safari 4.0.5. Pages load OK, and - it seems - no slower than usual, but what happened to the spinning progress cog? Resetting Safari makes no difference. Anyone else noticed the same thing?

    HI,
    That feature is no longer available in Safari but from the Safari Menu Bar click View/Show Status Bar.
    You can see the page loading activity there. (Bottom of the Safari window). Or, again from the Menu Bar click Window/Activity
    Carolyn

  • Why does it take so long to load a web page on my iPad

    Why does it take so long to load a web page on my new ipad wifi

    This is probably not a problem with the iPad, but with the wi-fi. If your internet connection and/or wi-fi speeds are slow, then loading web pages will be slow. If I was you, I would research different kinds of wireless routers to find the fastest one in your price range, and also research different kinds of modems.

  • Firefox is taking way too long to load pages. I have a very fast internet connection but firefox takes forever to load websites. At first it worked fine and very fast but now very slow??

    firefox is taking way too long to load pages. I have a very fast internet connection but firefox takes forever to load websites. At first it worked fine and very fast but now very slow??

    Hi there!
    do you test other browsers?
    i suggest to make a clean install of newer version of Firefox like v8.0.

Maybe you are looking for

  • Can I reformat the space created by a single tap of the space bar?

    Can I reformat the size of the space created by a single tap of the space bar? What I would like to do is have the space bar create a double space [with just one tap of the space bar] between each word in the current document I am creating.

  • Store template in the cloud

    How can i store my own created numbers template in the cloud for further use with my other devices (e.g. ipad, iphone) ?

  • Incorrect overhead assigned in the SO

    Hi gurus good day: I have a ilogic issue in one of my costed orders... We did the cost of the "Y" order the day 8-OCT, when I was checking the sales order costing with the material 2812 in the tx va03 I can see the correct cost for BOM, but I can see

  • Where did Designer 1.3.2 to 6 upgrade download go?

    Hello, The OTN downloads page for Designer used to have a download related to upgrading Designer 1.32 to 6.0 which has now disappeared. Where can I get hold of the r132to60 software? Thanks Ian

  • FI&CO Urgent......................

    hey guys, pls tell me how to extract the data from FI & Co to bw. i received a doc wherein they have provided 2 tcodes which was inbuilt by our company, one is for p&l summary fiscal year report and second one is orders report. pls tell me what r the