DBAsupport.com Forums - Powered by vBulletin
Results 1 to 2 of 2

Thread: subpartitions

  1. #1
    Join Date
    Sep 2000
    Posts
    384
    create table mark_test
    (empno number(10),
    ename varchar2(25),
    maths number(5),
    science number(5),
    class char(1),
    result char(1))
    partition by range(class)
    (partition class_a values less than ('B'),
    PARTITION class_b VALUES LESS THAN('C'),
    PARTITION class_c VALUES LESS THAN('D'),
    PARTITION class_d VALUES LESS THAN('E'));

    now this partition table has been created.

    I want to subpartition class with column result...

    Thanks in advance
    Radhakrishnan.M

  2. #2
    Join Date
    Sep 2000
    Posts
    384
    Tamil can you pls look into this...
    (!in subpartition also i do not want hash partition)
    Radhakrishnan.M

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width