D
Dapeng Wu
Guest
Error (14059) means invalid record size found during the MemCheck. This error can be triggered in a few record operations like record create, delete, update etc. For diagnosis purpose, the block content before and after the operation will be dumped. The note (and the note data) that logs this operation will also be dumped out. In this case, the error happens during a record delete operation, as seen from the RL_RMDEL note. This operation will write the note first, then delete the record. With –MemCheck enabled, this will also validate the operation to make sure errors in memory won’t make to disk. The MemCheck has detected the size of some record to be invalid within the block. For example, a record with size greater than the total block, but it shouldn’t. The adbkey is the area/dbkey information about that block. As you can see, the RL_RMDEL note will always be logged as part of the operation to delete a record, but the messages came out due to the validation of the MemCheck. Dapeng
Continue reading...
Continue reading...