DBAsupport.com Forums - Powered by vBulletin
Page 1 of 2 12 LastLast
Results 1 to 10 of 12

Thread: alter table reassign tablespace???

  1. #1
    Join Date
    Aug 2000
    Posts
    163
    I have a table with ~15 mil records which I'd like to move to a different tablespace. Is there a way to move it other than doing export/import.
    Thnkx.

  2. #2
    Join Date
    Dec 2000
    Location
    Ljubljana, Slovenia
    Posts
    4,439
    Since 8i you can *move* table with a single DDL. The basic syntax is

    ALTER TABLE your_table MOVE new_tablespace;

    You can also change the storage parameters during this rebuilding. Check the whole syntax in SQL manuals.

    HTH,
    Jurij Modic
    ASCII a stupid question, get a stupid ANSI
    24 hours in a day .... 24 beer in a case .... coincidence?

  3. #3
    Join Date
    Aug 2000
    Posts
    163

    how to read doc's

    thank you.
    I was trying to find more information in Oracle documentation throught their web_page.
    [url]http://technet.oracle.com/docs/products/oracle8i/doc_index.htm[/url]
    next to the 'alter table move ...' it says GTK 3-29. Would anyone know how to find that particular section. I seem to have a little problem finding it.
    Thank you.

  4. #4
    Join Date
    Dec 2000
    Location
    Ljubljana, Slovenia
    Posts
    4,439
    GTK = Getting to Know Oracle8i, 3/29 means chapter3/page29.

    On the bottom of each page of the Generic Documentation Master Index you'll find a legend what each abrevation in index mean. Bevare, the legend is printed on each *pair* of pages (it was designed for hardprint, although it is a little inconvinient for electronic edition as you sometimes have to scroll one page up or down to find out what particular key means).
    Jurij Modic
    ASCII a stupid question, get a stupid ANSI
    24 hours in a day .... 24 beer in a case .... coincidence?

  5. #5
    Join Date
    Aug 2000
    Posts
    163
    I cannot find anything about moving a table from one tablespace to another in Oracle Doc's.
    'alter table move..' seems to apply in situations when you want to move partitions.
    I will keep looking. Meanwhile if someone have done this already please let me know. Thanks.

  6. #6
    The alter move will work.
    I have done it.
    Ramon Caballero, DBA, rcaballe@yahoo.com

  7. #7
    Join Date
    Nov 2000
    Location
    greenwich.ct.us
    Posts
    9,092
    I've done it thousands of times. It works really well...
    Jeff Hunter

  8. #8
    Join Date
    Dec 2000
    Location
    Ljubljana, Slovenia
    Posts
    4,439
    No, no, moving partitions was supported allready in 8.0, while reorganizing tables with ALTER TABLE MOVE is new in 8.1. Are you sure you are looking at 8.1 (aka 8i) manuals? If yes, go to "SQL Reference" manual and find ALTER TABLE command description. In mine (it is for release 8.1.5) it is in chapter 7, page 113. More specificaly, railroad diagram for "move_table_clause" which is a part of that command is on page 116 and is described in more detail on page 133.

    HTH,
    Jurij Modic
    ASCII a stupid question, get a stupid ANSI
    24 hours in a day .... 24 beer in a case .... coincidence?

  9. #9
    Join Date
    Aug 2000
    Posts
    163
    Jmodic
    thank you for your support. I don't seem to find that diagram in doc's I am looking at. I am having troubles opening .pdf file so I am looking at doc's online. I still don't see page numbers there.
    The syntax 'alter table move /tablespace name/ posted above doesn't work. I get ORA-'14133: ALTER TABLE MOVE cannot be combined with other operations'.
    Would someone post a correct syntax here.
    Jmodic, if you're looking at doc's online pleased post a link.
    Appreciate everyone's help.

  10. #10
    Join Date
    Nov 2000
    Location
    greenwich.ct.us
    Posts
    9,092
    Check to make sure you know what type of table you are moving. We assumed just a normal table, but an IOT table has different considerations.
    See:
    [url]http://technet.oracle.com/docs/products/oracle8i/doc_library/817_doc/server.817/a85397/statem2a.htm#2055687[/url]
    Jeff Hunter

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