How to find datafiles with same name?

Sometimes you want to check for datafiles with the same name in the database, maybe you are new to the env and have a major storage migration project or for any other reason.

Here is a little script to check if the database has datafiles with the same name in different directories.

set line 140
set pagesize 2000
set heading off
select count(*), substr(file_name,instr(file_name, ‘/’, -1))
from dba_data_files
group by substr(file_name,instr(file_name, ‘/’, -1))
having count(*) > 1
/

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.