new to oracle, I am having a oracle DB which we don't use anymore(version : 8.1.7.4).
I want to take a backup and keep it for few more years(we don't know if we may need something later on)
1 >> What is the best way to take a backup ? 2 >> Can I take the backup and restore it to a newer version of oracle on my local box ?
Thanks, Jack
if you make a physical backup using rman or file copies, you also need to keep a copy of ORACLE_HOME and your operating system. If you want to make sure that you can access your data, an export might be a better choice, if your database is not very big. (more than a few hundred gig). If it is larger, upgrade it to the latest possible release and save that one. Doing so will give you a better chance to start your database again, after a year, without having to restore your operating system. This is enough if you only want sql access. If you also want the application to be able to use the database, the upgrade might not be the best choice.
I hope this helps. Ronald.