Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
LeonLai
Regular Visitor

WriteCatalogExtendedContentChunkById

My Power BI Report Server is January 2024.

I have monitored the following syntax in SQL Server, which executes every hour and consumes a significant amount of resources, leading to a MemoryHigh condition on my Power BI Report Server.

However, upon checking the database, this stored procedure has always been present.

I am wondering why my Power BI Report Server keeps creating it incessantly.

How can I prevent Power BI Report Server from repeatedly executing this

 

```

CREATE PROCEDURE [dbo].[WriteCatalogExtendedContentChunkById] @ID BIGINT
,@Chunk VARBINARY(max)
,@Offset INT
,@Length INT
AS
BEGIN
UPDATE [dbo].[CatalogItemExtendedContent]
SET [Content].WRITE(@Chunk, @Offset, @Length)
WHERE [Id] = @ID
END

```

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi, @LeonLai 

You should not block it, it is closely related to shared schedules, schedule refreshes, subscriptions, etc. It is a component at the bottom level. If you block it, your report server will not worked properly. You can see from the following that it is an API interface that is used by other components of the report server for calls:

Catalog Items - Add Catalog Item - REST API (Power bi report) | Microsoft Learn

vjianpengmsft_1-1729129595659.png

 

vjianpengmsft_0-1729129452577.png

Chapter 3: Reporting Services Architecture (codemag.com)

vjianpengmsft_2-1729129887983.png

You should follow this tutorial to check what exactly is happening with your report server:

Reporting Services log files and sources - SQL Server Reporting Services (SSRS) | Microsoft Learn

vjianpengmsft_3-1729130525651.png

 

 

Best Regards

Jianpeng Li

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi, @LeonLai 

You should not block it, it is closely related to shared schedules, schedule refreshes, subscriptions, etc. It is a component at the bottom level. If you block it, your report server will not worked properly. You can see from the following that it is an API interface that is used by other components of the report server for calls:

Catalog Items - Add Catalog Item - REST API (Power bi report) | Microsoft Learn

vjianpengmsft_1-1729129595659.png

 

vjianpengmsft_0-1729129452577.png

Chapter 3: Reporting Services Architecture (codemag.com)

vjianpengmsft_2-1729129887983.png

You should follow this tutorial to check what exactly is happening with your report server:

Reporting Services log files and sources - SQL Server Reporting Services (SSRS) | Microsoft Learn

vjianpengmsft_3-1729130525651.png

 

 

Best Regards

Jianpeng Li

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.