Preparing Linux to backup Oracle
This article describes how to prepare a Linux operating system for backing up an Oracle database environment.
Oracle database backup involves generating a database dump using backup scripts and then backing up the resulting dump file.
Linux preparation process
1
echo 'connect target /; quit' | rmanecho 'SELECT INSTANCE_NAME FROM V$INSTANCE;' | sqlplus / as sysdba2

export ORACLE_SID=<database_ID>export ORACLE_HOME=database_directoryexport PATH=$ORACLE_HOME/bin:$PATH
echo 'connect target /; quit' | rmanecho 'SELECT INSTANCE_NAME FROM V$INSTANCE;' | sqlplus / as sysdba
3
Last updated

