Oh, one more thing.
If the definition of TBL is
TBL_ID int identity,
field1 datatype,
field2 datatype,
field3 datatype,
...
status char(1)
the definition of TBL_HIST we use is
TBL_HIST_ID int identity,
TBL_ID int,
field1 datatype,
field2 datatype,
field3 datatype,
...
status char(1)
You...