0
In the system I am developing there are several parts that will need data history.
As I did so far it was, for when you need a history for a table I created another table with the same fields and another field relating the source table.
So far it’s been working.
Two problems I have with this approach are:
1) The more tables need history, the more tables I have to replicate and also end up needing to take care of the codes;
2) Data growth for these tables is huge;
What are the best approaches to this case?
It depends on the requirements that were not posted. All of them, without forgetting any.
– Maniero
As for item two a table partitioning is a solution option.
– rray