Concurrent processing

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi All,
Still trying to learn this Access system. Can anyone tell me when I
run a macro that makes tables are the jobs run concurrently or one at a time.
If I use a Macro to run a make table query and in the next line run another
make table query that uses the table from the first query will the first
query be finished?
I thought I read some where that macros’ run queries concurrently and if
this is the case do they also run macros concurrently?
In other words if I want to run these queries can I write two macros and
have them called by a third macro to build the table sequentially.

Thanks for the help in advance.
Thanks for the help in advance.
Regards,
 
The macro runs them sequentially. So you can use the table created by the
first query. Bare in mind though that this can cause some troubles in a
multi-enviroment.

hth
 
Back
Top