I have a script that I am running for homework that looks like so:
drop table burger_king_locations_clean;
drop table burger_king_locations_unresolv;
create table burger_king_locations_clean
(
...
);
create table burger_king_locations_unresolv
(
....
);
But when I run this I get the following message and I don't understand because I know the table is gone and there is no view or any other object with that name.
Table dropped.
drop table burger_king_locations_unresolv
*
ERROR at line 1:
ORA-00942: table or view does not exist
Table created.
Table created.
create table burger_king_locations_unresolv
*
ERROR at line 1:
ORA-00955: name is already used by an existing object
I don't understand because this exact thing was working before but I put my computer in sleep mode and then came back to this and now it doesn't work at all. Any ideas?