I have a recordset in a VB6 project that get's populated from MS Access. To understand the mechanics of the JET SQL Engine I turned the SHOWPLAN to ON. What I see in the showplan.out output file is
--temp query--
- Inputs to Query -
[some tables and all the indexes + the counts]
- End inputs to Query -
[the query break-down]
When I execute the query (rst.Open "SELECT ...", cnn, adOpenForwardOnly, adLockUnspecified
) it shows up twice in the showplan.out file. Is this normal? Does it mean Access needs to provide the data twice?