Archive for November, 2007

RemoteOperationException: ERROR: NMO not setuid-root (Unix-only)

Hi All,
I was trying using Oracle Enterprise Manager to start the database/Listener and when I tried to start the database/listener through OEM i got the following error
RemoteOperationException: ERROR: NMO not setuid-root (Unix-only)
Later on I discovered that the error was since the root.sh script was not run properly.
Then i tried to rerun the root.sh which is […]

A Shell Script To Take RMAN Cold,Hot and Export Backup

#!/bin/bash
ORACLE_SID=OTM;export ORACLE_SID
echo $ORACLE_SID
echo “Please Specify the kind of backup you want to take”
echo “1) COLD BACKUP”
echo “2) HOT BACKUP”
echo “3) EXPORT BACKUP”
echo “Enter your option”
read option
while [ $option -gt 3 ]||[ $option -le 0 ]
do
echo “Please Enter the correct option”
read option
done
case $option in
1|2) echo “You are taking rman backup of DB”
   rman target sys/sys @/oracle/product/11g/rman_backup_$option.txt;exit;;
3) […]


Close
E-mail It