Hi,
Select * from tab;
The above statement will give you table names for that schema only. If you have no tables in your schema then it will show "no row selected".
When you execute : desc admin.DataTable
Probably you have select previlege granted on DataTable of admin schema.
Make sure you have tables in your schema.
Main Topics
Browse All Topics





by: angelIIIPosted on 2005-10-13 at 04:28:12ID: 15076050
you have to be connected as admin user to get the table listed in tab.
BA_TABLES. html
to see all tables, check out this:
select table_owner, table_name from dba_tables
http://www.ss64.com/orad/D