Re: [KCFusion] ColdFusion Query Times Out

2003-07-23 Thread Adaryl Wakefield



Mind if we see the query?
A.

  - Original Message - 
  From: 
  Bruce Phillips 
  
  To:  
  
  Sent: Wednesday, July 23, 2003 11:25 
  AM
  Subject: [KCFusion] ColdFusion Query 
  Times Out
  
  I have a complex query on a template that times out every 
  time after about 25 seconds. I've tried setting the timeout attribute in 
  the CFQUERY tab, but that attribute appears to be ignored. 
  
  This is the error message I get:
  
  Error Causing Template: 
  /sTFMPresenter/Admin/ReportReviewConf.cfm URL Variables Provided: 
  confid=121RequestTimeOut=10 Error Message: The request has 
  exceeded the allowable time limit Tag: CFQUERY 
  I don't have access to the ColdFusion Administrator since we 
  have a separate web hosting company.
  
  Any advice on how I can get long complex queries to work 
  would be appreciated.
  
  Thank You,
  
  Bruce
  
  
  
  Bruce PhillipsSociety of Teachers of Family 
  Medicine913-906-6000 ext 5405[EMAIL PROTECTED]


Re: [KCFusion] ColdFusion Query Times Out

2003-07-23 Thread Bruce Phillips



Here is the query. I'm able to run this successfully on 
my ColdFusion Development Server, just not on my web host's ColdFusion 
Server.

cfquery datasource="#dsn#" name="GetSubmissions" 
timeout="260"select submissions.*, presenters.*, 
categories.catname_display, 
conferences.confName_display,conferences.confid,Submissions2Presenters.mainpresenterfrom 
submissions JOIN conferences on submissions.confid = 
conferences.confidJOIN categories on submissions.catid = 
categories.catidJOIN Submissions2Presenters on 
Submissions2Presenters.Submissionid = Submissions.submissionidJOIN 
presenters ON Submissions2Presenters.presenterID = presenters.presenterid 
where submissions.confid = cfqueryparam cfsqltype="CF_SQL_INTEGER" 
value="#url.confid#"AND submissions.cancelled= cfqueryparam 
cfsqltype="CF_SQL_BIT" value="0"AND submissions.rejected= 
cfqueryparam cfsqltype="CF_SQL_BIT" value="0"order by 
categories.catname_display, submissions.submissionID, assigned_session, 
Submissions2Presenters.MainPresenter DESC, lastname 
,firstname/cfquery


Bruce PhillipsSociety of Teachers of Family Medicine913-906-6000 
ext 5405[EMAIL PROTECTED] 
[EMAIL PROTECTED] 07/23/03 12:01PM 
Mind if we see the query?
A.

  - Original Message - 
  From: 
  Bruce Phillips 
  
  To:  
  Sent: Wednesday, July 23, 2003 11:25 
  AM
  Subject: [KCFusion] ColdFusion Query 
  Times Out
  
  I have a complex query on a template that times out every 
  time after about 25 seconds. I've tried setting the timeout attribute in 
  the CFQUERY tab, but that attribute appears to be ignored. 
  
  This is the error message I get:
  
  Error Causing Template: 
  /sTFMPresenter/Admin/ReportReviewConf.cfm URL Variables Provided: 
  confid=121RequestTimeOut=10 Error Message: The request has 
  exceeded the allowable time limit Tag: CFQUERY 
  I don't have access to the ColdFusion Administrator since we 
  have a separate web hosting company.
  
  Any advice on how I can get long complex queries to work 
  would be appreciated.
  
  Thank You,
  
  Bruce
  
  
  
  Bruce PhillipsSociety of Teachers of Family 
  Medicine913-906-6000 ext 5405[EMAIL PROTECTED]


RE: [KCFusion] ColdFusion Query Times Out

2003-07-23 Thread bnnwabu









You do realize the timeout attribute is in
milliseconds? You are telling it to timeout after 260 milliseconds. 



