How to know the tables in a datafile in Oracle

select distinct a.owner, a.segment_name, a.file_id
from dba_extents a, dba_data_files b
where a.file_id=b.file_id
and a.segment_type='TABLE'
and b.file_name='/oracledata/data/xxx.dbf';

Post a Comment

And that's all there is to it!

If anyone has any other questions or requests for future How To posts, you can either ask them in the comments or email me. Please don't feel shy at all!

I'm certainly not an expert, but I'll try my hardest to explain what I do know and research what I don't know.

Previous Post Next Post