I wan to change the password of the "system" user using sql developer but I get the following error when I run this command
I create a connection using the system user and run the following command
    alter user system identified by "myPass" replace "myPass" CONTAINER=ALL ;
this is the error that I get
Error SQL: ORA-65050: Las DDL comunes solo se permiten en CDB$ROOT
65050. 00000 -  "Common DDLs only allowed in CDB$ROOT"
*Cause:    An attempt was made to issue a Common DDL in a pluggable database.
*Action:   Switch to CDB$ROOT and issue the Common DDL there.
Confirmación terminada.
it says that I need to switch to CDB$ROOT but I don't know what that is and how to switch to that mode using sql developer

