RE: Tuning DB connections?

2004-07-14 Thread Micha Schopman
The queries are optimized icw execution plans, etc. Every requests also turns out to take 0ms in Query Analyzer. The only slow part is after that, .. when the package is send to ColdFusion Server as the return value for the cfquery :-) Micha Schopman Software Engineer Modern Media

RE: Tuning DB connections?

2004-07-14 Thread Micha Schopman
ry is not important in this scenario :-) Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 AL  Amersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380 [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Set

Tuning DB connections?

2004-07-14 Thread Micha Schopman
ms or 5ms, but it is either 0ms or 16ms (which is a quite big delay). I am using CF5 Ent. as testing environment. Anyone have good practices on this one? Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 AL  Amersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 390

RE: Releasing client to do another process?

2004-07-14 Thread Micha Schopman
another place. 2: Create a scheduled task, and run this task immediately. When the task is finished remove it. This task is not dependant on the browser window clientside. If you need session vars etc. in your task, pass them to the task as parameters, or find a way to overcome this. Micha Schopman

RE: Releasing client to do another process?

2004-07-14 Thread Micha Schopman
. Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 AL  Amersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380 [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: CFMX is crashing daily with no hints in the log

2004-07-13 Thread Micha Schopman
e problems keeping it stable under load, and still these issues arise. These issues should never arise imo :-) Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 AL  Amersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380 [Todays Threads] [Th

RE: cfc and the application scope

2004-07-13 Thread Micha Schopman
One of the basics of CFC's are it must rely on itself. It only has input and output, and everything you need must rely on input. :-) Micha Schopman Software Engineer [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: dynamic insert loop

2004-07-13 Thread Micha Schopman
Well a even better way is to use stored procedures in this case. Provide all the data at once, and use tSQL to insert this code. This should only require one call instead of many to the database. Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 AL  Amersfoort Tel 033

RE: ColdFusion TechNote Notification: "cfreport tag throws an 'Error number 599'"

2004-07-12 Thread Micha Schopman
Debbie, Are you sure it is a CF error :P, .. if there is a most buggiest software award, it would go to Crystal ;) Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 AL  Amersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380 [Todays

RE: CF access to NT Performance Stats?

2004-06-08 Thread Micha Schopman
As far is I know, this is only possible using cfexecute and a 3rd party executable which gets the cpu load :-)   _   From: Mark W. Breneman [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 08, 2004 6:40 PM To: CF-Talk Subject: CF access to NT Performance Stats? Is there any way for CF access t

RE: caching..

2004-06-02 Thread Micha Schopman
Mike, What are the caching settings in your browser? If you do not load very much images dynamically(because of a MSIE bug) you should consider changing it to "every visit to the page" :) If you have trusted cache off, then ColdFusion is not the one who is giving you troubles. Also try to call th

RE: Output formatting question

2004-06-02 Thread Micha Schopman
This would do
#wrap{

  position:relative;
  width:600;
  height:375;
  background:#fff;

}
#subwrap{

  position:absolute;
  right:0;
  top:0;

}

#subwrap img{

  margin:0 0 0 5px;
  border:0;

}
  my

RE: Array error

2004-06-02 Thread Micha Schopman
Dear Robert, What does this code return to you? Variable exists Variable does not exist   _   From: Robert Orlini [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 02, 2004 3:11 PM To: CF-Talk Subject: Array error Why do I get this error?: An error occurred while evaluating the _exp

RE: Recursive function and Hierarchical navigation

2004-06-02 Thread Micha Schopman
If you have the option of using SQL Server, try to create a stored procedure and return all records at once as raw data. Use ColdFusion to regain hierarchy, for ex. using structures and arrays, and you will have the highest performance available. It is all about minimizing database calls :-)   __

RE: css idiot question

2004-06-02 Thread Micha Schopman
Dear Tony, This should be the correct syntax (although I personally do not like parts of code here an there on elements) . > > id="td1"> New Applicant this refers to the DIV element directly :-)   _   From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 02, 2004 6:22 AM To: C

RE: javascript window question

2004-06-01 Thread Micha Schopman
this window", but I will explain it if you need it because it is about rewriting the window object. Micha Schopman   _   From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 01, 2004 11:09 PM To: CF-Talk Subject: Re: _javascript_ window question and the question is??

<    2   3   4   5   6   7