Slow Form

  • Thread starter Thread starter Greg
  • Start date Start date
G

Greg

I have a dwhere all the tables are linked from another dBase. I have noticed
that there is a major slowdown in the updating and opening of forms, reports,
etc.

Anyone know why this is?

Greg
 
If you are using bound forms that receive entire tables from the linked
tables, there will be a lot of traffic between the back end and front
end databases. This is especially noticeable over the network. If this
becomes unbearable you may want to limit the recordsets received by the
bound forms to only those records that are displayed using, for
instance, SELECT TOP statement.
Basically, try to reduce the amount of data transferred at each form's opening.

Pavel
 
Is the database that is linked remote (i.e. on a server)?
If so, how is your connection to the network, how is the
server running. If either of them is slow, I would believe
that is the problem. The only other thing, I can think of
is the source of your form data. If it is a query, is
there some problem with the query? Have you set indexes
appropriately on the fields in the table?

Hope that helps!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Access Form Refresh 1
Separate Form 0
Opening form unexpectedly closes other form 0
Phone Clock 4
Update Two Tables Using One Form Contents 0
Linked tables 1
Slow sumproduct Dbase 2
Forms list in Database Window slow to repond 1

Back
Top