March 4, 2015 at 10:37 pm
Can we create the Partition on Existing Table?
e.g Create table t ( col1 number(10,0), Col2 Varchar(10)) ;
After the table Creation can we alter the table to partition the table.
March 5, 2015 at 8:36 am
Yes you can. But before that, you should do some research: is col1 ever-increasing, how many records will be in one partition, min, max values for each partition, can col1 be clustered index? And the most important think is what is the purpose to partition this particular table? Archiving, data load, setting old partitions to read-only to minimize impact of database maintenance? What your FG, files mapping will look like?
March 5, 2015 at 8:52 am
nilesh_dalvi (3/4/2015)
Can we create the Partition on Existing Table?e.g Create table t ( col1 number(10,0), Col2 Varchar(10)) ;
After the table Creation can we alter the table to partition the table.
The biggest things to ask here is 1) what is the table used for (for example, is the "old" data in the table totally static like you mind find in an audit table) and 2) why do you want to partition it?
--Jeff Moden
Change is inevitable... Change for the better is not.
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply