Ask a Question related to Coldfusion Database Access, Design and Development.
-
s6868 #1
Query Excution Time
Question on query excution time. I have a mx application querying Oracle
database, there is about ten records only, but the debugging information show
32ms, 16ms, sometime 0ms. What could be the cause make the excution time varies.
here is my Query:
SELECT itemID
FROM TABLE
WHERE itemID ='157421'
AND ACTIVE='Y'
ItemID is varchar(2)
Active is Char(1)
Is it because the data type? I have other table queries are doing the same
thing. When you refresh the page, they give you a different excution time.
Any help will be appreciated!
Thanks,
Bill:confused;
s6868 Guest
-
query time
On Wed, 02 Feb 2005 14:48:41 +0000, Richard Huxton <dev@archonet.com> wrote: Unfortunately, all my cases are LIKE '%john_doe'. So I'm guessing... -
Time query
What should be SQL statement in asp to update time field (in MSACCESS) with current time? -
Query Processing Time
How can i set the Query Processing Time in my asp page. i am getting this error messages "Estimated query processing time 152 exceeds limit 30" ... -
Query execution time?
Hi all, 1. Select * from table where ADEDATE = '23 June 2003' in SQLServer2000 This one works fine immediately. 2.Select * from table where... -
need advice for query time on Oracle
jyou wrote: General statements are difficult to debug. For one thing, you have to take into account the network load ... since you're comparing a... -
Dan Bracuk #2
Re: Query Excution Time
It depends on many things and is not worth worrying about.
Having item id as char instead of integer is rather odd. Are you not using sequences to generate your next value for the primary key?
Dan Bracuk Guest
-
s6868 #3
Re: Query Excution Time
Thanks Dan,
I would make Itemid a number, and active as well. I will found out whether they will let me make the database change.
s6868 Guest



Reply With Quote

