SQL Optimization
-
If my one of customer saying they could a generate a report withing 30 second before and now they have to wait for 3min so how I can track that as a Senior Technical Support Analyst that whether it is a database issue or programming issue ?
Chaminda Bandara
-
If my one of customer saying they could a generate a report withing 30 second before and now they have to wait for 3min so how I can track that as a Senior Technical Support Analyst that whether it is a database issue or programming issue ?
Chaminda Bandara
-
If my one of customer saying they could a generate a report withing 30 second before and now they have to wait for 3min so how I can track that as a Senior Technical Support Analyst that whether it is a database issue or programming issue ?
Chaminda Bandara
Check the execution plan and the index fragmentation, to start.
Mongo: Mongo only pawn... in game of life.
-
If my one of customer saying they could a generate a report withing 30 second before and now they have to wait for 3min so how I can track that as a Senior Technical Support Analyst that whether it is a database issue or programming issue ?
Chaminda Bandara
If there have been no changes to the code base then it is a server issue, easy. You really should know if there have been changes to the code! There are a bunch of tuning possibilities that you should be aware/doing from degragging thee indexes to tuning the queries to checking disk space and fragmentation.
Never underestimate the power of human stupidity RAH
-
If there have been no changes to the code base then it is a server issue, easy. You really should know if there have been changes to the code! There are a bunch of tuning possibilities that you should be aware/doing from degragging thee indexes to tuning the queries to checking disk space and fragmentation.
Never underestimate the power of human stupidity RAH
If we assume that the issue with indexes how can I optimize using indexes ?
-
If we assume that the issue with indexes how can I optimize using indexes ?
I would use the execution plan to identify bottlenecks in the existing indexes and any missing indexes for the query, I would then defrag those indexes
Never underestimate the power of human stupidity RAH