Hi All,
I have a foxpro master table, which consists of > 100000 records.
those master records have to be copied to around 6 "children" table
separately, according to their categories
for example,
records of "select * from master_table where category = 1" will copy to
child_table_1
records of "select * from master_table where category = 2" will copy to
child_table_2
................
................
................
etc...........
I was using the cursors to fetch the master table record one by one and
insert into related child table, and i've found that it is very slow. The
full process, copy from master table to different children, took me more
than 3 hours !!
I wonder if there is any faster method to do so?
p.s. i am using foxpro 5.0
Regards,
Angus