I would like to know the advantage of Updating a record using its DB Key
instead of CALC key. Does anyone has any idea of the time saved by using Db key based updates.
Updating a record using DB-KEY is advantageous since the DB-KEY is the address of the particular record. Its the Page number + line number of that record. So if you try to update a record using the DB-KEY it will locate the record using this key value which is straight forward.
But when u update the same record using the CALC key, it should locate the record based on the calcing logic... which might require few more operations and consume more CPU time... which will be slightly slower than the first one...
But what exactly i am looking for is the time difference. I already know that update using DB-Key is efficient. If ua have some details pertaining to time pals do reply.
I don't have the detail regarding the time difference for this particular scenario. I can suggest one thing while coding a batch program we can retrieve the TIMESTAMP before and after the execution of the DML statements(bulk) using the DB-KEY/CALC-KEY which might give the time difference.