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

Thread: Ora-14095:

  1. #1
    Join Date
    Mar 2001
    Location
    Reading, U.K
    Posts
    598

    Ora-14095:

    Hi All,

    Doubts in Exchanging a Hash-Partitioned Table with a Range-Hash Partition.

    I was working with example...

    CREATE TABLE t1 (i NUMBER, j NUMBER)
    PARTITION BY HASH(i)
    (PARTITION p1, PARTITION p2);

    CREATE TABLE t2 (i NUMBER, j NUMBER)
    PARTITION BY RANGE(j)
    SUBPARTITION BY HASH(i)
    (
    PARTITION p1 VALUES LESS THAN (10)
    (SUBPARTITION t2_pls1,
    SUBPARTITION t2_pls2)
    ,
    PARTITION p2 VALUES LESS THAN (20)
    (SUBPARTITION t2_p2s1,
    SUBPARTITION t2_p2s2)
    );

    When I run this COMMAND --
    ALTER TABLE t1 EXCHANGE PARTITION p1 WITH TABLE t2 WITH VALIDATION;

    I am getting this ERROR MESSAGE...

    ERROR at line 1:
    ORA-14095: ALTER TABLE EXCHANGE requires a non-partitioned, non-clustered table

    Can you geme the cause for this problem.

    This is an example given in "Oracle9i Database Administrator’s Guide" page-567

    Thanks in Advance
    Cheers!
    OraKid.

  2. #2
    Join Date
    Mar 2001
    Location
    Reading, U.K
    Posts
    598
    Thanks guys
    got a solution.
    Cheers!
    OraKid.

  3. #3
    Join Date
    May 2001
    Location
    San Francisco, California
    Posts
    511
    See.. sometimes no response to the post is also beneficial.
    Remember the Golden Rule - He who has the gold makes the rules!
    ===================
    Kris109
    Ph.D., OCP 8i, 9i, 10g, 11g DBA

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