Re: How to improve the performance of read ?
Posted by:
Rick James
Date: August 03, 2014 09:27AM
To assist in analyzing slow SELECTs, please provide
* SHOW CREATE TABLE tbl\G -- engine, indexes
* SHOW TABLE STATUS LIKE 'tbl'\G -- sizes
* EXPLAIN SELECT ...\G -- clues of inefficiencies
* SHOW VARIABLES LIKE '%buffer%'; -- cache size
and surround them with [ code ] and [ / code ]
How much RAM do you have?
The answer to your performance problem may involve
* Adding or changing INDEXes
* Tuning
* Modifying the SELECTs
* Redesigning the schema
* Creating and maintaining summary tables
* other.
Subject
Views
Written By
Posted
3101
August 02, 2014 08:01AM
Re: How to improve the performance of read ?
1600
August 03, 2014 09:27AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.