Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SPLIT PARTITION

Status
Not open for further replies.

spicysudhi

Programmer
Nov 10, 2003
575
FR
hi

i got a partitioned table. now i wanto split one of the lower partition to 2 partitions.
say my paritions like this
Part1 range values less than 10000
part2 range values less than 20000
part3 range values less than 30000
part4 range values less than 40000
part5 range values less than maxvalue

now i want to have one parition for values less than 5000 in part1a and 5000 to 10000 in part1

do i have to drop and re-create the table or anyway to do this. i saw the alter table split partition command, but not able to work it out.

regards,
sudhi
 
i got it.

alter table myTable split parition part1(part1a values lessthan 5000, part1)

-sudhi
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top