Please logon to the database as SYSTEM

-- To check all object names, owner, object_type, status
select *
from dba_objects
/

-- To check column name, table_name,owner
select *
from dba_tab_columns
/



Hope this helps.