tekdudedude
Technical User
- Sep 29, 2007
- 79
Hello All,
This command shows the full path to all the data files in the database:
How can I output just all the unique full paths and not the file names (system.dbf etc.)?
I want to do this so I know what physical directories need to be created upon a complete system restore (or moving database to another system via RMAN). I ultimately hope to create a script to recreate the required directories.
Thanks for you help,
TD
This command shows the full path to all the data files in the database:
Code:
select file_name from dba_data_files;
How can I output just all the unique full paths and not the file names (system.dbf etc.)?
I want to do this so I know what physical directories need to be created upon a complete system restore (or moving database to another system via RMAN). I ultimately hope to create a script to recreate the required directories.
Thanks for you help,
TD