Access 97. DAO. I have two large snapshot recordsets based on complex SQL queries. They are fairly large {and poorly indexed, LittleSmudge and Steve101!) -- say, six fields by 10,000 records.
They have the same approximate data structure; one is from the current datastore, the other from an archive.
I want one recordset out of the two. I have a way to do it: Make one recordset based on a UNION SQL query. However this is (1) dense and ugly to work, and (2) slow to run.
Can I open the two recordsets using DAO (or ADO, I'm somewhat open for that) and then "UNIONize" them in VBA to make one recordset of 20,000 records?
In DOS commands for text files, ha ha, this would be COPY [rs1]+[rs2] [rs3]. Just to belabor the point.
They have the same approximate data structure; one is from the current datastore, the other from an archive.
I want one recordset out of the two. I have a way to do it: Make one recordset based on a UNION SQL query. However this is (1) dense and ugly to work, and (2) slow to run.
Can I open the two recordsets using DAO (or ADO, I'm somewhat open for that) and then "UNIONize" them in VBA to make one recordset of 20,000 records?
In DOS commands for text files, ha ha, this would be COPY [rs1]+[rs2] [rs3]. Just to belabor the point.