my question is about deleting a user in Oracle. I received an error, try Oracle sqlplus and the developer.
oracle sql developer :
connection in the Oracle SQL developer
Drop user HOLA CASCADE;
error: Error starting at line: 13 of the command: Drop user HELLO CASCADE Error Report - ORA-00604: error occurred in recursive level 1 SQL ORA-00942: the table or view does not exist 00604. 00000 - "error occurred at recursive SQL level% s" * Cause: An error occurred while processing a recursive SQL statement (a statement that applies to tables of internal dictionaries). * Action: if the situation is described in the following error in the stack it can be corrected, do it; otherwise, contact Oracle support.
sqlplus:
Enter user-name: sys as sysdba
Enter password:
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> Drop user "HOLA" CASCADE;
Drop user "HOLA" CASCADE
*
ERROR at line 1:
the user 'HOLA' does not exist
Select * from USER_USERS where username = 'HOLA';
and if you eliminate the cascade; do you get an error indicating it can't delete the user because dependent objects exist? – xQbert