#---------------------------------------------------------------------
#Minute (0-59),
#|      Hour (0-23),
#|      |       Day of the month (1-31),
#|      |       |       Month of the year (1-12),
#|      |       |       |       Day of the week (0-6 with 0=Sunday).
#|      |       |       |       |       Commands
#|      |       |       |       |       |
#---------------------------------------------------------------------


#==============#
# Every 1 hour #
#==============#
0 */1 * * * /home/oracle/emeralit/scripts/monitor_tablespace.sh /home/oracle/emeralit/scripts/emeralit_env.sh >/dev/null 2>&1


#=================#
# Every 2 minutes #
#=================#
*/2 * * * * /home/oracle/emeralit/scripts/monitor_instance_availability.sh /home/oracle/emeralit/scripts/emeralit_env.sh >/dev/null 2>&1


#==============================#
# Every 5 minutes, 7 AM - 7 PM #
#==============================#
*/5 7-19 * * * /home/oracle/micore/scripts/monitor_dbwaits.sh /home/oracle/micore/scripts/micore_env.sh >/dev/null 2>&1


#================================#
# Every Tuesday, once at 8:30 PM #
#================================#
30 20 * * 2 /home/oracle/micore/scripts/remove_trace_files.sh /home/oracle/micore/scripts/micore_env.sh >/dev/null 2>&1


#=========================================#
# Every Monday to Friday, once at 5:30 PM #
#=========================================#
30 17 * * 1-5 /home/oracle/micore/scripts/rman_backup_nebfprd_lev_1.sh /home/oracle/micore/scripts/micore_env.sh >/dev/null 2>&1


# CAUTION # If scheduled job running fine from command line, but not working as expected on crontab, please add this line at the top of script "source ./.bash_profile"


	
	

Your Comments