postgres没有自带job可以尝试使用crontab做定时执行

 

insert_data.sh脚本如下:

#!/bin/bash
psql -U uhxl -h localhost -d hxl << EOF
select sp_insert_data();
EOF

#pg生成测试数据
*/40 * * * * /home/postgres/scripts/insert_data.sh 1>/dev/null 2>&1

posted @ 2020-01-14 16:47  slnngk  阅读(479)  评论(0编辑  收藏  举报