Hi I've tried to create a new user in Oracle 18c XE, but I get
ORA-65096: invalid common user or role name
error when writing
create user student identified by "student";
I've tried to change the container to PDB by
SQL> alter session set container =PDB;
as I've understood that you should set that when trying to create a local user but I get the following error:
ORA-65011: Pluggable database PDB does not exist.
Do you have any idea how could I create a new user with all privileges from the command prompt?
XEPDB1
. ReplacePDB
withXEPDB1
. – Cleruchyusername/password@//localhost:1521/XEPDB1
– Cleruchy