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: Copying userid,password from instance

Re: Copying userid,password from instance

From: Terry Ball <terry_ball_at_csgsystems.com>
Date: Tue, 01 Dec 1998 12:13:35 -0600
Message-ID: <366431CF.E8E41886@csgsystems.com>


Yes it is. You would need to capture the encrypted value of the password from the one
instance. I use a script that looks something like this:

    select 'create user'||username||' identified by values '''||password||''';'

    from dba_users where username = 'JONES';

so the output would look like:

    create user JONES identified by values 'ER12874SG834';

Terry Ball
Sr. DBA, CSG Systems

NiteOwl wrote:

> Hi,
>
> I wonder if the user's id and password could be copied
> from one Oracle instance to another.
> Example, I have the user accounts and password setup in
> a UAT database and I would like to copy into the
> production database.
>
> Thanks
> NiteOwl
Received on Tue Dec 01 1998 - 12:13:35 CST

Original text of this message

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