91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

數據庫中如何實現大量數據快速插入方法

發布時間:2021-11-11 09:55:02 來源:億速云 閱讀:905 作者:小新 欄目:數據庫

這篇文章將為大家詳細講解有關數據庫中如何實現大量數據快速插入方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

1     環境搭建

構建一個千萬級別的源表,向一個空表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千萬級別

2     only append

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

沒有關閉日志,所以時間是最長的。

3     append+nologging

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時間明顯大幅縮短;當然這個表沒有索引、約束等,這里暫不考究。

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;
14680064 rows created.

Elapsed: 00:00:02.86

這里在3的基礎上加上并行,性能基本達到極限,1.5千萬數據插入時間控制在3S左右。并行在服務器性能支持的情況下,可以加大并行參數。

關于“數據庫中如何實現大量數據快速插入方法”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

许昌市| 新密市| 博客| 海兴县| 商都县| 阳信县| 南靖县| 银川市| 滨海县| 合阳县| 淄博市| 东兴市| 东山县| 雅江县| 乌鲁木齐县| 五家渠市| 北安市| 宁阳县| 新津县| 永登县| 济南市| 金门县| 津市市| 双峰县| 高安市| 宝山区| 木里| 嘉黎县| 罗平县| 渝北区| 桓台县| 库尔勒市| 建始县| 莲花县| 库伦旗| 个旧市| 浦东新区| 南涧| 台州市| 田林县| 益阳市|