I have a table containing 75000 records.
the field is a numeric field with values already populated.
What I want to do is...
go top
do while not eof()
skip 49
insert 0000000 && this value into the new record
enddo
I want to insert a new record at that point, every 49 records. I get errors relating to buffers.
What is the way to accomplish this?
Thanks.
the field is a numeric field with values already populated.
What I want to do is...
go top
do while not eof()
skip 49
insert 0000000 && this value into the new record
enddo
I want to insert a new record at that point, every 49 records. I get errors relating to buffers.
What is the way to accomplish this?
Thanks.