Changing passwords:
alter user userid identified by passwd;
Showing Users
select * from all_users;
Database Administrator Usernames
Two user accounts are automatically created with the database and granted the DBA role. These two user accounts
are:
SYS (initial password: CHANGE_ON_INSTALL)
SYSTEM (initial password: MANAGER)
CREATE USER scott
IDENTIFIED BY tiger -- Assign password
DEFAULT TABLESACE tools -- Assign space for table and index segments
TEMPORARY TABLESPACE temp; -- Assign sort space
DROP USER scott CASCADE; -- Remove user