A select query over a large table runs very slow because of
the growing number of entries in that table. What different
measures could be taken to improve speed?
Answers were Sorted based on User's Feedback
Answer / dhirendra
Myself also faced the problem and after indexing its
resolved.
Try to find out the feild name on which maximum query
executed. Create index on that field it will improve the
performance.
Secondly you may create archiev of you table which stores
the record which is not required and deletion or updation
activity and keep the current table light.
Is This Answer Correct ? | 11 Yes | 0 No |
Answer / jd
This question cannot be answered with the way it is formulated.
One has to run a trace to figure out why the select is slow.
it could be a lack of index, it could be bad storage
parameters, it could be that the select itself is written
poorly.
Too many problem can be described by this symptom.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sanjeev vishu
To improve select query speed we must use paging.
Is This Answer Correct ? | 4 Yes | 8 No |
Can you save your connection settings to a conf file?
How do I flush privileges in mysql?
Explain the difference between FLOAT, DOUBLE and REAL.
How can increase the performance of MySQL select query?
3 Answers RV Technologies, Span Systems,
What are date and time intervals?
what is cte? : Mysql dba
Have you ever used MySQL Administrator and MySQL Query Browser? Describe the tasks you accomplished with these tools?
How do you rename a procedure in mysql?
What is the difference between mysql_connect and mysqli_connect?
How to calculate the difference between two time values?
What is mysql slow query?
What is difference between schema and table?