| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> c.d.o.server -> Re: a question about create table ?
Raymond Du <rdu_at_idmcorp.com> wrote in article
<6me3ma$p0i_at_nntp02.primenet.com>...
>create table newtable as
> 2 select * from orgtable
> 3 TABLESPACE TABLESPACE_02;
> TABLESPACE TABLESPACE_02
> *
> ERROR at line 3:
> ORA-00933: SQL command not properly ended
>
> I want to create a table by using a select statement and using
TABLESPACE_02
> tablespace.
>
Oops, got it wrong :(
Apparently
create table newtable
tablespace TABLESPACE_02
as select * from orgtable;
will do the trick. Received on Sat Jun 20 1998 - 07:59:52 CDT
![]() |
![]() |