Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Create, Delete, View users in svrmgr
DBA_USERS contains most of the information you will want:
SQL> describe DBA_USERS
Name
CREATED PROFILE INITIAL_RSRC_CONSUMER_GROUP EXTERNAL_NAME
SQL>
Removing a user can be as simple as:
DROP USER SCOTT CASCADE;
Forcing all of the objects owned by SCOTT to be removed as well.
Received on Mon May 24 1999 - 11:44:38 CDT
![]() |
![]() |