Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! 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.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 5 | |
| 3 | |
| 2 | |
| 1 | |
| 1 |
| User | Count |
|---|---|
| 10 | |
| 5 | |
| 5 | |
| 5 | |
| 4 |