<?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: What does the refresh button really do? in Report Server</title>
    <link>https://community.fabric.microsoft.com/t5/Report-Server/What-does-the-refresh-button-really-do/m-p/480078#M6867</link>
    <description>I think you are mostly correct, except that the instance of SSAS (which is exactly what it used to be called PowerPivot mode of SSAS) runs all the time in PBI RS. It's just that the model (with data) gets loaded to there upon calling a PBI report. This architecture causes inefficiencies if you are running PBI in a scaled out environment, specially for large models, as data may have to be loaded multiple times. Hope MS fixes this flaw at some point.</description>
    <pubDate>Fri, 03 Aug 2018 16:30:43 GMT</pubDate>
    <dc:creator>pbx</dc:creator>
    <dc:date>2018-08-03T16:30:43Z</dc:date>
    <item>
      <title>What does the refresh button really do?</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/What-does-the-refresh-button-really-do/m-p/477740#M6815</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What does this refresh button actually do? It's definitely not refreshing my datasets when I click it, and my business users find it very confusing as well.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Aug 2018 12:26:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/What-does-the-refresh-button-really-do/m-p/477740#M6815</guid>
      <dc:creator>hokiefan1113</dc:creator>
      <dc:date>2018-08-01T12:26:04Z</dc:date>
    </item>
    <item>
      <title>Re: What does the refresh button really do?</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/What-does-the-refresh-button-really-do/m-p/478794#M6838</link>
      <description>&lt;P&gt;This is what I understand happens (I could well be entirely wrong as most of ths is guesswork from observation rather than knowing stuff for sure)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When you upload a PBIX file to PBI-SSSR Server it creates an entry in the ReportServer DB &lt;STRONG&gt;dbo.catalog&lt;/STRONG&gt; table. It also creates two entries in &lt;STRONG&gt;dbo.CatalogItemExtendedContent&lt;/STRONG&gt; table. One of these is the visuals, m code etc, the other is the data blob.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you take a PBIX that has imported data and rename it to .zip you can Unzip it. Inside you will find a file called DataModel. This is a super compressed blob of data. This is the thing that gets split out as the data blob in the &lt;SPAN&gt;&lt;STRONG&gt;dbo.CatalogItemExtendedContent&lt;/STRONG&gt; table&lt;/SPAN&gt;. Everything else is in the visuals blob.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I assume this is so that you can setup a scheduled refresh of the data and it just overwrites the data blob.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When you view a PBIX report the SSRS server magically stitches them back together somehow. Actually what it looks like it does is fire up a captive instance of SSAS tabular (msmdsrv.exe) and feeds it the data blob. It sends the visuals to your web browser and spins up some web services that your visuals send queries to. The web services forward the queries to the captive SSAS instance and ferry the results back to your browser. So your visuals are effectively connected to this temporary data source and as you slice and dice your charts the queries are sent to the captive SSAS instance via the web services. Once you've spun your report down the captive SSAS instance is quietly killed off, or after a timeout of no activity on the captive SSAS Instance/web services. Some of this is guesswork as there's very little hard info out there. But you can see instances of msmdsrv.exe spinning up and down as users browse PBIX reports.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you are using direct query or live query data sources its a bit different as you don't get a captive SSAS instance so I assume there's just some web servcies that ferry the queries to the actual data source/s.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When you hit refresh in your web browser while looking at a visual you are asking for a new copy of the visuals and for the data to be&amp;nbsp;reloaded. If the data blob has been updated by a scheduled refresh or upload you would see new numbers. Equally if someone has loaded up a new version of the PBIX with revised visuals you would see that. If the PBIX is connected to live data you would get all the queries issued again to the data source and hopefully see some new numbers, assumimg the data source has been updated somehow.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However if nothing has changed you just spin up a new copy of exactly the same visuals and data and issue the same queries which hopefully return exactly the same results (it would be bad if they didn't), hence the appearance of it not doing very much.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We have some dashboards of our call logging system that are connected to the Live backend SQL DB. When we push that refresh button the numbers move/change when the report re-renders.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Aug 2018 10:29:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/What-does-the-refresh-button-really-do/m-p/478794#M6838</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-02T10:29:51Z</dc:date>
    </item>
    <item>
      <title>Re: What does the refresh button really do?</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/What-does-the-refresh-button-really-do/m-p/480078#M6867</link>
      <description>I think you are mostly correct, except that the instance of SSAS (which is exactly what it used to be called PowerPivot mode of SSAS) runs all the time in PBI RS. It's just that the model (with data) gets loaded to there upon calling a PBI report. This architecture causes inefficiencies if you are running PBI in a scaled out environment, specially for large models, as data may have to be loaded multiple times. Hope MS fixes this flaw at some point.</description>
      <pubDate>Fri, 03 Aug 2018 16:30:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/What-does-the-refresh-button-really-do/m-p/480078#M6867</guid>
      <dc:creator>pbx</dc:creator>
      <dc:date>2018-08-03T16:30:43Z</dc:date>
    </item>
    <item>
      <title>Re: What does the refresh button really do?</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/What-does-the-refresh-button-really-do/m-p/480990#M6893</link>
      <description>&lt;P&gt;yeah. You are correct. There's a single msmdsrv.exe instance running under the PBI reporTServer Service. the other instances I see flashing up are people using PBI Desktop on the server. (It's a dev server).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm wondering if I can attach to that instance and maybe run some monitoring against it as we do for our regular SSAS.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm also wondering if that invalidates some of my math. If the model that is loaded is&amp;nbsp;shared between multiple reports then it scales better than I suggested. I'll investigate&lt;/P&gt;</description>
      <pubDate>Mon, 06 Aug 2018 07:52:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/What-does-the-refresh-button-really-do/m-p/480990#M6893</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-06T07:52:46Z</dc:date>
    </item>
    <item>
      <title>Re: What does the refresh button really do?</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/What-does-the-refresh-button-really-do/m-p/481771#M6930</link>
      <description>&lt;P&gt;You should be able to attach to that, it typically listens on 5132 port on localhost.&amp;nbsp;By default a flightrecorder trace is also running, you can check that out. I don't think extended events are supported/initialized on that instance though.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Aug 2018 21:08:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/What-does-the-refresh-button-really-do/m-p/481771#M6930</guid>
      <dc:creator>pbx</dc:creator>
      <dc:date>2018-08-06T21:08:01Z</dc:date>
    </item>
    <item>
      <title>Re: What does the refresh button really do?</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/What-does-the-refresh-button-really-do/m-p/482283#M6943</link>
      <description>&lt;P&gt;I only seem to be able to connect via SSMS using localhost:5132 it doesn't seem to accept remote connections.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I remote onto the machine I can connect but get no databases, howevere if I&amp;nbsp;run SSMS as Administrator and then connect I can see the GUIDs to the DB's. These seem to correspond to the info I see in the log files for the service.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'll see if I can run an extended event trace on it the way we do with conventioanl SSAS instances.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As a quirk. The 5132 instance says its running in SharePoint Integrated mode!&lt;/P&gt;</description>
      <pubDate>Tue, 07 Aug 2018 07:57:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/What-does-the-refresh-button-really-do/m-p/482283#M6943</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-07T07:57:50Z</dc:date>
    </item>
    <item>
      <title>Re: What does the refresh button really do?</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/What-does-the-refresh-button-really-do/m-p/482786#M6960</link>
      <description>Well, no surprises there regarding SharePoint mode, the whole thing is the same technology as PowerPivot, it's just that PBI desktop replaced Excel and PBI Service/Server replaced SharePoint/PowerView. As for only listening on localhost, probably you can change it by hacking through msmdsrv.ini file, not sure what security risks you'd be introducing by doing that though.</description>
      <pubDate>Tue, 07 Aug 2018 14:48:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/What-does-the-refresh-button-really-do/m-p/482786#M6960</guid>
      <dc:creator>pbx</dc:creator>
      <dc:date>2018-08-07T14:48:20Z</dc:date>
    </item>
    <item>
      <title>Re: What does the refresh button really do?</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/What-does-the-refresh-button-really-do/m-p/482805#M6962</link>
      <description>&lt;P&gt;Good call on msmdsrv.ini Am guessing its this line&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;ListenOnlyOnLocalConnections&amp;gt;1&amp;lt;/ListenOnlyOnLocalConnections&amp;gt;&lt;/PRE&gt;&lt;P&gt;I hadn't thought about the PowerPivot SharePoint deployment type. It is as you say exactly that just without all the SP front end. Which does make me wonder why it took them so long to get an on prem version out there. But hey ho.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Aug 2018 15:01:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/What-does-the-refresh-button-really-do/m-p/482805#M6962</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-07T15:01:42Z</dc:date>
    </item>
    <item>
      <title>Re: What does the refresh button really do?</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/What-does-the-refresh-button-really-do/m-p/485544#M7031</link>
      <description>As for MS taking long to release the on-premise PBI, my gut feeling is MS didn't want to release the on-premise and only did that when they noticed companies not really jumping on the cloud service due to various technical and non-technical issues.</description>
      <pubDate>Thu, 09 Aug 2018 17:10:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/What-does-the-refresh-button-really-do/m-p/485544#M7031</guid>
      <dc:creator>pbx</dc:creator>
      <dc:date>2018-08-09T17:10:05Z</dc:date>
    </item>
    <item>
      <title>Re: What does the refresh button really do?</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/What-does-the-refresh-button-really-do/m-p/700654#M10470</link>
      <description>&lt;P&gt;Know this is an old topic but following up on your thoughts ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is this why when the server report is refreshed, the refresh does not update the powerBi desktop data?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I noticed when I hit the "Edit in PowerBI" button on the server, the dataset in the desktop version is not refreshed even though the PowerBI server report has refreshed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 May 2019 14:25:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/What-does-the-refresh-button-really-do/m-p/700654#M10470</guid>
      <dc:creator>avalonds</dc:creator>
      <dc:date>2019-05-27T14:25:55Z</dc:date>
    </item>
    <item>
      <title>Re: What does the refresh button really do?</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/What-does-the-refresh-button-really-do/m-p/705472#M10529</link>
      <description>&lt;P&gt;Yes. I think you get the version of the report that was saved to the server not the "split version" that's held in the Report Server backend DB. I guess reconstituting it is a bit pointless as you're about to edit it.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Jun 2019 10:14:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/What-does-the-refresh-button-really-do/m-p/705472#M10529</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-06-03T10:14:55Z</dc:date>
    </item>
    <item>
      <title>Re: What does the refresh button really do?</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/What-does-the-refresh-button-really-do/m-p/1030241#M13891</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have an issue with this Refresh Button. We are running reports in Report Server (Jan 2020 version). Schedule is refreshed, but when I hit "Refresh" data is not changing. Data changes when I refresh the whole page (refresh from the browser).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This has not happened in our previous version of Report Server (Jan 2019). Could it be a change of behavior in this version?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Agustin&lt;/P&gt;</description>
      <pubDate>Thu, 16 Apr 2020 13:51:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/What-does-the-refresh-button-really-do/m-p/1030241#M13891</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-16T13:51:45Z</dc:date>
    </item>
  </channel>
</rss>

