How to change a file name containing <> characters
You can use quotes on your source file
mv '<oracle path>data2.dbf' data2.dbf
You need to escape the space, less than and greater than characters using a backslash:
mv \<oracle\ path\>data2.dbf data2.dbf
Should work.