摘要:
insert_data.sh脚本如下: #!/bin/bashpsql -U uhxl -h localhost -d hxl << EOFselect sp_insert_data();EOF #pg生成测试数据*/40 * * * * /home/postgres/scripts/insert_ 阅读全文
摘要:
环境:OS:CentOs 7Postgres-11.6 源码编译 1.2 主库安装 1.2.1 安装介质准备下载地址: https://www.postgresql.org/ftp/source/我这里下载的是11.6版本,介质如下:postgresql-11.6.tar.gz这里下载的源码,所以下 阅读全文
摘要:
CREATE OR REPLACE FUNCTION sp_insert_data() RETURNS integer AS $total$ declare total integer; i integer := 1;BEGIN insert into tb_test(name) values('n 阅读全文