#!/bin/sh
#
# start 11g DB  This shell script takes care of starting and stopping
#        the Oracle database.
#
# chkconfig: 2345 95 20
# description: Starts the Oracle DB

. /etc/rc.d/init.d/functions

    echo "Starting Oracle 11.2.0.3 database..."
        su -c "/scripts/db.sh start orcl" - oracle

