码迷,mamicode.com
首页 > 其他好文 > 详细

postgres 使用存储过程批量插入数据

时间:2014-07-03 17:52:18      阅读:427      评论:0      收藏:0      [点我收藏+]

标签:blog   http   使用   数据   os   2014   

参考资料(pl/pgsql 官方文档): http://www.postgresql.org/docs/9.3/static/plpgsql.html



create or replace function creatData2() returns 
boolean AS
$BODY$
declare ii integer;
  begin
  II:=1;
  FOR ii IN 1..10000000 LOOP
  INSERT INTO ipm_model_history_data (res_model, res_id) VALUES (116, ii);
  end loop;
  return true;
  end;
$BODY$
LANGUAGE plpgsql;
select * from creatData2() as tab;


插入1千万条数据耗时610s,当然字段不多的情况下。

postgres 使用存储过程批量插入数据,布布扣,bubuko.com

postgres 使用存储过程批量插入数据

标签:blog   http   使用   数据   os   2014   

原文地址:http://blog.csdn.net/ngforever/article/details/36434993

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!