Re: specific partitioning by varchar column
I think you would need to modify the table in order to allow for an integer to partition on (say, providerid that maps uniquely to provider)
I believe that key partitioning only works on varchars because it uses mod(), which is an allowed partitioning function, but wouldn't guarantee all keys get hashed to different partitions:
http://dev.mysql.com/doc/refman/5.1/en/partitioning-limitations-functions.html
If you added providerid you could use that in a range or list partition.
I'd be interested to know as well though if there is some other way (without adding the column)
Subject
Views
Written By
Posted
4479
March 19, 2008 04:37PM
Re: specific partitioning by varchar column
2767
March 19, 2008 08:40PM
2672
March 20, 2008 02:07AM
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.