List all crons and database links with scripts

I’m currently listing all interfaces – database links and cron jobs – into excel, and used these two scripts to automate the process.

Shell script to list all crons (note that this assumes crons in /etc/cron.d run as root):

01for fle in `ls /var/spool/cron/* | grep -v tmp`
02do
03    echo $fle ===============
04    grep -v '^#' $fle
05done
06echo Root crons
07for fle in `ls /etc/cron.d/*`
08do
09    grep -v '^#' $fle | sed -e 's/root//'
10done

And another shell script to check database links (here, change oracle_sid names at end to match names of your databases):

01go () {
02export ORACLE_SID=$1
03sqlplus -s '/ as sysdba' <<e1
04set pages 0 doc off lines 112 feed off
05select lower('$ORACLE_SID '||owner||' '||host||' '||username||' '||db_link)
06from dba_db_links
07order by 1
08/
09e1
10}
11go SID1
12go SID2

Paste the output into excel, and then use ‘data’ > ‘text to columns’ to turn it into readable content that can be sorted and filtered.

February 14, 2012

Leave a Reply

Your email address will not be published. Required fields are marked *