22 июня 2006 г.

checking sqlplus connection succeeded


#!/usr/bin/bash
INICIO=$(sqlplus -s user/password@dbname<< END awk '{printf $1}')

if [ -z ${INICIO} ]
then
echo "connected";
else
echo "not connected";
fi