SCD Stage
SCD Stage
--------------------------------------------------------------------
In this example, Supplier_Code is the natural key and Supplier_Key is a surrogate key.
Technically, the surrogate key is not necessary, since the table will be unique by the
natural key (Supplier_Code). However, the joins will perform better on an integer than
on a character string.
Now imagine that this supplier moves their headquarters to Illinois. The updated table
would simply overwrite this record:
----------------------------------------------------------------
---------------------------------------------------------------
Type 2
The Type 2 method tracks historical data by creating multiple records for a given natural
key in the dimensional tables with separate surrogate keys and/or different version
numbers. With Type 2, we have unlimited history preservation as a new record is
inserted each time a change is made.
In the same example, if the supplier moves to Illinois, the table could look like this, with
incremented version numbers to indicate the sequence of changes:
-----------------------------------------------------------------
Another popular method for tuple versioning is to add effective date columns.
-----------------------------------------------------------------------------------
Figure 1
Step 2: To set up the SCD properties in the SCD stage ,open the stage and access the
Fast Path
Figure 2
Step 3: The tab 2 of SCD stage is used specify the purpose of each of the pulled keys
from the referenced dimension tables.
Figure 3
Step 4: Tab 3 is used to provide the seqence generator file/table name which is used to
generate the new surrogate keys for the new or latest dimesion records.These are keys
which also get passed to the fact tables for direct load.
Figure 4
Step 5: The Tab 4 is used to set the properties for configuring the data population logic
for the new and old dimension rows. The type of activies that we can configure as a part
of this tab are:
1. Generation the new Surrogate key values to be passed to the dimension and fact table
2. Mapping the source columns with the source column
3. Setting up of the expired values for the old rows
4. Defining the values to mark the current active rows out of multiple type rows
Figure 5
Step 6: Set the derivation logic for the fact as a part of the last tab.
Figure 6
Step 7: Complete the remaining set up, run the job
Figure 7