<?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: Log tables in PowerBI SQL Database in Report Server</title>
    <link>https://community.fabric.microsoft.com/t5/Report-Server/Log-tables-in-PowerBI-SQL-Database/m-p/447105#M6232</link>
    <description>&lt;P&gt;We run a powershell script every 30 mins that extracts any new/amedned reports. Doesn't extract who did it of course. But if someone needs to roll stuff back and or needs to recoversomehting that's been deleted the&amp;nbsp; its useful to have.&lt;/P&gt;</description>
    <pubDate>Mon, 25 Jun 2018 07:27:01 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-06-25T07:27:01Z</dc:date>
    <item>
      <title>Log tables in PowerBI SQL Database</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Log-tables-in-PowerBI-SQL-Database/m-p/439780#M6115</link>
      <description>&lt;P&gt;Hello, colleagues. I have a question with PBI SQL database. I saw a SQL table named ExecutionLogStorage. It&amp;nbsp;stores data about reports and&amp;nbsp;who viewed them. And I want to find a table with logs like deleting, changing, replacing (..etc.) of reports and elements. There&amp;nbsp;are some empty tables in PowerBI_CFG SQL database (Event, History..) but I don't understand where can I saw this data. Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jun 2018 12:11:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Log-tables-in-PowerBI-SQL-Database/m-p/439780#M6115</guid>
      <dc:creator>Disclamier</dc:creator>
      <dc:date>2018-06-14T12:11:45Z</dc:date>
    </item>
    <item>
      <title>Re: Log tables in PowerBI SQL Database</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Log-tables-in-PowerBI-SQL-Database/m-p/442213#M6150</link>
      <description>&lt;P&gt;See if this&amp;nbsp;view&amp;nbsp;has what you need.&amp;nbsp; It comes with the standard database.&amp;nbsp; Look at the ItemAction column.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SELECT&amp;nbsp;TOP 10*&lt;BR /&gt;FROM&amp;nbsp;ExecutionLog3&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jun 2018 14:26:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Log-tables-in-PowerBI-SQL-Database/m-p/442213#M6150</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-06-18T14:26:35Z</dc:date>
    </item>
    <item>
      <title>Re: Log tables in PowerBI SQL Database</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Log-tables-in-PowerBI-SQL-Database/m-p/442275#M6153</link>
      <description>&lt;P&gt;Thanks for answer. I saw these ItemActions:&lt;/P&gt;&lt;P&gt;1. DataRefresh&lt;/P&gt;&lt;P&gt;2. Render&lt;/P&gt;&lt;P&gt;3. FindString&lt;/P&gt;&lt;P&gt;4. QueryData&lt;/P&gt;&lt;P&gt;5. SaveToCatalog&lt;/P&gt;&lt;P&gt;6. Toggle (What is this?)&lt;/P&gt;&lt;P&gt;7. ASModelStream&lt;/P&gt;&lt;P&gt;8. ConceptualSchema&lt;/P&gt;&lt;P&gt;9. Execute&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And what about Delete? There is no anymore.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jun 2018 15:06:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Log-tables-in-PowerBI-SQL-Database/m-p/442275#M6153</guid>
      <dc:creator>Disclamier</dc:creator>
      <dc:date>2018-06-18T15:06:16Z</dc:date>
    </item>
    <item>
      <title>Re: Log tables in PowerBI SQL Database</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Log-tables-in-PowerBI-SQL-Database/m-p/442492#M6156</link>
      <description>&lt;P&gt;Below is the logic that is in the view in the October 2017 version of PBI ReportServer.&amp;nbsp; I do not see "delete" in there.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;CASE(ReportAction)&lt;BR /&gt;WHEN 1 THEN 'Render'&lt;BR /&gt;WHEN 2 THEN 'BookmarkNavigation'&lt;BR /&gt;WHEN 3 THEN 'DocumentMapNavigation'&lt;BR /&gt;WHEN 4 THEN 'DrillThrough'&lt;BR /&gt;WHEN 5 THEN 'FindString'&lt;BR /&gt;WHEN 6 THEN 'GetDocumentMap'&lt;BR /&gt;WHEN 7 THEN 'Toggle'&lt;BR /&gt;WHEN 8 THEN 'Sort'&lt;BR /&gt;WHEN 9 THEN 'Execute'&lt;BR /&gt;WHEN 10 THEN 'RenderEdit'&lt;BR /&gt;WHEN 11 THEN 'ExecuteDataShapeQuery'&lt;BR /&gt;WHEN 12 THEN 'RenderMobileReport'&lt;BR /&gt;WHEN 13 THEN 'ConceptualSchema'&lt;BR /&gt;WHEN 14 THEN 'QueryData'&lt;BR /&gt;WHEN 15 THEN 'ASModelStream'&lt;BR /&gt;WHEN 16 THEN 'RenderExcelWorkbook'&lt;BR /&gt;WHEN 17 THEN 'GetExcelWorkbookInfo'&lt;BR /&gt;WHEN 18 THEN 'SaveToCatalog'&lt;BR /&gt;WHEN 19 THEN 'DataRefresh'&lt;BR /&gt;ELSE 'Unknown'&lt;/P&gt;&lt;P&gt;END AS ItemAction&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Obviously as with all ReportServer objects, this logic is subject to change at anytime.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jun 2018 19:01:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Log-tables-in-PowerBI-SQL-Database/m-p/442492#M6156</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-06-18T19:01:43Z</dc:date>
    </item>
    <item>
      <title>Re: Log tables in PowerBI SQL Database</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Log-tables-in-PowerBI-SQL-Database/m-p/446269#M6219</link>
      <description>&lt;P&gt;Deletes are not logged. The item is removed from the catalog table and the ExecutionLogStorage table as well. Since executionLog3 is a view onto these it vanishes from there as well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There are no events recorded in the underlying ExecutionLogStorage table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you want to keep track of who created/amended or deleted what when you probably need to implement some kind of versioning on the catalog table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm not sure I've ever seen anything useful about audit of report create/edit/delete in the SSRS tables thus far.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jun 2018 15:40:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Log-tables-in-PowerBI-SQL-Database/m-p/446269#M6219</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-06-22T15:40:24Z</dc:date>
    </item>
    <item>
      <title>Re: Log tables in PowerBI SQL Database</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Log-tables-in-PowerBI-SQL-Database/m-p/446310#M6221</link>
      <description>&lt;P&gt;Makes sense. Thanks.&amp;nbsp; I could see a use if you were trying to audit the changes made to published objects.&amp;nbsp; Especially if you have acase of objects being deleted.&amp;nbsp; Having that information at hand could help identify the problem users and identify a training opportunity.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jun 2018 17:19:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Log-tables-in-PowerBI-SQL-Database/m-p/446310#M6221</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-06-22T17:19:20Z</dc:date>
    </item>
    <item>
      <title>Re: Log tables in PowerBI SQL Database</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Log-tables-in-PowerBI-SQL-Database/m-p/447105#M6232</link>
      <description>&lt;P&gt;We run a powershell script every 30 mins that extracts any new/amedned reports. Doesn't extract who did it of course. But if someone needs to roll stuff back and or needs to recoversomehting that's been deleted the&amp;nbsp; its useful to have.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jun 2018 07:27:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Log-tables-in-PowerBI-SQL-Database/m-p/447105#M6232</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-06-25T07:27:01Z</dc:date>
    </item>
  </channel>
</rss>

