数据库中如何实现大量数据快速插入方法

网友投稿 320 2024-01-05

数据库中如何实现大量数据快速插入方法

这篇文章将为大家详细讲解有关数据库中如何实现大量数据快速插入方法,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。

1     环境搭建

数据库中如何实现大量数据快速插入方法

构建一个千万级别的源表,向一个空表insert操作。

参考指标:insert动作完成的实际时间。

SQL> drop tabletest_emp cascadeconstraints purge; Table dropped. SQL>create table test_emp as select*from emp; Table created. SQL> begin2  for i in 1..10 loop  3  insert into test_emp select *from test_emp;   --批量dml,建议forall  4  end loop;  5  end;  6  / PL/SQL procedure successfully completed. SQL> selectcount(*) from test_emp;  COUNT(*)----------     14336 SQL> begin  2  for i in 1..10 loop  3  insert into test_emp select *from test_emp;  4  endloop5  ;  6  end;  7  / PL/SQL procedure successfully completed. SQL> selectcount(*) from test_emp;    COUNT(*)----------  14680064            --1.5千万级别

2     only append

SQL> set timing onSQL> show timing timing ON SQL> insert/*+ append */ into test_goalselect * from test_emp; 14680064rows created.

Elapsed: 00:00:20.72

没有关闭日志,所以时间是最长的。

3     append+nologging

SQLtruncate table test_goal; Table truncated. Elapsed00:00:00.11 SQLinsert /*+ append */ into test_goalselect * from test_emp nologging; 14680064 rows created.

Elapsed: 00:00:04.82

发现日志对插入的影响很大,加nologging时间明显大幅缩短;当然这个表没有索引、约束等,这里暂不考究。

4     append+nologging+parallel

SQL> truncate table test_goal; Table truncated.   Elapsed: 00:00:00.09 SQL> insert /*+ parallel(2) append */into test_goal select * from test_emp nologging; 14680064rows created.

Elapsed: 00:00:02.86

这里在3的基础上加上并行,性能基本达到极限,1.5千万数据插入时间控制在3S左右。并行在服务器性能支持的情况下,可以加大并行参数

关于“数据库中如何实现大量数据快速插入方法”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:sqlserver的表、视图、索引如何实现创建、修改、删除操作
下一篇:vue和es6的关系(vue和egg)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~