A
ai_enjoi via AccessMonster.com
id like to ask if there are any tips on how to speed up query calculations...?
??
what are some of the practices shud i follow??
i actually have this query
SELECT qry.PID, qry.Month, qry.SumOfSPFDue, qry.[Amount Due], qry.
SumOfReceiptAmount, [Payments1]+[BegBal] AS Payments, (SELECT Sum
(SumOfReceiptAmount) FROM Query5 WHERE (Query5.PID = qry.PID) AND (Query5.
Month <=qry.Month) AND (Query5.SpecificAcct = qry.SpecificAcct)) AS Payments1,
qry.BegBal, qry.SpecificAcct
FROM Query5 AS qry;
it actually takes 5 or 6 seconds for the query to run... right now, the query
contains 230 records...and every month, data will be added,,,,im wondering
how long my databse can keep up with this... any help on this please...thank
you...
??
what are some of the practices shud i follow??
i actually have this query
SELECT qry.PID, qry.Month, qry.SumOfSPFDue, qry.[Amount Due], qry.
SumOfReceiptAmount, [Payments1]+[BegBal] AS Payments, (SELECT Sum
(SumOfReceiptAmount) FROM Query5 WHERE (Query5.PID = qry.PID) AND (Query5.
Month <=qry.Month) AND (Query5.SpecificAcct = qry.SpecificAcct)) AS Payments1,
qry.BegBal, qry.SpecificAcct
FROM Query5 AS qry;
it actually takes 5 or 6 seconds for the query to run... right now, the query
contains 230 records...and every month, data will be added,,,,im wondering
how long my databse can keep up with this... any help on this please...thank
you...