Patrick
05/05/2022, 1:14 PMthisOldDave
05/05/2022, 1:30 PMchris_hopkins
05/05/2022, 1:30 PMPatrick
05/05/2022, 1:31 PMchris_hopkins
05/05/2022, 1:32 PMPatrick
05/05/2022, 1:34 PMchris_hopkins
05/05/2022, 1:35 PMJohn Varady
05/05/2022, 1:39 PMrstewart
05/05/2022, 2:19 PM<cfset ts0 = gettickcount() />
<cfquery ... >
</cfquery>
<cfset ts1 = gettickcount() />
and then compare the difference between those two timestamps and what the query execution time shows.ts0 = gettickcount();
queryExecute(...);
ts1 = qettickcount();
… for the tag-impaired.Patrick
05/05/2022, 4:21 PMrstewart
05/05/2022, 4:23 PMPatrick
05/05/2022, 7:42 PM