That's a general approach to speeding up queries for relational databases.
It doesn't relate to the particular issue of the MySql and Access interaction.
In SQL server I could create a subset of the SQL server table using a stored procedure. I was looking for something like that for Mysql.
Main Topics
Browse All Topics





by: cwood-wm-comPosted on 2009-09-23 at 12:58:45ID: 25407245
You should index every field that is part of the join (on both tables), every field used in sorting, and every field used with criteria. Indexing can GREATLY speed joined queries.
-Chuck