Ask a Question related to Coldfusion Database Access, Design and Development.

  1. #1

    Default Fetch large data

    Hi,

    I want to start displaying data on a web page for a query that will return
    thousands of data. The problem is that the user does not want to wait till the
    query returns the whole record set. Also, if the user has a lower memory on his
    local machine, he runs out of memory. Can we start painting the page with the
    data in batches?


    rajsinha Guest

  2. Similar Questions and Discussions

    1. What to use instead of Excel to fetch data from a table?
      I am newbie and I have no idea how to this. I have a table (Excel File) about 1000 rows and 3 columns. I want to load this table to the Flash and...
    2. #38894 [NEW]: Can't fetch data(PHP+Birdstep RDM server across ODBC)
      From: m dot karoly at martondesign dot com Operating system: winxpprof PHP version: 5.1.6 PHP Bug Type: ODBC related Bug...
    3. How to High speed data fetch from DB ?
      I am not at all a DB expert but my question is that given that, queries to a DB are properly optimized, DB schema is proper & sufficient hardware...
    4. The IPC::ShareLite is very slow than fetch data from file ??
      time shmTest.pl .... 0.11u 0.02s 0:00.13 100.0% ---------------------------------------------------------------------------- --- time...
    5. Fetch Data From DB Into Array
      On Sun, 31 Aug 2003 22:33:50 +0100, "James" <graduate@dsl.pipex.com> wrote: You've now got at least five separate threads on this same issue...
  3. #2

    Default Re: Fetch large data

    There are at least two resource consumers when ColdFusion parses and executes a
    page. One is the time required to perform the queries, and the other is the
    rendering of the page, that is, creating the HTML. Surprisingly, the rendering
    can take much longer than the queries if you are dealing with a very large
    record set.

    I would suggest you turn on full ColdFusion debugging and see how long your
    queries are running. Subtract this from the total page execution time and you
    get your rendering time.

    Knowing what these numbers are will help define what problem to tackle. If
    the rendering is the issue, you may not want to waste time optimizing the
    queries.


    jdeline Guest

  4. #3

    Default Re: Fetch large data

    Thanks. I will find this out. I suppose I might be having a rendering issue,
    because users did complain having problems on lower memory user machines.

    But, thanks a lot. I will investigate further, and then come back.

    Raj

    rajsinha Guest

  5. #4

    Default Re: Fetch large data

    Lookup CFFLUSH
    SQLMenace Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139