MySQL Forums
Forum List  »  Optimizer & Parser

Re: Query with GROUP BY not using Index
Posted by: Imran Akbar
Date: August 16, 2012 10:30AM

Hi Øystein,
thanks for the suggestion. The text field is 256 characters long, so the index of size 255 shouldn't be a prefix, should it? I tried to re-create the indexes without an explicit size, as you suggested:

ALTER TABLE `epi_iv` DROP INDEX `wafer_name`, ADD INDEX `wafer_name` (`wafer_name`)

ALTER TABLE `epi_iv` DROP INDEX `wafer_name_date`, ADD INDEX `wafer_name_date` (`wafer_name`,`date`)

but the wafer_name indexes still have size 255, and the query hasn't improved its speed as it's still not using the composite index.

Any other ideas?

imran

Options: ReplyQuote


Subject
Views
Written By
Posted
2948
August 14, 2012 01:06PM
Re: Query with GROUP BY not using Index
1341
August 16, 2012 10:30AM


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.