What happens if you execute these SQL statements?
SQL> show con_name
CON_NAME
--------------------------------
CDB$ROOT
SQL> create user 1_freed identified by y container=current;
A common user is created in the root container.
A local user is created in the root container.
A local user is created in all the PDBs.
The second SQL statement fails because a local user cannot be created in the root container.
Submit