This is a long shot and I have a feeling I have asked in the past with a negative answer but...
In UNIX, using
cp <source> <destination>
If the destination path does not exist, can it be created easily?
In other words,
cp -p /oracleindex/IFSD/users01.dbf /backup/oracleindex/IFSD/users01.dbf
cp -p /redolog1/IFSD/redo01.log /backup/redolog1/IFSD/redo01.log
would create /backup/oracleindex/IFSD/ if it did not exist and /backup/redolog1/IFSD/redo01.log if it did not exist.
If it cannot be done with the cp command, what is the suggested method?
(manually creating them before hand is a last resort!)
Applications Support
UK
In UNIX, using
cp <source> <destination>
If the destination path does not exist, can it be created easily?
In other words,
cp -p /oracleindex/IFSD/users01.dbf /backup/oracleindex/IFSD/users01.dbf
cp -p /redolog1/IFSD/redo01.log /backup/redolog1/IFSD/redo01.log
would create /backup/oracleindex/IFSD/ if it did not exist and /backup/redolog1/IFSD/redo01.log if it did not exist.
If it cannot be done with the cp command, what is the suggested method?
(manually creating them before hand is a last resort!)
Applications Support
UK