What the French Toast is a Slowly Changing Dimension???

Поділитися
Вставка
  • Опубліковано 5 жов 2024

КОМЕНТАРІ • 24

  • @gnomesukno
    @gnomesukno Рік тому +3

    Excellent breakdown and I cannot stress the importance of this enough. Many data issues/errors can be tracked back to this. It's usually one of the first things I check when working within unfamiliar tables.

  • @morinho96
    @morinho96 Рік тому

    Excellent ! Would be indeed very interested in videos about insert, Update, Upsert, Merge in t SQL !! Thank you !

  • @Nadine-hl8pc
    @Nadine-hl8pc 6 місяців тому

    Loved it! Excellent explaining great samples. Did you a Video about the fact tables?

  • @hi55us2
    @hi55us2 Рік тому +2

    Oh nice, that's a great script for type 2 dimensions! Definitely going to save that in my folder of random useful code lol

    • @GuyInACube
      @GuyInACube  Рік тому

      BAM! Glad it was helpful! 👊

  • @mihut.dragomir
    @mihut.dragomir Рік тому

    Great video Patrick. More in depth SQL videos would be awesome!

  • @eziola
    @eziola Рік тому +1

    Brilliant! But yeah, I understand what you did here, but what is happening on the fact table and with the relationship to the fact table while you handle the dimension?

  • @Mirminman
    @Mirminman Рік тому +2

    Hi Patrick, nice video for Understand the SCD 2 attribute. Can you share the script for your fans?

    • @RichardOliver
      @RichardOliver Рік тому

      It is in the notes.

    • @GuyInACube
      @GuyInACube  Рік тому +1

      it is in the description of the video. Thanks for watching.

    • @Mirminman
      @Mirminman Рік тому

      @@GuyInACube Thank you!

  • @thomasivarsson1291
    @thomasivarsson1291 Рік тому

    Kimball have type 1 to type 7 for SCD. TSQL have two good Windows functions for setting start and end dates for a dimension member with many versions. If you have an anchor dimension table(same dimension) , with only the source key and the surrogate key, and the changing attributes in a separate dimension table(same dimension) you can create SCD 1 to 7. Good video on a subject that can be a full day.

    • @GuyInACube
      @GuyInACube  Рік тому +2

      Yes there are many types. A full day course would be interesting. Thanks for watching

  • @karabocalvin1152
    @karabocalvin1152 Рік тому

    Interesting video, thanks Patrick, looking forward to the Fact Table video….

  • @zoranmilokanovic6229
    @zoranmilokanovic6229 Рік тому

    Great video Patrick. However I'd like to know why didn't you subtract 1 (mili)second from the Expiration Date of the old record?
    The way how you did it you have overlapping in the pair of effective date and expiration date. Let me explain, if I'd like to know what was the price of the product BI-5679 exactly in '2023-01-15 16:16:03.880' both records will be returned, instead of just one. Keep up the good work!

  • @foundatum
    @foundatum Рік тому

    Hey Patrick,
    When merging a dimension with many type 1 or 2 attributes, do you have an opinion on whether you should do the comparison directly in the merge statement vs pre-calculating a hash of the values and comparing that?
    Thanks!

  • @konstantinvolke4569
    @konstantinvolke4569 Рік тому

    Thanks Patrick. Useful dim generator. However I always find it difficult to have a correct surrogate key for the lookup in the facttable. Loading the dimension looks straightforward. Loading the facttable is still a bit obscured for me

    • @GuyInACube
      @GuyInACube  Рік тому +3

      Thanks. We will be publishing a video on this topic soon.

  • @aspnerd
    @aspnerd Рік тому

    Why not use Temporal Tables? That does the same without the extra effort of additional columns or merging statements.

  • @bobbytables6629
    @bobbytables6629 Рік тому

    Instead of Identity key I see people using sequence keys , what's your preference?

  • @mabl4367
    @mabl4367 Рік тому

    Hmmm... What if you would like to have a complete history?
    If you are loading/samplig the source data once a day you would not catch changes that cancel out on the same day. I guess you would need a push dataset for that.
    If you have a push dataset. How do you handle the relation between the date/time dimmention and the fact when the fact could be stamped with any date and time down to the micro second? Do you deside to set the time granularity to lets say one hour and use the latest value from that or previous hours?

    • @GuyInACube
      @GuyInACube  Рік тому +2

      This is all from the Data Warehouse side. My assumption is that you are referring to Power BI datasets. If that is the case, it will all be handled in the load of the fact table. We will publish a video on this topic soon.

  • @matthiask4602
    @matthiask4602 Рік тому

    Patrick´s recent videos clearly have lost the loved clicky-clicky-powerbi-vibe. But I am open to it. Did I know at the end what SCD are? no, but maybe I have to view it more times...

  • @yogeshs1479
    @yogeshs1479 Рік тому +1

    Hi Patrick..... Is there any way to show the actual value of a column on a line chart without doing any aggregation like count, sum, average,etc.... I also changed the summarization to " don't summarize" and let when the column in added on a axis it does the aggregation........ Is there any way to over come this ? Please do a video on this.