How to export and import Oracle schemas, or backup Oracle databases

You can use the exp and imp executables to perform data backup and restoration. ```bash -- Export exp /@ file=data.dmp consistent=y grants=no statistics=none -- Import imp /@ file=data.dmp fromuser= touser= ```