-
Notifications
You must be signed in to change notification settings - Fork 0
login
Zhamri Che Ani edited this page Nov 4, 2024
·
4 revisions
sudo docker exec -it oracle-free sqlplus sys/abc123 as sysdba
ALTER SESSION SET CONTAINER = FREEPDB1; ## set db to FREEPDB1
CREATE USER "zhamri" IDENTIFIED BY "zhamri123"; ## nama huruf kecil
GRANT CONNECT, RESOURCE TO "zhamri";
SELECT username FROM all_users WHERE username = 'zhamri';
sudo docker exec -it oracle-free sqlplus "zhamri"/zhamri123@localhost:1521/FREEPDB1
sudo docker exec -it oracle-free sqlplus "zhamri"/zhamri123@FREEPDB1