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: My first table creation

Re: My first table creation

From: Brent Douglas <Brent.Douglas_at_DAYTONOH.NCR.COM>
Date: Tue, 3 Aug 1999 16:32:06 -0400
Message-ID: <37a75238@rpc1285.daytonoh.ncr.com>


the other post is right, stay away from system....

create a tablespace USER_DATA....

when you set up your user, create like this:

create user NEWUSER identified by NEWPASSWORD default tablespace USER_DATA
etc etc

grant .... to NEWUSER

Brent

>
>SQL> create table junk(num int, name char(20));
>create table junk(num int, name char(20))
>*
>ERROR at line 1:
>ORA-01950: no privileges on tablespace 'SYSTEM'
Received on Tue Aug 03 1999 - 15:32:06 CDT

Original text of this message

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