Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
varalakshmi
Yak Posting Veteran
98 Posts |
Posted - 2008-01-07 : 07:17:44
|
Hi,Is there any way to maintain history of data while incremental load without using the Slowly changing dimension(SCD) concept? |
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2008-01-07 : 07:22:28
|
You may create a history table for your destination and also a trigger to put the old values of the main table onto history along with changed date upon updation.While retrieval, you can take a join of data from both table based on PK value to trace entire history. |
 |
|
|
|
|