I have a newly created table which I am processing to populate with records, I get to about 2500 and the system throws the error above.
If I add a blank record before I start, the process completes properly?
The structure looks like this:
There are six indexes:
The table is populated with about 1500 records related to JOBNO (i.e. ENQNO is empty) first - followed by a similar number related to ENQNO (i.e. JOBNO is empty).
Any ideas?
Could I be 'going too fast'?
Regards
Griff
Keep [Smile]ing
There are 10 kinds of people in the world, those who understand binary and those who don't.
If I add a blank record before I start, the process completes properly?
The structure looks like this:
Code:
CREATE TABLE 'POPAROLE.DBF' NAME 'POPAROLE' (JOBNO C(10) NOT NULL, ;
ENQNO C(10) NOT NULL, ;
COMPANY C(8) NOT NULL, ;
ROLE C(8) NOT NULL, ;
FLAG L NOT NULL)
There are six indexes:
Code:
INDEX ON JOBNO+ENQNO+ROLE+COMPANY TAG POPAR1
INDEX ON ENQNO+JOBNO+ROLE+COMPANY TAG POPAR2
INDEX ON COMPANY+JOBNO+ENQNO+ROLE TAG POPAR3
INDEX ON COMPANY+ENQNO+JOBNO+ROLE TAG POPAR4
INDEX ON ROLE+ENQNO+JOBNO+COMPANY TAG POPAR5
INDEX ON ROLE+JOBNO+ENQNO+COMPANY TAG POPAR6
The table is populated with about 1500 records related to JOBNO (i.e. ENQNO is empty) first - followed by a similar number related to ENQNO (i.e. JOBNO is empty).
Any ideas?
Could I be 'going too fast'?
Regards
Griff
Keep [Smile]ing
There are 10 kinds of people in the world, those who understand binary and those who don't.