編輯計劃任務並執行

skyin_1603發表於2016-11-10
在日常的資料庫管理當中,自動化地執行一些資料庫日常管理的任務是
必不可少的,這就需要我們進行一下計劃任務,編寫到使用者的計劃任務當中。
以下是一個計劃任務編輯並執行效果認證的的例子:

---計劃任務:

--計劃任務:每個3分鐘將/home/home.text中的內容寫到/home/oracle/orahome.text中:

[oracle@su ~]$ pwd

/home/oracle

[oracle@su ~]$ touch orahome.text

[oracle@su ~]$ cat orahome.text

[oracle@su ~]$

 

---檢視/home/home.text的內容:

[oracle@su home]$ cat home.text

my heart will go on and on

HELLO,MYHOME     #脦碌募脪脮

hello,myhome!

[oracle@su home]$

 

---檢視計劃任務:

[oracle@su ~]$

[oracle@su ~]$ crontab -l

*/3 * * * * /bin/cat /home/home.text>>/home/oracle/orahome.text

 

--檢視時間:

[oracle@su ~]$ date

Wed Nov  9 22:23:56 CST 2016

 

--等到22:30分的時候,檢視檔案orahome.text的內容:

[oracle@su ~]$ date

Wed Nov  9 22:32:11 CST 2016

#時間已經到。

---檢視檔案orahome.text的內容。

[oracle@su ~]$

[oracle@su ~]$ cat orahome.text

my heart will go on and on

HELLO,MYHOME     #脦碌募脪脮

hello,myhome!

my heart will go on and on

HELLO,MYHOME     #脦碌募脪脮

hello,myhome!

my heart will go on and on

HELLO,MYHOME     #脦碌募脪脮

hello,myhome!

[oracle@su ~]$

#可知已經寫了3次了

可以看到,計劃任務執行完畢。
這些任務都能在系統的後臺進行中執行,達到自動化的效果。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31392094/viewspace-2128209/,如需轉載,請註明出處,否則將追究法律責任。

相關文章