-Original Message-
From: Bruce Phillips
[mailto:[EMAIL PROTECTED] 
Sent: Wednesday, July 23, 2003
11:59 AM
To: [EMAIL PROTECTED]
Subject: Re: [KCFusion] ColdFusion
Query Times Out





Here is the query. I'm able
to run this successfully on my ColdFusion Development Server, just not on my
web host's ColdFusion Server.











cfquery
datasource=#dsn# name=GetSubmissions
timeout=260
select submissions.*, presenters.*, categories.catname_display,
conferences.confName_display,conferences.confid,Submissions2Presenters.mainpresenter
from submissions 
JOIN conferences on submissions.confid = conferences.confid
JOIN categories on submissions.catid = categories.catid
JOIN Submissions2Presenters on Submissions2Presenters.Submissionid =
Submissions.submissionid
JOIN presenters ON Submissions2Presenters.presenterID = presenters.presenterid 
where submissions.confid = cfqueryparam
cfsqltype=CF_SQL_INTEGER value=#url.confid#
AND submissions.cancelled= cfqueryparam cfsqltype=CF_SQL_BIT
value=0
AND submissions.rejected= cfqueryparam cfsqltype=CF_SQL_BIT
value=0
order by categories.catname_display, submissions.submissionID,
assigned_session, Submissions2Presenters.MainPresenter DESC, lastname
,firstname
/cfquery

















Bruce Phillips
Society of Teachers of Family Medicine
913-906-6000 ext 5405
[EMAIL PROTECTED]


 [EMAIL PROTECTED] 07/23/03 12:01PM 





Mind if we see the query?





A.







- Original Message - 





From: Bruce Phillips 





To: 






Sent: Wednesday,
July 23, 2003 11:25 AM





Subject: [KCFusion]
ColdFusion Query Times Out











I have a complex query on a
template that times out every time after about 25 seconds. I've tried
setting the timeout attribute in the CFQUERY tab, but that attribute appears to
be ignored. 











This is the error message I get:











Error Causing Template:
/sTFMPresenter/Admin/ReportReviewConf.cfm 
URL Variables Provided: confid=121RequestTimeOut=10 
Error Message: The request has exceeded the allowable time limit Tag: CFQUERY 





I don't have access to the
ColdFusion Administrator since we have a separate web hosting company.











Any advice on how I can get long complex
queries to work would be appreciated.











Thank You,











Bruce























Bruce Phillips
Society of Teachers of Family Medicine
913-906-6000 ext 5405
[EMAIL PROTECTED]









***
* This message and any attached documents are confidential and*
* intended solely for the use of the individual or entity to whom *
* they are addressed.  If this message and any attached documents *
* were received in error, notify [EMAIL PROTECTED] and *
* erase all copies of this message and any attached documents.*
***






RE: [KCFusion] ColdFusion Query Times Out

2003-07-23 Thread jabrown
Title: Message



Not an actual 
solution but you might try trimming down the query until you can get it to run, 
i.e. remove the order by and maybe some joins. Once its running add things 
back and see what seems to cause the timeout. Also, have you ran the query 
outside of CF to get an estimate of the time needed?

  
  -Original Message-From: Bruce Phillips 
  [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 23, 2003 1:13   PMTo: [EMAIL PROTECTED]Subject: RE: [KCFusion]   ColdFusion Query Times Out
  TIMEOUT attribute in MX is now in seconds and not 
  milliseconds as in CF 5. Also applies to each part of query, not the whole 
  operation. Please refer to 
  http://livedocs.macromedia.com/cf6docs/CFML_Reference/Tags-pt218.jsp 
  
  
  
  Bruce PhillipsSociety of Teachers of Family Medicine913-906-6000 
  ext 5405[EMAIL PROTECTED] 
  [EMAIL PROTECTED] 07/23/03 01:12PM 
  The timeout parameter of the 
  cfquery tag is in milliseconds in the help docs, so you've set it to timeout 
  in 0.26 seconds.
  
-Original Message-From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED]On Behalf Of Bruce 
PhillipsSent: Wednesday, July 23, 2003 10:59 AMTo: 
[EMAIL PROTECTED]Subject: Re: [KCFusion] ColdFusion Query Times Out
Here is the query. I'm able to run this successfully 
on my ColdFusion Development Server, just not on my web host's ColdFusion 
Server.

cfquery datasource="#dsn#" name="GetSubmissions" 
timeout="260"select submissions.*, presenters.*, 
categories.catname_display, 
conferences.confName_display,conferences.confid,Submissions2Presenters.mainpresenterfrom 
submissions JOIN conferences on submissions.confid = 
conferences.confidJOIN categories on submissions.catid = 
categories.catidJOIN Submissions2Presenters on 
Submissions2Presenters.Submissionid = Submissions.submissionidJOIN 
presenters ON Submissions2Presenters.presenterID = presenters.presenterid 
where submissions.confid = cfqueryparam cfsqltype="CF_SQL_INTEGER" 
value="#url.confid#"AND submissions.cancelled= cfqueryparam 
cfsqltype="CF_SQL_BIT" value="0"AND submissions.rejected= cfqueryparam cfsqltype="CF_SQL_BIT" value="0"order by categories.catname_display, submissions.submissionID, assigned_session, 
Submissions2Presenters.MainPresenter DESC, lastname 
,firstname/cfquery


Bruce PhillipsSociety of Teachers of Family 
Medicine913-906-6000 ext 5405[EMAIL PROTECTED] 
[EMAIL PROTECTED] 07/23/03 12:01PM 
Mind if we see the query?
A.

  - Original Message - 
  From: 
  Bruce   Phillips 
  To:  
  Sent: Wednesday, July 23, 2003 11:25 
  AM
  Subject: [KCFusion] ColdFusion Query 
  Times Out
  
  I have a complex query on a template that times out 
  every time after about 25 seconds. I've tried setting the timeout 
  attribute in the CFQUERY tab, but that attribute appears to be 
  ignored. 
  
  This is the error message I get:
  
  Error Causing Template: 
  /sTFMPresenter/Admin/ReportReviewConf.cfm URL Variables Provided:   confid=121RequestTimeOut=10 Error Message: The request has 
  exceeded the allowable time limit Tag: CFQUERY 
  I don't have access to the ColdFusion Administrator 
  since we have a separate web hosting company.
  
  Any advice on how I can get long complex queries to work 
  would be appreciated.
  
  Thank You,
  
  Bruce
  
  
  
  Bruce PhillipsSociety of Teachers of Family   Medicine913-906-6000 ext 5405[EMAIL PROTECTED]

***
* This message and any attached documents are confidential and*
* intended solely for the use of the individual or entity to whom *
* they are addressed.  If this message and any attached documents *
* were received in error, notify [EMAIL PROTECTED] and *
* erase all copies of this message and any attached documents.*
***