您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關數據庫中如何實現大量數據快速插入方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
構建一個千萬級別的源表,向一個空表insert操作。
參考指標:insert動作完成的實際時間。
SQL> drop table test_emp cascadeconstraints purge; Table dropped. SQL> create table test_emp as select *from emp; Table created. SQL> begin 2 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> select count(*) from test_emp; COUNT(*) ---------- 14336 SQL> begin 2 for i in 1..10 loop 3 insert into test_emp select *from test_emp; 4 end loop 5 ; 6 end; 7 / PL/SQL procedure successfully completed. SQL> select count(*) from test_emp; COUNT(*) ---------- 14680064 --1.5千萬級別
SQL> set timing on SQL> show timing timing ON SQL> insert /*+ append */ into test_goalselect * from test_emp; 14680064 rows created.
Elapsed: 00:00:20.72
沒有關閉日志,所以時間是最長的。
SQL> truncate table test_goal; Table truncated. Elapsed: 00:00:00.11 SQL> insert /*+ append */ into test_goalselect * from test_emp nologging; 14680064 rows created.
Elapsed: 00:00:04.82
發現日志對插入的影響很大,加nologging時間明顯大幅縮短;當然這個表沒有索引、約束等,這里暫不考究。
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; 14680064 rows created.
Elapsed: 00:00:02.86
這里在3的基礎上加上并行,性能基本達到極限,1.5千萬數據插入時間控制在3S左右。并行在服務器性能支持的情況下,可以加大并行參數。
關于“數據庫中如何實現大量數據快速插入方法”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。