Hello
How can I find the duplicate file names in database?
select substr( file_name , instr (file_name, '/',-1)+1) from dba_data_files;
users.dbf01
tools.dbf01
tools.dbf02
..
..
What I want to find is, I want to find the duplicate file names.
ie:
users.dbf01
users.dbf01
sysaux.dbf02
sysaux.dbf02
..
..