Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.tools -> Re: cannot see tables
You might try;
select owner, table_name from all_tables;
Once you know who owns the table, login as that person and drop the tables,
or
as SYSTEM type:
drop table owner.table_name;
Hope this helps.
Evan S.
![]() |
![]() |