Hi,
I would appreciate a confirmation from the ISAM-A experts, I guess, Herman and Jack in that sequence?
I have an ISAM-A with three keys and I need to change the primary key but the buffer structure don't change, below is a simplified defstruct.
defstruct ST_buffer
map2 buffer
map3 key2$
map4 teacher$,s,5
map4 key1$
map5 session'id$,s,10
map5 session'seq$,s,3
map3 fields
...
endstruct
Now, the primary key is size 13, start on 6 and the secondary key is size 18, start on 1.
I want to convert the primary key to add teacher$ at the end so, primary key will be Concatenated 13, 6 with 5, 1.
In a secondary key, I would just delete the old one and create the new key but, that's not allowed for primary keys.
So, my doubt is if it's enough to dump the current file, create the new one and load the dump file.
I guess it is enough but, just rechecking because this file has vital data and I don't want to detect some anormaly ahead.
Thank you