Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
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
```
Solved! Go to Solution.
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
Chapter 3: Reporting Services Architecture (codemag.com)
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
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.
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
Chapter 3: Reporting Services Architecture (codemag.com)
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
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.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 |
| User | Count |
|---|---|
| 5 | |
| 3 | |
| 3 | |
| 3 | |
| 2 |