用Oracle批量生成测试数据集合
作者:管理员 发布时间:[ 2010/2/20 15:52:15 ] 推荐标签:
1,Test Windows 方式
declare
maxrecords constant int:=1000;
i int :=1;
begin
for i in 1..maxrecords loop
insert into test2
(id, name)
values
(test2_seq.nextval, to_char('9999'+i));
end loop;
dbms_output.put_line(' 成功录入数据! ');
commit;
end;
2,从一张表里往另外的表里导入数据的命令
create or replace procedure TestProc is
begin
for c in(select id, name from test2) loop
insert into test
(id,
name)
values
(test_seq.nextval,
c.name);
end loop;
end TestProc;
这样是不是很方便处理大量测试集了呢?
相关推荐
更新发布
功能测试和接口测试的区别
2023/3/23 14:23:39如何写好测试用例文档
2023/3/22 16:17:39常用的选择回归测试的方式有哪些?
2022/6/14 16:14:27测试流程中需要重点把关几个过程?
2021/10/18 15:37:44性能测试的七种方法
2021/9/17 15:19:29全链路压测优化思路
2021/9/14 15:42:25性能测试流程浅谈
2021/5/28 17:25:47常见的APP性能测试指标
2021/5/8 17:01:11