Differences between SYS.ALL_OBJECTS and SYS.DBA_OBJECTS
Hi All
I'm a beginner to ORACLE :)
when I login as sysdba, and issue below sql:
select count(*) from sys.dba_objects;
COUNT(*)
----
71596
select count(*) from sys.all_objects;
COUNT(*)
----
70772
Shouldn't it be equal? what is the objects that sys.all_objects can not see?
Thanks
Emily