If I login as “system” then it shows default table names(select * from tab).
But when I login as “jagan”, if I run a query (select * from tab) it is not displaying…In order to display default tables from “jagan”, what should I do?
If I login as system then it shows default table names( select * from
Share
SELECT * FROM TAB will only show objects that have been created in the schema you are connected to (i.e. JAGAN): until you create some objects there will be none to see.
TAB lists tables, clusters, views and synonyms from the current schema.