利用存储过程批量造数据

一、性能测试中,我们有时候为了测试性能的准确性,会往数据库批量造一些数据,下面介绍利用存储过程来实现

1、mysql实现

drop procedure if exists t_add; -- 如果存在t_add 存储过程则删除
create procedure t_add(num int)

begin
declare i int;
set i=0;
while i<num do

insert into sudents values ('',concat('张三',i+1),'',18,'计算机','北京市海淀区');
insert into score values('',i+1,'计算机','81');

set i=i+1;
end while;
end;

call t_add(100000); -- 调用存储过程,插入10万条数据

2、oracle实现

create or replace procedure t_add(num int) -- 如果存在t_add 存储过程则替换
as
i int;

begin
i:=0;
while i<num LOOP

insert into sudents values (sys_guid(),concat('张三',i),'',18,'计算机',to_char(sysdate,'yyyy-MM-dd HH24:mi:ss'),'北京市海淀区');
insert into score values('',i,'计算机','81');

i:=i+1; 
commit; 
end LOOP; 
end;

call t_add(100000); -- 调用存储过程,插入10万条数据
posted @ 2017-01-02 15:24  小郗测试  阅读(5243)  评论(0编辑  收藏  举报