create user userName identified by password;
指定表空間
create user neo identified by 123456 default tablespace netkiller;
輸入 sqlplus /nolog 回車
$ sqlplus /nolog SQL> conn /as sysdba SQL> alter user system identified by "123456"; SQL> alter user sys identified by "123456"; SQL> alter user FINANCE identified by "123123" account unlock; User altered.
account unlock 解鎖賬號
alter user backup identified by "passw0rd" account unlock;