Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何处理事实表中的 scd type2 更新?我没有在事实表上进行增量加载。任何好的方法都可以遵循。任何人都可以建议我,以便我在将数据加载到事实表时可以采用相同的方法。
ETL(Pentaho)
我会
a) 更新维度表 A
b) 获取您刚刚更新的记录的 max(A.surrogate_key) 值
c) 使用 A.SURROGATE_KEY 作为记录 ID 将新记录插入事实表
试试类似的东西?