MySQL Forums
Forum List  »  Partitioning

Partitioning increasing query time
Posted by: kushal kewlani
Date: December 09, 2010 07:38AM

I am partitioning a table using range partitioning on Date using to_days().
It is to be used in a procedure which contains in all 5 queries. Out of these 5 Queries 3 contains following in where clause :
---from_date<=tempdate<=to_date----, assume tempdate as column in the table and values of from_date and to_date is passed into procedure.

Other two queries does not contain where clause, they contain only joins without any explicit condition.

The problem which I am facing is :
When I ran this procedure without partitioning of the table it took lesser time as compared to when partitioning was done.
Was this because during those joins partitioned column is not being used and it has to go through all the partitions so the query is taking longer time than usual.

Please help me regarding this.

Thanks in advance.

Kushal Kewlani

Options: ReplyQuote


Subject
Views
Written By
Posted
Partitioning increasing query time
2664
December 09, 2010 07:38AM
1500
December 10, 2010 11:49AM


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.