<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: incremental refresh with Web.Contents not working in Report Server</title>
    <link>https://community.fabric.microsoft.com/t5/Report-Server/incremental-refresh-with-Web-Contents-not-working/m-p/1683776#M18280</link>
    <description>&lt;P&gt;I must have chosen the wrong forum, sorry about that. Which would be the right one?&lt;/P&gt;&lt;P&gt;This particular web API&amp;nbsp;&lt;SPAN&gt;does support the date filter at the datasource back-end, i.e., it only returns items that satisfy (RangeStart &amp;lt;= date &amp;lt; RangeEnd). Is that not considered predicate push-down and/or query folding? As I read the documentation, the warning about query folding does not mean that the data source does not support it, but that such support cannot be determined automatically as is the case for e.g. SQL-based sources.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 23 Feb 2021 13:51:13 GMT</pubDate>
    <dc:creator>jlammens</dc:creator>
    <dc:date>2021-02-23T13:51:13Z</dc:date>
    <item>
      <title>incremental refresh with Web.Contents not working</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/incremental-refresh-with-Web-Contents-not-working/m-p/1677896#M18230</link>
      <description>&lt;P&gt;I have prepared a PBI M query using Web.Contents with&amp;nbsp;RangeStart and&amp;nbsp;RangeEnd parameters as described &lt;A href="https://docs.microsoft.com/en-us/power-bi/admin/service-premium-incremental-refresh" target="_self"&gt;here&lt;/A&gt; which works fine in PBI desktop, but produces apparently unrelated errors in PBI Service (with or without gateway). Has anybody gotten something similar to work? This is the Source statement:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Source = Json.Document(Web.Contents(&lt;BR /&gt;"&lt;A href="https://somehost.net/analytics/api/v1/order&amp;quot;,&amp;nbsp;" target="_blank" rel="noopener"&gt;https://somehost.net/analytics/api/v1/order",&amp;nbsp;&lt;/A&gt;[&lt;BR /&gt;Query=[&lt;BR /&gt;updated_after=DateTimeZone.ToText(DateTimeZone.From(RangeStart), "yyyy-MM-ddThh:mm:sszzz"),&lt;BR /&gt;updated_before=DateTimeZone.ToText(DateTimeZone.From(RangeEnd), "yyyy-MM-ddThh:mm:sszzz")&lt;BR /&gt;]]))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Johan&lt;/P&gt;</description>
      <pubDate>Fri, 19 Feb 2021 17:13:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/incremental-refresh-with-Web-Contents-not-working/m-p/1677896#M18230</guid>
      <dc:creator>jlammens</dc:creator>
      <dc:date>2021-02-19T17:13:33Z</dc:date>
    </item>
    <item>
      <title>Re: incremental refresh with Web.Contents not working</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/incremental-refresh-with-Web-Contents-not-working/m-p/1678393#M18234</link>
      <description>&lt;P&gt;You have to make sure that one of the parameters is inclusive and the other is not.&amp;nbsp; so either updated_on_or_after or updated_on_or_before&amp;nbsp; (but not both, and not neither).&lt;/P&gt;</description>
      <pubDate>Sat, 20 Feb 2021 03:23:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/incremental-refresh-with-Web-Contents-not-working/m-p/1678393#M18234</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2021-02-20T03:23:30Z</dc:date>
    </item>
    <item>
      <title>Re: incremental refresh with Web.Contents not working</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/incremental-refresh-with-Web-Contents-not-working/m-p/1679254#M18245</link>
      <description>&lt;P&gt;That is the case, in fact. The effective condition is&amp;nbsp;&lt;SPAN&gt;updated_after &amp;lt;= date &amp;lt; updated_before.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 21 Feb 2021 17:15:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/incremental-refresh-with-Web-Contents-not-working/m-p/1679254#M18245</guid>
      <dc:creator>jlammens</dc:creator>
      <dc:date>2021-02-21T17:15:29Z</dc:date>
    </item>
    <item>
      <title>Re: incremental refresh with Web.Contents not working</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/incremental-refresh-with-Web-Contents-not-working/m-p/1682276#M18268</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="283969" data-lia-user-login="jlammens" class="lia-mention lia-mention-user"&gt;jlammens&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Query folding is the root of incremental refresh.&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;It's important the partition filters are pushed to the source system when queries are submitted for refresh operations. To push filtering down means the datasource should support query folding. Most data sources that support SQL queries support query folding. However, data sources like flat files, blobs, and web feeds typically do not. In cases where the filter is not supported by the datasource back-end, it cannot be pushed down. In such cases, the mashup engine compensates and applies the filter locally, which may require retrieving the full dataset from the data source. This can cause incremental refresh to be very slow, and the process can run out of resources either in the Power BI service or in the on-premises data gateway if used.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this post&amp;nbsp;helps, then please consider&amp;nbsp;Accept it as the solution&amp;nbsp;to help the other members find it more quickly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Dedmon Dai&lt;/P&gt;</description>
      <pubDate>Tue, 23 Feb 2021 02:33:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/incremental-refresh-with-Web-Contents-not-working/m-p/1682276#M18268</guid>
      <dc:creator>v-deddai1-msft</dc:creator>
      <dc:date>2021-02-23T02:33:39Z</dc:date>
    </item>
    <item>
      <title>Re: incremental refresh with Web.Contents not working</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/incremental-refresh-with-Web-Contents-not-working/m-p/1682976#M18275</link>
      <description>&lt;P&gt;Thank you for your help. This particular web API does in fact support query folding, as evident from the RangeStart and RangeEnd parameters being passed as query parameters. This works fine and produces the expected results in PBI desktop or service without incremental refresh turned on, but it fails in the service once incremental refresh is turned on.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Feb 2021 08:55:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/incremental-refresh-with-Web-Contents-not-working/m-p/1682976#M18275</guid>
      <dc:creator>jlammens</dc:creator>
      <dc:date>2021-02-23T08:55:53Z</dc:date>
    </item>
    <item>
      <title>Re: incremental refresh with Web.Contents not working</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/incremental-refresh-with-Web-Contents-not-working/m-p/1683062#M18277</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="283969" data-lia-user-login="jlammens" class="lia-mention lia-mention-user"&gt;jlammens&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First, you create the post in report server forum.&amp;nbsp;I assume that you want to enable incremental refresh in Report Server,&lt;SPAN&gt;&amp;nbsp;It is not supported in Report Server, it's currently a feature of the cloud service only.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;&lt;SPAN&gt;as evident from the RangeStart and RangeEnd parameters being passed as query parameters. This works fine and produces the expected results in PBI desktop or service without incremental refresh turned on,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Incremental refresh is currently a feature of the cloud service only. It works well in desktop and&amp;nbsp;&amp;nbsp;service without incremental refresh turned on don't mean it support&amp;nbsp;query folding. As mentioned by&amp;nbsp;&lt;A href="https://docs.microsoft.com/en-us/power-bi/admin/service-premium-incremental-refresh#query-folding," target="_blank"&gt;https://docs.microsoft.com/en-us/power-bi/admin/service-premium-incremental-refresh#query-folding,&lt;/A&gt;&amp;nbsp;if there is a warning during your configuration, it didn't support&amp;nbsp;query folding.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this post&amp;nbsp;helps, then please consider&amp;nbsp;Accept it as the solution&amp;nbsp;to help the other members find it more quickly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Dedmon Dai&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Feb 2021 09:28:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/incremental-refresh-with-Web-Contents-not-working/m-p/1683062#M18277</guid>
      <dc:creator>v-deddai1-msft</dc:creator>
      <dc:date>2021-02-23T09:28:19Z</dc:date>
    </item>
    <item>
      <title>Re: incremental refresh with Web.Contents not working</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/incremental-refresh-with-Web-Contents-not-working/m-p/1683776#M18280</link>
      <description>&lt;P&gt;I must have chosen the wrong forum, sorry about that. Which would be the right one?&lt;/P&gt;&lt;P&gt;This particular web API&amp;nbsp;&lt;SPAN&gt;does support the date filter at the datasource back-end, i.e., it only returns items that satisfy (RangeStart &amp;lt;= date &amp;lt; RangeEnd). Is that not considered predicate push-down and/or query folding? As I read the documentation, the warning about query folding does not mean that the data source does not support it, but that such support cannot be determined automatically as is the case for e.g. SQL-based sources.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Feb 2021 13:51:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/incremental-refresh-with-Web-Contents-not-working/m-p/1683776#M18280</guid>
      <dc:creator>jlammens</dc:creator>
      <dc:date>2021-02-23T13:51:13Z</dc:date>
    </item>
    <item>
      <title>Re: incremental refresh with Web.Contents not working</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/incremental-refresh-with-Web-Contents-not-working/m-p/1683781#M18281</link>
      <description>&lt;P&gt;Exactly, it's just a warning, not an error message. If you know that your data source honors the RangeStart/RangeEnd parameters (in the appropriate format conversion )&amp;nbsp; then incremental refresh will work.&amp;nbsp; The only sure way to validate incremental refresh is to look at the partition statistics in the XMLA endpoint.&amp;nbsp; If you see only one partition then incremental refresh likely doesn't work. If you see multiple partitions then it works.&amp;nbsp; I have a blog entry on that subject if you are interested.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Feb 2021 13:55:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/incremental-refresh-with-Web-Contents-not-working/m-p/1683781#M18281</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2021-02-23T13:55:31Z</dc:date>
    </item>
    <item>
      <title>Re: incremental refresh with Web.Contents not working</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/incremental-refresh-with-Web-Contents-not-working/m-p/1684181#M18283</link>
      <description>&lt;P&gt;Yes, please point me to your blog entry. How do I get access to&amp;nbsp;&lt;SPAN&gt;the XMLA endpoint?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Feb 2021 16:32:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/incremental-refresh-with-Web-Contents-not-working/m-p/1684181#M18283</guid>
      <dc:creator>jlammens</dc:creator>
      <dc:date>2021-02-23T16:32:42Z</dc:date>
    </item>
    <item>
      <title>Re: incremental refresh with Web.Contents not working</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/incremental-refresh-with-Web-Contents-not-working/m-p/1684450#M18284</link>
      <description>&lt;P&gt;&lt;A href="https://community.powerbi.com/t5/Community-Blog/Incremental-Refresh-with-Slow-Changing-Source-Data/ba-p/1224684" target="_blank"&gt;Incremental Refresh with Slow-Changing Source Data - Microsoft Power BI Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For XMLA endpoint access go to dataset settings...server settings&amp;nbsp; and use that string to connect from your fvorite query tool (like SSMS or DAX studio)&lt;/P&gt;</description>
      <pubDate>Tue, 23 Feb 2021 18:28:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/incremental-refresh-with-Web-Contents-not-working/m-p/1684450#M18284</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2021-02-23T18:28:22Z</dc:date>
    </item>
    <item>
      <title>Re: incremental refresh with Web.Contents not working</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/incremental-refresh-with-Web-Contents-not-working/m-p/1686112#M18294</link>
      <description>&lt;P&gt;Excellent, thanks for your help!&lt;/P&gt;</description>
      <pubDate>Wed, 24 Feb 2021 09:33:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/incremental-refresh-with-Web-Contents-not-working/m-p/1686112#M18294</guid>
      <dc:creator>jlammens</dc:creator>
      <dc:date>2021-02-24T09:33:27Z</dc:date>
    </item>
    <item>
      <title>Re: incremental refresh with Web.Contents not working</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/incremental-refresh-with-Web-Contents-not-working/m-p/1703073#M18399</link>
      <description>&lt;P&gt;Finally got this to work, thanks! A few things to note, though:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Incremental refresh seems to query data one day at a time, perhaps only for the initial data set retrieval; in my case this sometimes resulted in no data being returned, which the M script choked on&lt;/LI&gt;&lt;LI&gt;JSON objects seem to be translated to M records and JSON arrays to M lists by the Json.Document function, but that is not documented (you can infer it from the inverse mapping documented for Json.Value, though)&lt;/LI&gt;&lt;LI&gt;After publishing a new version of this project to the PBI service I kept getting a “gateway needed” error the first time it was refreshed in the service, but not after that (and everything worked as expected without gateway), nor with automatic refresh after that&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Mar 2021 11:05:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/incremental-refresh-with-Web-Contents-not-working/m-p/1703073#M18399</guid>
      <dc:creator>jlammens</dc:creator>
      <dc:date>2021-03-04T11:05:53Z</dc:date>
    </item>
    <item>
      <title>Re: incremental refresh with Web.Contents not working</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/incremental-refresh-with-Web-Contents-not-working/m-p/2016351#M20584</link>
      <description>&lt;P&gt;Hello sir,&lt;/P&gt;&lt;P&gt;I am using incremental refresh for Web API data source, after I define IR policy I get the following error:-&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Unable to confirm if the M query can be folded. It is not recommended to use incremental refresh with non-foldable queries&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Does that mean my data source doesn't support Inc. refresh ?&lt;/P&gt;&lt;P&gt;OR&amp;nbsp; Is there any alternative to avoid this error?&lt;/P&gt;&lt;P&gt;Pls help !!&lt;/P&gt;</description>
      <pubDate>Sat, 14 Aug 2021 10:09:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/incremental-refresh-with-Web-Contents-not-working/m-p/2016351#M20584</guid>
      <dc:creator>akashgera</dc:creator>
      <dc:date>2021-08-14T10:09:40Z</dc:date>
    </item>
    <item>
      <title>Re: incremental refresh with Web.Contents not working</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/incremental-refresh-with-Web-Contents-not-working/m-p/2016396#M20586</link>
      <description>&lt;P&gt;That's not an error. It is merely a warning. You can proceed. The ultimate proof is the presence of multiple partitions for that table in the service dataset.&lt;/P&gt;</description>
      <pubDate>Sat, 14 Aug 2021 15:42:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/incremental-refresh-with-Web-Contents-not-working/m-p/2016396#M20586</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2021-08-14T15:42:37Z</dc:date>
    </item>
  </channel>
</rss>

