Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: help! create table as select...

Re: help! create table as select...

From: Andy Thompson <AndrewT_at_MedImpact.com>
Date: Tue, 23 Nov 1999 18:38:47 -0800
Message-ID: <383b50c4@news1.jps.net>


Try

CREATE TABLE xyz
TABLESPACE my_tablespace
STORAGE(
INITIAL 1K
NEXT 1K)
UNRECOVERABLE (or other options)
AS SELECT * FROM my_table

kal121_at_yahoo.com wrote in message <81fghb$sum$1_at_nnrp1.deja.com>...
>How come this doesn't work? I need to be able to specify the tablespace
>and storage parameters in the "create table as select..." statement.
>
>Thanks!
>
>CREATE TABLE AS SELECT * FROM my_table
>>);
>
>
>
>Sent via Deja.com http://www.deja.com/
>Before you buy.
Received on Tue Nov 23 1999 - 20:38:47 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US