MySQL Forums
Forum List  »  Backup

Re: Backup and trimming data idea
Posted by: newbie Shai
Date: June 29, 2012 07:12AM

Dear Rick,
Can I say the rule as look for all the where key and the order by combine them as one index even how many fields it could be. But some times one query may require just one of the key for the where statement and another query may require more then one field to look for. So in this case can I have index(a) then index(a,b). How about join statement where the where keys come from different tables?

I am not clear for this.

> index(a,b) or index(b,a) is there any difference
Think about fields last_name and first_name. Let's say you have
INDEX(last_name, first_name)
like in a Phone Directory. How, let's say you want
WHERE last_name LIKE 'J%' and first_name = 'Rick'
That index would be useless, but this would be useful:
INDEX(first_name, last_name)

My question here why is this index(last_name,first_name) useless when we are looking it via the like 'J%'? Kind of confuse here can you give me details for this?


Regarding your link which you share I read about chunk deletes but there is a risk of table locking right? So what best option am I left then only I guess partitioning but my scenario is a link of tables. I was thinking worse case I partition each tables separately based on date then drop them separately? What is your idea on this?

Options: ReplyQuote


Subject
Views
Written By
Posted
3534
June 22, 2012 07:34PM
1696
June 23, 2012 05:23PM
1754
June 23, 2012 05:36PM
1776
June 24, 2012 01:51PM
1813
June 25, 2012 10:16AM
1658
June 26, 2012 08:14AM
1758
June 26, 2012 08:46AM
1642
June 27, 2012 08:36AM
1739
June 27, 2012 09:03AM
1603
June 28, 2012 11:19PM
Re: Backup and trimming data idea
1553
June 29, 2012 07:12AM
1561
June 30, 2012 11:50AM
1635
July 02, 2012 09:47AM
1577
July 03, 2012 01:32PM
1621
July 05, 2012 11:13AM
1795
July 06, 2012 09:57AM
1585
July 07, 2012 10:50AM
1605
July 08, 2012 09:33AM
1595
July 16, 2012 08:08PM
1580
July 21, 2012 10:57PM


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.