การเปลียน password ของ user oracle
เข้าด้วย user ที่เป็น dba จะสามารถ เปลี่ยน password ได้ทุก user
sqlplus "/as sysdba"
แต่ถ้าเข้าด้วย user อื่นๆ ก็จะเปลี่ยนได้เฉพาะ user ของตัวเอง
SQL> select username,password from dba_users where username='SCOTT';
USERNAME PASSWORD-------- ----------------SCOTT F894844C34402B67
sql command ในการเปลี่ยน password
SQL> alter user scott identified by mypassword;
alter user system identified by manager;
<< หน้าแรก