Problema:
Al ejecutar el siguiente script para la creación de un usuario en la base de datos oracle:
CREATE USER colegio IDENTIFIED BY P4$$w0rd DEFAULT TABLESPACE COLEGIO TEMPORARY TABLESPACE TEMP QUOTA 20M on COLEGIO;
Aparece el siguiente mensaje de error:

Texto del mensaje de error
/*Error que empieza en la línea: 10 del comando -
CREATE USER colegio
IDENTIFIED BY P4$$w0rd
DEFAULT TABLESPACE COLEGIO
TEMPORARY TABLESPACE TEMP
QUOTA 20M on COLEGIO
Error en la línea de comandos : 10 Columna : 13
Informe de error -
Error SQL: ORA-65096: nombre de usuario o rol común no válido
65096. 00000 - "invalid common user or role name"
*Cause: An attempt was made to create a common user or role with a name
that was not valid for common users or roles. In addition to
the usual rules for user and role names, common user and role
names must start with C## or c## and consist only of ASCII
characters.
*Action: Specify a valid common user or role name."*/
Solución:
Ejecutar el siguiente script:
alter session set "_ORACLE_SCRIPT"=true;
Te amo, gracias
Te amo, gracias