I am using a Schema in Oracle (sql developer) and within my schema there are already several tables created that I was using previously. Now running a new script in this scheme it has the following error:
Relatório de erros -
ORA-00955: nome já está sendo usado por um objeto existente
00955. 00000 - "name is already used by an existing object"
*Cause:
*Action:
I know the reason for the error is that there is already a table with the same name in the schema, but my question is ...
In Postgres I used DROP TABLE IF EXISTS name_table CASCADE;
and in oracle is not allowed to use this way, is there any similar command that has the same purpose? That every time I recompile (F5) the entire script it replaces the tables?