Re: Convert existing table to partitioned ones
From the manual page referenced previously in the thread:
Quote
CREATE TABLE t1 (
id INT,
year_col INT
);
This table can be partitioned by HASH, using the id column as the partitioning key, into 8 partitions by means of this statement:
ALTER TABLE t1
PARTITION BY HASH(id)
PARTITIONS 8;
I've lifted my FULLTEXT index out of a 250,000 row table into a dedicated table. (Partitioning does not work with FULLTEXT). I'm now going to use the above code to partition the original table.
I'll try to report back....
Cheers, al.
Subject
Views
Written By
Posted
6376
May 06, 2009 06:59PM
2922
May 07, 2009 10:28PM
Re: Convert existing table to partitioned ones
3585
May 29, 2009 04:16PM
2825
May 29, 2009 04:30PM
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.