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

Home -> Community -> Usenet -> c.d.o.tools -> Re: Adding a new user

Re: Adding a new user

From: Doug O'Leary <dkoleary_at_mediaone.net>
Date: Sat, 20 Jan 2001 09:44:07 -0800
Message-ID: <MPG.14d36e45cb63150989756@news.randori.com>

In article <980010798.266039_at_news1.bigplanet.com>, albrrat_at_hotmail.com says...
> I just received a CD pack for oracle and installed 8i personal edition. I am
> working with this program in school. after installing it on my home system,
> I could not login to sql plus. i found how to login using INTERNAL/ORACLE
> but how do I add a new username and password so I dont have to log on with
> INTERNAL/ORACLE?
>
>
>

The first thing to do is to find out what tablespaces you have:

select tablespace_name
from dba_tablespaces
order by tablespace_name;

That should give you something that looks like USERS and TMP or TEMP.

Then:

create user ${user}
identifiedy by ${password}
default tablespace ${USERS}
temporary tablespace ${TEMP}
quota unlimited on ${USERS};

HTH; Doug

-- 
-------------------
Douglas K. O'Leary
Senior System Admin
dkoleary_at_mediaone.net
Received on Sat Jan 20 2001 - 11:44:07 CST

Original text of this message

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