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

Home -> Community -> Usenet -> c.d.o.misc -> Re: create table on tablespace

Re: create table on tablespace

From: David Russell <dbruce_at_kreative.net>
Date: Fri, 21 May 1999 22:11:57 GMT
Message-ID: <3745d9de.90220480@news>

Try;

create table tmp3 tablespace usr as (select * from tmp1) ;

On Tue, 18 May 1999 21:19:52 +0200, BM Lam <1116-530_at_online.de> wrote:

>The following statement works:
>
>create table tmp1 (c1 integer) tablespace usr;
>
>The following statement works as well:
>
>create table tmp2 as (select * from tmp1) ;
>
>But the following one does NOT:
>
>create table tmp3 as (select * from tmp1) tablespace usr;
>
>The error msg says (translated from german, the real wording in an
>english environment may be different:
>
>create table tmp3 as (select * from tmp1) tablespace usr;
> *
>ORA-00933: SQL command not terminated properly
>
>WHY??????
Received on Fri May 21 1999 - 17:11:57 CDT

Original text of this message

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