The problem I’m having
I’d like to understand how the community are building their Dimension tables and taking advantage of SCD6
The context of why I’m trying to do this
I have some qualitative data I’d like to model in a Dimension table to support my Fact table. Some attributes can be simply overwritten (SCD1) while others need to capture all historic changes (SCD2) and maybe an optional “previous value column” (SCD3) for handy reporting.
What I’ve already tried
I understand dbt Snapshots support SCD2, and best practice is to feed Source tables directly with no transformations.
I’d like to know how others are feeding their dimension tables.
I had hoped there would be a best practice to enable this on an dimension table
I’m new to dbt and have enjoyed building out the raw, staging and intermediate tables. However, hitting some road bumps deploying the data marts. Should I be looking at MetricFlow?
Some example code or error messages
None.