Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Fill Factor and Refresh Rate Info

Status
Not open for further replies.

SuperG

Programmer
Mar 24, 2000
37
CA
I have a large database with 15 users and am looking for ways to improve performance. I read reducing refresh rate on all computers and lowering the fill factor in the BDE configuration can improve performance. I was wondering if anyone else has tried this and if it had any sideeffects on their system?
 
SuperG,

Don't goof around with fill factor; it's not worth the hassle of testing the various settings. Remember, it's the threshhold that BDE uses to determine whether or not an additional block is needed for data. That block is going to be needed at some point, so you might as well as leave that alone.

Performace improvements are often best gained through index-based approaches, e.g. actually using an index, or using a TCursor/SetRange to restrict data instead of queries.

Also, if you're using NT (you didn't say), deactivating the optimistic locking can help a great deal.

Finally, if you're using filters...pitch 'em. Ranges, though more restrictive, are much faster.

But these are shots in the dark. We'd really need more specifics about what you're doing, how you're getting it done, and the platform(s) you're doing it on. That will provide some details for us to work with. Also, check out the corelsupport.faqs.paradox newsgroup hosted by Corel; it has several useful articles on the subject.

Hope this helps...

-- Lance
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top