Forum Discussion
Power BI dataset refresh with Azure Data Factory
Anonymous Depency is a possibility. As i said before i am trying to reduce costs. Since i am loading to a embedded
server also here i am trying to reduce costs. My embedded server is down at night.
So i am loading my dwh at night and when my embedded server is up i am kicking off my PBI load
As far as Dependency goes there are several options.
The basic depency is if dataload fails do not refresh PBI. If you have seperate schedules you need something like a log table which you read prior to starting a refresh.
The more complex is this: Suppose you have 2 reports X and Z
X uses table a and table b
Z uses table c and table b
If table c fails you can refresh table X but not Z
If table b fails you cannot refresh table X and Z
In this case you need a different check.
So you could implement depency several ways. It all depends on what you want/need