1、打开ql/sql测试窗口


oracle自动插入100w行记录

2、输入脚本

 

-- Created on 2012/11/7 by JERRY 

declare 

  -- Local variables here

  count integer;

begin

  -- Test statements here

  dbms_output.put_line('start:'||sysdate);

 

  for count in 1..1000000 loop

    insert into gather_hour a 

           values (sys_guid(), sysdate, sys_guid(), sys_guid(), 123, sys_guid(), 100022229999);

    commit;

  end loop;

 

  dbms_output.put_line('end:'||sysdate);

end;

 


oracle自动插入100w行记录

 

3、执行脚本


oracle自动插入100w行记录

相关文章:

  • 2021-10-09
  • 2021-11-03
  • 2022-12-23
  • 2022-12-23
  • 2022-01-03
  • 2022-12-23
  • 2021-09-29
  • 2022-02-02
猜你喜欢
  • 2022-01-26
  • 2021-11-17
  • 2022-12-23
  • 2021-08-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案