MySQL Forums
Forum List  »  Partitioning

Re: A first table partitioning exercise.
Posted by: patrick flaherty
Date: December 01, 2010 06:49PM

I wanted to post this before but the standard topic post form doesn't show that BBCode tags are supported.

Just read a sticky and they are supported.

So here's what I see:

mysql> select count(*) from part_tab where c3 > date '1995-01-01' and c3 < date
'1995-12-31';
+----------+
| count(*) |
+----------+
|   795181 |
+----------+
1 row in set (3.28 sec)

mysql>
mysql> select count(*) from no_part_tab where c3 > date '1995-01-01' and c3 < da
te '1995-12-31';
+----------+
| count(*) |
+----------+
|   795181 |
+----------+
1 row in set (5.09 sec)

... (preview) hmm, it's not a color-coded, offset block. Oh well.

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: A first table partitioning exercise.
1674
December 01, 2010 06:49PM
1794
December 02, 2010 11:00PM


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.