Difference between all_tab, all_all_tab, tab from data dictionary
venkatOct 15 2008 — edited Oct 15 2008Hi,
I used following three table names to get all tables from current schema.
But I got diffrent outputs from TAB and ALL_ALL_TABLES.
please guide me what is the diffrence between tab, all_all_tables and all_tables.
and what is the right query to get all_table information from the logged on schema/user.
SQL>SELECT COUNT(*) FROM tab
218
SQL>SELECT COUNT(*) FROM all_all_tables
367
SQL>SELECT COUNT(*) FROM all_tables
367
Thanks and regards,
Venkat.