针对分区表一个月3个分区定期清理脚本
Posted ss-33
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了针对分区表一个月3个分区定期清理脚本相关的知识,希望对你有一定的参考价值。
1.定时任务--当前月的前一个月的当前日期
05 20 1 * * /bin/sh /home/oracle/truncate_partition.sh &> /dev/null
05 20 11 * * /bin/sh /home/oracle/truncate_partition.sh &> /dev/null
05 20 21 * * /bin/sh /home/oracle/truncate_partition.sh &> /dev/null
[[email protected]]$ cat /home/oracle/truncate_partition.sh
#!/bin/bash
source /home/oracle/.bash_profile
sqlplus -s test/[email protected]>> /home/oracle//truncate_partition.log <<EOF
set feedback off heading off term off
set pages 1000 trim on trims on lines 32767 long 999999
set echo off
spool /home/oracle/truncate_partition_`date +%y%m%d`.sql
@/home/oracle//truncate_partition.sql
spool off
EOF
sqlplus sys/[email protected] sysdba >> /home/oracle/exec_truncate_p.log <<EOF
@/home/oracle/truncate_partition_`date +%y%m%d`.sql
EOF
以上是关于针对分区表一个月3个分区定期清理脚本的主要内容,如果未能解决你的问题,请参考以下文章