Forum Discussion

adavidso's avatar
adavidso
Regular Visitor
4 years ago
Solved

Struggling To Make Incremental Refresh Work

I am trying to have two historic tables in my report refresh incremetally to no avail. This is what I've done:   My parameters     My filter:   my incremental update options:   ...
  • lbendlin's avatar
    lbendlin
    4 years ago

    Looks ok - it's a short period of just a day, but could be sufficient for dev work. In Power Query can you confirm that you see data for 2022-01-01 ?

     

    Next step would be to run a dataset refresh again and look at the SQL Server query logs, or the partition refresh timestamps.  You can also issue XMLA commands to selectively refresh individual partitions.

     

    You can also double check the partition definitions in SSMS.  For example :

    {
      "createOrReplace": {
        "object": {
          "database": "database",
          "table": "table",
          "partition": "2018"
        },
        "partition": {
          "name": "2018",
          "mode": "import",
          "source": {
            "type": "policyRange",
            "start": "2018-01-01T00:00:00",
            "end": "2019-01-01T00:00:00",
            "granularity": "year"
          }
        }
      }
    }