Slowly Changing Dimensions Type 2 (SCD Type 2) is a method to track changes in dimension data over time. When new source data arrives, it is compared to existing dimension rows using a business key. If no change is detected, the existing row remains unchanged. If a change is detected, the old row is expired by setting its end date to the day before the new data's start date. Then, a new row is inserted with the updated data and a start date matching the change date. The end date '9999-12-31' marks the row as currently active. This process preserves historical data and allows analysis of changes over time. The execution table shows each step: loading data, detecting changes, expiring old rows, and inserting new rows. The variable tracker follows key variables like old row end date and whether a new row was inserted. Key moments clarify why old rows are kept and how changes trigger new rows. The visual quiz tests understanding of these steps. This method is common in data warehousing and dbt models to maintain accurate historical records.