Hi Josh,

You could try doing a <cfflush> every 200 lines or so and see if that fixes the problem. If you're doing a cfloop its easy. Something like...

<cfset counter = 0>

<cfoutput>

  <cfloop query="MyQuery">

    #MyOutputLine#

    <cfset counter = counter + 1>

    <cfif counter GTE 200>
      <cfflush>
      <cfset counter = 0>
    </cfif>

  </cfloop>

</cfoutput>

If your using a <cfoutput query="MyQuery"> you'll have to test against MyQuery.RecordCount.

hope that helps.

Cheers,

Adam
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Reply via email to