can we copy huge data to arrays and how?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

i am creating a database where in a table i need to divide each row based on
one of the column vaule into many rows where the rest of the columns content
are the same

currently i am adding new rows to temp file and then appending to the
current database.

is there any way i cna do with arrays?
 
dmoli said:
i am creating a database where in a table i need to divide each row based on
one of the column vaule into many rows where the rest of the columns content
are the same

currently i am adding new rows to temp file and then appending to the
current database.

is there any way i cna do with arrays?


Probably, if "huge" isn't outrageous, but I believe it's
simpler to use a sorted recordset instead of an array.

If your data is amenable, the best way to do this kind of
thing is using one or more queries.
 
Back
Top