Unsure whether I've grasped the concept of a union query but I'd appreciate confirmation that I'm on the correct track.
I have one query that is populated automatically (DataLoggerQuery) with several parameters being captured in the underlying table. I'd like to populate the underlying table every 20 seconds to avoid the database grinding to a halt over a short time period with such volumes of data (currently recording approx 6 parameters every second).
I'd then like to somehow join up to 3 other queries, from a different database, to this query so that if eg a widget (from the WidgetQuery) was produced at 11:20:23 pm, the information could be plotted on one chart (somehow join queries together) with date/time on x axis.
At moment I've got a standard query where the DataLoggerQuery and WidgetQuery are joined and will display all DataLoggerQuery records and only WidgetQuery records where date/time are equal. If I decrease the data logging frequency to 20 seconds it's highly likely that some WidgetQuery records will be omitted as it didn't have an entry for that precise time.
Will a union query be the answer to my problem? If this request doesn't make sense please let me know and I'll post a better example.
I have one query that is populated automatically (DataLoggerQuery) with several parameters being captured in the underlying table. I'd like to populate the underlying table every 20 seconds to avoid the database grinding to a halt over a short time period with such volumes of data (currently recording approx 6 parameters every second).
I'd then like to somehow join up to 3 other queries, from a different database, to this query so that if eg a widget (from the WidgetQuery) was produced at 11:20:23 pm, the information could be plotted on one chart (somehow join queries together) with date/time on x axis.
At moment I've got a standard query where the DataLoggerQuery and WidgetQuery are joined and will display all DataLoggerQuery records and only WidgetQuery records where date/time are equal. If I decrease the data logging frequency to 20 seconds it's highly likely that some WidgetQuery records will be omitted as it didn't have an entry for that precise time.
Will a union query be the answer to my problem? If this request doesn't make sense please let me know and I'll post a better example.