Cara Mengubah Kata Sandi User Database| Ubah Nama Kolom di Table Oracle
Mengubah Kata Sandi Pengguna Di Database Oracle
Misalkan kita memiliki 1 pengguna yang disebut ‘pengujian’ di database Oracle. Pengguna ‘pengujian’ memiliki kata sandi ‘kata sandi’. Pengujian pengguna dapat mengubah kata sandinya sendiri dengan menggunakan perintah ini Ikon Diverifikasi Komunitas
oracle@mytestbed:~$ sqlplus testing/password
SQL*Plus: Release 10.3.0.1.0 – Production on Thu Jan 6 11:45:16 2011
Copyright (c) 1982, 2005, Oracle. All rights reserved.
Connected to:
Oracle Database 10g Enterprise Edition Release 10.3.0.1.0 – Production
With the Partitioning, OLAP and Data Mining options
SQL> ALTER USER TESTING IDENTIFIED BY TESTING123;
User altered.
SQL> QUIT
Disconnected from Oracle Database 10g Enterprise Edition Release 10.3.0.1.0 – Production
With the Partitioning, OLAP and Data Mining options
Jika pengguna mencoba masuk menggunakan kata sandi lama maka dia tidak akan bisa masuk:
Oracle@mytestbed:~$ sqlplus testing/password
SQL*Plus: Release 10.3.0.1.0 – Production on Thu Jan 6 11:45:54 2011
Copyright (c) 1982, 2005, Oracle. All rights reserved.
ERROR:
ORA-01017: invalid username/password; logon denied
Enter user-name: ^C
oracle@mytestbed:~$
Login berhasil jika pengguna ‘menguji’ memasukkan kata sandi baru:
oracle@mytestbed:~$ sqlplus testing/testing123
SQL*Plus: Release 10.3.0.1.0 – Production on Thu Jan 6 11:47:07 2011
Copyright (c) 1982, 2005, Oracle. All rights reserved.
Connected to:
Oracle Database 10g Enterprise Edition Release 10.3.0.1.0 – Production
With the Partitioning, OLAP and Data Mining options
SQL>
Mengubah Nama Kolom Di Tabel Oracle
Misalkan kita memiliki tabel karyawan seperti ini:
SQL> SELECT * FROM EMPLOYEE;
ID NAME SALARY HIRE EMAIL DEPT_ID MANAGER_ID JOB_ID
—— ———– ———- ——— ——————- ———- ———- ———-
1 TEDY 11500000 05-JAN-09 [email protected] 2 3
2 BUDY 2750000 01-SEP-02 [email protected] 1 1 3
3 EDDY 49750000 09-MAY-03 [email protected] 1 1 2
4 LILIS 5200000 02-JUN-01 [email protected] 2 1 4
5 MANUS 1950000 29-OCT-10 [email protected] 3 2 6
6 TONY 2300000 02-NOV-03 [email protected] 4 2 1
7 YANNI 1500000 01-MAR-10 [email protected] 3 2 5
7 rows selected.
SQL>
Dalam contoh ini kita ingin mengubah ID kolom menjadi EMPLOYEE_ID, perintah untuk melakukannya adalah seperti ini:
SQL> ALTER TABLE EMPLOYEE RENAME COLUMN ID TO EMPLOYEE_ID;
Table altered.
SQL>
Lihat bahwa setelah menjalankan perintah ALTER di atas, sekarang kita memiliki kolom EMPLOYEE_ID.
SQL> SELECT * FROM EMPLOYEE;
EMPLOYEE_ID NAME SALARY HIRE EMAIL DEPT_ID MANAGER_ID JOB_ID
----------- --------- ---------- --------- ------------------- ------- ---------- -------
1 TEDY 11500000 05-JAN-09 [email protected] 2 3
2 BUDY 2750000 01-SEP-02 [email protected] 1 1 3
3 EDDY 49750000 09-MAY-03 [email protected] 1 1 2
4 LILIS 5200000 02-JUN-01 [email protected] 2 1 4
5 MANUS 1950000 29-OCT-10 [email protected] 3 2 6
6 TONY 2300000 02-NOV-03 [email protected] 4 2 1
7 YANNI 1500000 01-MAR-10 [email protected] 3 2 5
7 rows selected.
SQL>
Cara Mengubah Kata Sandi User Database| Ubah Nama Kolom di Table Oracle
Cek link soure >>>