Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Which file an object resides in.
Just wanted to add a couple of things to the script.
SELECT distinct e.segment_name, f.file_name
FROM DBA_EXTENTS E , DBA_DATA_FILES F
WHERE E.FILE_ID = F.FILE_ID
and e.segment_name = upper('&Your_object');
Mary Ruiz / Atlanta, GA Received on Tue Nov 21 2000 - 08:50:47 CST