Hello All,
I have a BDB file, I am asked to change (Not only change) some records
of few tables. There are two different ways of doing this
1. EX****T the DB using DB Dump and then find and replace old value
with new one and IM****T it back again. All this implemented in a shell
script. This is simple but however I am worried whether it is a safe
way of achieving the goal.
2. Using a small hand written code (in C++ as we are using C++
extensively) change the records - EQuivalent to SQL Update operation.
Can you all comment on the disadvantages/Advantages of the above two
methods of implementation.