Hi
I have a large table and I need to submit 500 queries (each one is different)
I don't want to use recordset.open strSQL as it taking to much time (it should be below 0.15s and the table is 200 000 records)
So what I'm thinking is to have a table in memory?? so I can submit SELECT query on it. Is that possible??
something like SELECT field1 FROM recordset? or table in memory?
Many thanks in advance.
Emil
I have a large table and I need to submit 500 queries (each one is different)
I don't want to use recordset.open strSQL as it taking to much time (it should be below 0.15s and the table is 200 000 records)
So what I'm thinking is to have a table in memory?? so I can submit SELECT query on it. Is that possible??
something like SELECT field1 FROM recordset? or table in memory?
Many thanks in advance.
Emil
Comment