there are two tables 1. employees and 2. departments
when I try to describe the two tables with the following code
desc employees;
desc departments;
I am getting the following error
Object to be described could not be found.
DESCRIBE is a SQL*Plus command. We can only run it in a SQL*Plus client, or an emulator such as PL/SQL Developer's command window.
In SQL*Plus we get this error message when we attempt to describe an object which doesn't exist:
SQL> desc t34
ERROR:
ORA-04043: object t34 does not exist
SQL>
Whereas in SQL Developer worksheets we get this
desc t34
ERROR:
--------------------------------
ERROR: object T34 does not exist
So you must be using a different client.
In the end it does not matter, all the messages mean the same thing: the object doesn't exist. The most likely explanation is that you're connected as a user different from the owner of the tables.
descis not an sql command, it is a sql*plus command.