Forum Discussion
Power BI Incremental Refresh Behavior Question
- 1 year ago
Parameters for range start and range end applied to the last_updated_date in the tableLet me stop you right there. last_updated_date is not a suitable column for incremental refresh partition policies. This will result in data duplication across partitions. Instead use an immutable column like created_date.
No. There will be (at least) seven queries against the data source, each for a single day partition.
Ok so 7 (at least) queries for each day. Would that still be querying by created_date? I assume that to be the case since we haven't told it about any other date column. I think I'm rounding out my knowledge with your answers so thank you for your knowledge and support!
- lbendlin1 year agoSuper User
Ok so 7 (at least) queries for each day.Not 7 queries for each day. 7 queries, one for each day
Make sure RangeStart is inclusive an RangeEnd is exclusive - that will avoid duplicate data across partitions.