<?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: Power bi report server metadata in Report Server</title>
    <link>https://community.fabric.microsoft.com/t5/Report-Server/Power-bi-report-server-metadata/m-p/3700105#M32908</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="683786" data-lia-user-login="omnia_saleh" class="lia-mention lia-mention-user"&gt;omnia_saleh&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Content Column in Catalog Table&lt;/STRONG&gt;:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT&gt;The&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;table within the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;ReportServer&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;database contains a row for every object managed by the SQL Server Reporting Services (SSRS) site. These objects include reports, linked reports, shared data sources, report models, folders, and images.&lt;/FONT&gt;&lt;CODE&gt;dbo.Catalog&lt;/CODE&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT&gt;The&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;column in this table is a binary value and holds the actual XML definition of the object where appropriate. For instance, it stores the report definition in XML format.&lt;/FONT&gt;&lt;CODE&gt;content&lt;/CODE&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT&gt;If you want to view the actual XML content rather than the binary value, you can use the following query:&lt;/FONT&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;SELECT [Path], 
       CASE [Type]
           WHEN 2 THEN 'Report'
           WHEN 5 THEN 'Data Source'
       END AS TypeName,
       CAST(CAST(content AS varbinary(max)) AS xml) AS ReportDefinition,
       [Description]
FROM ReportServer.dbo.Catalog;
&lt;/LI-CODE&gt;
&lt;P&gt;&lt;STRONG&gt;CatalogItemExtendedContent Table&lt;/STRONG&gt;:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT&gt;The&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;table contains additional content related to catalog items. It includes multiple rows for PBIX reports, each with a different&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;.&lt;/FONT&gt;&lt;CODE&gt;dbo.CatalogItemExtendedContent&lt;/CODE&gt;&lt;CODE&gt;ContentType&lt;/CODE&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT&gt;When dealing with PBIX reports, the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;column in the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;table is&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;NULL&lt;/STRONG&gt;. However, you can find relevant information in the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;table.&lt;/FONT&gt;&lt;CODE&gt;content&lt;/CODE&gt;&lt;CODE&gt;dbo.Catalog&lt;/CODE&gt;&lt;CODE&gt;dbo.CatalogItemExtendedContent&lt;/CODE&gt;&lt;CODE&gt;&lt;/CODE&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;SELECT CT.[Path], 
       CT.[Type], 
       cc.ContentType, 
       CONVERT(varbinary(max), cc.[Content]) AS BinaryContent
FROM dbo.Catalog CT
INNER JOIN dbo.CatalogItemExtendedContent cc ON CT.ItemID = cc.ItemID
WHERE cc.ContentType = 'PowerBIReportDefinition';
&lt;/LI-CODE&gt;
&lt;P&gt;&lt;SPAN&gt;Below is the post will help you:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Report-Server/GetCatalogExtendedContentData-procedure-killing-server/m-p/681492" target="_blank"&gt;[GetCatalogExtendedContentData] procedure killing ... - Microsoft Fabric Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Best Regards,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Xianda Tang&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If this post &lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;, then please consider &lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt; to help the other members find it more quickly.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 15 Feb 2024 03:01:46 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-02-15T03:01:46Z</dc:date>
    <item>
      <title>Power bi report server metadata</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Power-bi-report-server-metadata/m-p/3698627#M32900</link>
      <description>&lt;P&gt;why content column in table catalog contain value for a report and null value for the dashboard why report only&amp;nbsp; i want explain?&lt;/P&gt;&lt;P&gt;are the lineage of the dashboard store in ReportServer database?&lt;/P&gt;&lt;P&gt;Are column content in [dbo].[CatalogItemExtendedContent] contain information about dashboard?&lt;/P&gt;</description>
      <pubDate>Wed, 14 Feb 2024 11:24:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Power-bi-report-server-metadata/m-p/3698627#M32900</guid>
      <dc:creator>omnia_saleh</dc:creator>
      <dc:date>2024-02-14T11:24:03Z</dc:date>
    </item>
    <item>
      <title>Re: Power bi report server metadata</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Power-bi-report-server-metadata/m-p/3700105#M32908</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="683786" data-lia-user-login="omnia_saleh" class="lia-mention lia-mention-user"&gt;omnia_saleh&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Content Column in Catalog Table&lt;/STRONG&gt;:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT&gt;The&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;table within the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;ReportServer&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;database contains a row for every object managed by the SQL Server Reporting Services (SSRS) site. These objects include reports, linked reports, shared data sources, report models, folders, and images.&lt;/FONT&gt;&lt;CODE&gt;dbo.Catalog&lt;/CODE&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT&gt;The&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;column in this table is a binary value and holds the actual XML definition of the object where appropriate. For instance, it stores the report definition in XML format.&lt;/FONT&gt;&lt;CODE&gt;content&lt;/CODE&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT&gt;If you want to view the actual XML content rather than the binary value, you can use the following query:&lt;/FONT&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;SELECT [Path], 
       CASE [Type]
           WHEN 2 THEN 'Report'
           WHEN 5 THEN 'Data Source'
       END AS TypeName,
       CAST(CAST(content AS varbinary(max)) AS xml) AS ReportDefinition,
       [Description]
FROM ReportServer.dbo.Catalog;
&lt;/LI-CODE&gt;
&lt;P&gt;&lt;STRONG&gt;CatalogItemExtendedContent Table&lt;/STRONG&gt;:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT&gt;The&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;table contains additional content related to catalog items. It includes multiple rows for PBIX reports, each with a different&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;.&lt;/FONT&gt;&lt;CODE&gt;dbo.CatalogItemExtendedContent&lt;/CODE&gt;&lt;CODE&gt;ContentType&lt;/CODE&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT&gt;When dealing with PBIX reports, the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;column in the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;table is&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;NULL&lt;/STRONG&gt;. However, you can find relevant information in the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;table.&lt;/FONT&gt;&lt;CODE&gt;content&lt;/CODE&gt;&lt;CODE&gt;dbo.Catalog&lt;/CODE&gt;&lt;CODE&gt;dbo.CatalogItemExtendedContent&lt;/CODE&gt;&lt;CODE&gt;&lt;/CODE&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;SELECT CT.[Path], 
       CT.[Type], 
       cc.ContentType, 
       CONVERT(varbinary(max), cc.[Content]) AS BinaryContent
FROM dbo.Catalog CT
INNER JOIN dbo.CatalogItemExtendedContent cc ON CT.ItemID = cc.ItemID
WHERE cc.ContentType = 'PowerBIReportDefinition';
&lt;/LI-CODE&gt;
&lt;P&gt;&lt;SPAN&gt;Below is the post will help you:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Report-Server/GetCatalogExtendedContentData-procedure-killing-server/m-p/681492" target="_blank"&gt;[GetCatalogExtendedContentData] procedure killing ... - Microsoft Fabric Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Best Regards,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Xianda Tang&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If this post &lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;, then please consider &lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt; to help the other members find it more quickly.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Feb 2024 03:01:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Power-bi-report-server-metadata/m-p/3700105#M32908</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-02-15T03:01:46Z</dc:date>
    </item>
  </channel>
</rss>

