Link to home
Create AccountLog in
Avatar of MRPT
MRPT

asked on

Split Partition

I have a table that is list partitioned as below

P1:                 values ('GROUP CHANGE', 'TERMINATION')
UNKNOWN: rest all values (default partition)

Now, I want to split the partition 'P1' only, into 2 partitions as below:
P1_1 values ('GROUP CHANGE')
P1_2 values ('TERMINATION')

I want to keep the other partition 'UNKNOWN' as is for default values.

Could someone please suggest?

Thanks
SOLUTION
Avatar of slightwv (䄆 Netminder)
slightwv (䄆 Netminder)

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
ASKER CERTIFIED SOLUTION
Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
Avatar of MRPT
MRPT

ASKER

Thank You.