MySQL Forums
Forum List  »  Performance

Re: DML operations slow down
Posted by: Rick James
Date: June 06, 2014 09:18AM

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?

There are many reasons why a DML may slow down. The first few that come to mind:
* The system is busier
* The data has grown
* "Random" indexes
* Missing or inadequate indexes
* Increased number of connections

Options: ReplyQuote


Subject
Views
Written By
Posted
1801
June 04, 2014 04:43PM
Re: DML operations slow down
910
June 06, 2014 09:18AM


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.