Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#!/bin/bash
cvalue=$(
$ORAHOME/bin sqlplus "/ as sysdba" <<EOS
set linesize 132
set pagesize 999
set head off
set feed off
select count(*) from dual;
EOS
)
if [ "$cvalue" = 0 ] then
mail -s "zero rows were returned" groking@email.com
fi