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 |
zion99
Posting Yak Master
141 Posts |
Posted - 2008-08-04 : 03:38:34
|
hi I use Slowly Changing Dimensions (SCD) & it works absolutely great for inserts and updates. I could not find an option for delete.Can anybody tell me if there is any workaround such that i can use DELETE with SCD?P.S. for some tables i have written stored procs & they take care of insert, update and delete. |
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2008-08-04 : 14:26:31
|
You can use seperate dataflow task to get deleted information from source onto staging file (may be a raw file) and use a seperate task to delete them from your destination even before the scd step. |
 |
|
|
|
|