Where there is a will there is a way
发布时间:2012-12-10 18:56:41
停job就是将job的状态改为broken,然后杀死正在运行的job;1.确定要停止的JOB号select * from dba_jobs_running;select * from dba_jobs order by job;2.Broken你确认停用的JOBexec dbms_job.broken(92,true);select job,log_user,broken,last_date,next_date from dba_jobs where job =309057;3.确定 sid,serial#select sid,serial# from v$session where sid ......【阅读全文】
发布时间:2012-12-09 19:20:22
使用crontab你可以在指定的时间执行一个shell脚本或者一系列Linux命令。例如系统管理员安排一个备份任务使其每天都运行如何往 cron 中添加一个作业?# crontab –e0 5 * * * /root/bin/backup.sh这将会在每天早上5点运行 /root/bin/backup.shCron 各项的描述以下是 crontab 文件的格式:{minute} {hour} {day-of-month} {month} {day-of-week} {full-path-to-shell-script} o minute: 区间为 0 – 59 o hour......【阅读全文】