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

Thread: How to move data and index LOB

  1. #1
    Join Date
    Jun 2006
    Posts
    31

    How to move data and index LOB

    Hello all,

    I need to move dataLOB and indexLOB from one tablespace to other, i change from tablespace the table associated and the data and index LOB no change, i test to make:

    alter table xxx move LOB(xxx) store as lobsegment tablespace xxxx;

    and i obtain and error with the identifier of the lob.

    Thanks in advanced.

  2. #2
    Join Date
    Sep 2002
    Location
    England
    Posts
    7,334
    ALTER TABLE xxx MOVE LOB(xxx) STORE AS (TABLESPACE xxxx);

  3. #3
    Join Date
    Jul 2002
    Location
    Lake Worth, FL
    Posts
    1,492

    Talking Or data and index:

    Code:
    ALTER TABLE xxx MOVE LOB (xxx) 
          STORE AS ( TABLESPACE LOB_DATA 
          INDEX    ( TABLESPACE IDX_DATA))
    "The person who says it cannot be done should not interrupt the person doing it." --Chinese Proverb

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