Originally posted by cravi
Can you please be more explicit.
I need some query to find which indexes are there in which datafile.

Thanks
select D.FILE_NAME,e.file_id from dba_data_files D, dba_extents E where e.FILE_ID=d.FILE_ID
and e.SEGMENT_NAME='Your_INDEX_NAME' and e.SEGMENT_TYPE='INDEX';