I am upscaling and restructuring an access db to interbase and ran into some problems
I succeded to move the existing data using the insert command but but on some big tables this does not work properly. I am splitting the tables up in smallar logical groups.
I have managed to move a part of a record (about 80% of the fields) to another table using:
insert into R_OIL(
RNUM ,
LVGO_SG, etc..)
select e.RNUM,
p.SG_LVGO, ..etc
from RSAMPLE e, OILPROPS p
where e.R_date = p.dat_
How do I update the other fields in R_OIL?
RNUM is a keyfield, thus inserting would generate a key violation.
Regards
Steven van Els
SAvanEls@cq-link.sr
I succeded to move the existing data using the insert command but but on some big tables this does not work properly. I am splitting the tables up in smallar logical groups.
I have managed to move a part of a record (about 80% of the fields) to another table using:
insert into R_OIL(
RNUM ,
LVGO_SG, etc..)
select e.RNUM,
p.SG_LVGO, ..etc
from RSAMPLE e, OILPROPS p
where e.R_date = p.dat_
How do I update the other fields in R_OIL?
RNUM is a keyfield, thus inserting would generate a key violation.
Regards
Steven van Els
SAvanEls@cq-link.sr