Path: utzoo!utgpu!jarvis.csri.toronto.edu!cs.utexas.edu!uunet!zephyr.ens.tek.com!tekgen!raven!mike From: mike@raven.USS.TEK.COM (Mike Ewan) Newsgroups: comp.lang.pascal Subject: Re: Is there a known bug in the TP Database Toolbox 4.0? Message-ID: <1583@raven.USS.TEK.COM> Date: 21 Dec 89 17:30:46 GMT References: <1052@dutrun.UUCP> Reply-To: mike@raven.uss.tek.com (Mike Ewan) Organization: Tektronix, Beaverton OR Lines: 18 In article <1052@dutrun.UUCP> winfave@dutrun.UUCP (A.Verbraeck) writes: [...] >(currently version 4.0). One of my customers used the program and added >some 3000 records to the database. Everything worked fine until the >3170th record was reached. The database still works fine (FindKey, >GetRec, PutRec etc.), but the index seems corrupt. After a ClearKey >followed by a repeat ... NextKey ... until (not OK) or ... the program >either hangs or gives a Disk Read Error. I ran into the same problem. Here's the solution, first when you 'tabuild' the taccess unit, it assumes the max number of records is 1000. So your page sizes are wrong for anything over that. What you need to do is run 'tabuild /W+ file.typ'. Then when the configuration screen comes up select the max number of records as something like 32000. There's little overhead for large number and it'll sure save a lot of headaches later. You can also play around with the entries per page and page stack size variables if you want.