Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Question about partition table.
In article <MKbF5.20$DL3.1420373_at_news.interact.net.au>,
"Chuan Zhang" <chuan_at_asiaonline.net> wrote:
> Hi, ALL,
>
> I might ask a very simple question, but I need someone's help.
>
> We got some very large tables. but we haven't created them original as
> partition tables. Is there any way to alter them to pratition table
without
> the cycle of creating a identical temporary table, dropping the table
and
> recreating the table into partition?
>
> Thanks very much in advance.
>
> Chuan
>
>
1. Create partitioned table NEW_TABLE.
CREATE TABLE NEW_TABLE(ID NUMBER(2) NOT NULL,
NAME VARCHAR2(20) NOT NULL)PARTITION BY RANGE(ID)
Lev Smirnov
Brainbench MVP for Oracle Admin
http://www.brainbench.com
Sent via Deja.com http://www.deja.com/
Before you buy.
Received on Thu Oct 12 2000 - 02:07:05 CDT
![]() |
![]() |