I get the following error message when I run a particular query in Access 97. “Not enough space on temporary disk. (error 3183). The query pulls data from a Client Master inner joined to seven tables related by an ClientID field and a Month table inner joined to a MMYY field in each of the seven tables. I also perform three calculations in this query.
(see SQLcode attached)
Questions:
1 how can I increase the size of the temporary disk refered to in the help menu?
2 is there a better way to optimize this query? I tried to make it two separate queries and still got the same error.
Thanks,
aap2
SQL Code:
SELECT Month.Month, [TPP LIST_AMT].ClassOfBusiness AS [Service Line], [Client Master].[Client No], [Client Master].[Client Name], [TPP LIST_AMT].ListAmount, [TPP LIST_NO].ListNo, [TPP RECALLED_AMT].RecalledAmt, [TPP RETURNED_AMT].ReturnedAmt, [TPP ACTIVE_AMT].ActiveAmt AS Active, [TPP YTD_COLL].YTDCollected, .Month)
ORDER BY Month.Month
WITH OWNERACCESS OPTION;