Reputation: 11
I have an application that calls an Azure SQL stored procedure "report.GetReportCell". To call this procedure my app uses SqlCommand.ExecuteReader() method.
Sometimes calls are too slow. In Dependency telemetry I see a lot of records with:
I suspect the stored procedure is too slow but I can't confirm it:
What could be causing the slowdown when calling a stored procedure with a SqlCommand.ExecuteReader() method?
UPD 2022-07-21
I have read an excellent article about "Parameter Sniffing Problems" and other other possible reasons for slow executions - https://www.sommarskog.se/query-plan-mysteries.html
But I think the reason for the slowdown is something else. Because:
Upvotes: 1
Views: 258
Reputation: 83
I had the exact same issue and @DeepDave-MT had the answer. The procedure was taking 30 seconds in the application but 0 seconds via SSMS. When I ran it in SSMS with SET ARITHABORT OFF, I found that it ran for 22 seconds. Adding SET ARITHABORT ON directly to the stored procedure made my application run in <1 second.
Upvotes: 1