A family of Microsoft relational database management systems designed for ease of use.
Using a macro there is an Open Query Action You can add as many of these actions as you need. There is also a Set Warning action. You would have that as your First action and set it to False, then have another as the last action and set it back to True.
The SetWarnings action suppresses the warning messages.
You can use the equivalent VBA methods
DoCmd.SetWarnings False
DoCmd.OpenQuery "queryname"
repeat for each query
DoCmd.SetWarnings True
Or you can use the .Execute command which also suppresses the warnings.