Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
why content column in table catalog contain value for a report and null value for the dashboard why report only i want explain?
are the lineage of the dashboard store in ReportServer database?
Are column content in [dbo].[CatalogItemExtendedContent] contain information about dashboard?
Hi @omnia_saleh ,
Content Column in Catalog Table:
dbo.Catalogcontent
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;
CatalogItemExtendedContent Table:
dbo.CatalogItemExtendedContentContentTypecontentdbo.Catalogdbo.CatalogItemExtendedContent
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';
Below is the post will help you:
[GetCatalogExtendedContentData] procedure killing ... - Microsoft Fabric Community
Best Regards,
Xianda Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |