程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle數據庫基礎 >> Oracle Insert和bulk Insert測速對比實例

Oracle Insert和bulk Insert測速對比實例

編輯:Oracle數據庫基礎

經過長時間接觸Oracle Insert和bulk Insert,我對比了一下他們的執行效率。在這裡和大家分享一下,希望你看完本文後有不少收獲。

測試Java的insert 同使用9i以後的bulk Insert 的速度,結果顯示通過bulk Insert 速度相當的快.

100000條記錄

insert ,---------------93秒

bulk Insert -------------0.441秒

環境:

Oracle 10.2.0.3 Windows 2000Server

Java

代碼:

  1. SQL> desc a  
  2. Name Type Nullable Default Comments   
  3. ---- ------------ -------- ------- --------   
  4. ID INTEGER Y   
  5. NAME VARCHAR2(20) Y   

bulk Insert 使用的類型及過程

  1. create or replace type i_table is table of number(10);  
  2. create or replace type v_table is table of varchar2(10);  
  3. create or replace procedure pro_forall_insert(v_1 i_table,v_2 v_table)  
  4. as  
  5. c integer;  
  6. begin  
  7. forall i in 1.. v_1.count   
  8. insert into a values(v_1(i),v_2(i));  
  9. end;  
  10.  

測試的Java代碼:

  1. import Java.io.*;  
  2. import Java.sql.*;  
  3. import Java.util.*;  
  4. import Javax.naming.Context;  
  5. import Javax.naming.InitialContext;  
  6. import Javax.naming.*;  
  7. import oracle.jdbc.OracleTypes;  
  8. import Oracle.sql.*;  
  9. import Oracle.sql.ARRAY;  
  10. import Oracle.sql.ArrayDescriptor;  
  11. import Oracle.sql.STRUCT;  
  12. import Oracle.sql.StructDescriptor;  
  13. import Java.sql.Connection;  
  14. import Java.sql.DriverManager;  
  15. import oracle.jdbc.OracleCallableStatement;  
  16.  
  17. public class testOracle {  
  18. public testOracle() {  
  19. Connection oraCon = null;  
  20. PreparedStatement ps = null;  
  21. Statement st = null;  
  22. ResultSet rs = null;  
  23. try {  
  24. try {  
  25. Class.forName("oracle.jdbc.driver.OracleDriver");  
  26. } catch (ClassNotFoundException ex) {}  
  27. oraCon = DriverManager.getConnection("jdbc:Oracle:thin:@192.168.15.234:1521:ora10g", "imcs","imcs");  
  28. oraCon.setAutoCommit(false);  
  29. } catch (SQLException ex) {  
  30. ex.printStackTrace();  
  31. }  
  32. CallableStatement cstmt = null;  
  33. Oracle.sql.ArrayDescriptor a = null;  
  34. Oracle.sql.ArrayDescriptor b = null;  
  35. if (1 == 1 )  
  36. {  
  37. Object[] s1 = new Object[100000];  
  38. Object[] s2 = new Object[100000];  
  39. for (int i = 0; i < 100000; i++) {  
  40. s1[i] = new Integer(1);  
  41. s2[i] = new String("aaa").concat(String.valueOf(i));  
  42. }  
  43. try {  
  44. a = Oracle.sql.ArrayDescriptor.createDescriptor("I_TABLE", oraCon);  
  45. b = Oracle.sql.ArrayDescriptor.createDescriptor("V_TABLE", oraCon);  
  46. ARRAY a_test = new ARRAY(a, oraCon, s1);  
  47. ARRAY b_test = new ARRAY(b, oraCon, s2);  
  48. cstmt = oraCon.prepareCall("{ call pro_forall_insert(?,?) }");  
  49. cstmt.setObject(1, a_test);  
  50. cstmt.setObject(2, b_test);  
  51. long aaaa = System.currentTimeMillis();  
  52. System.out.println(System.currentTimeMillis());  
  53. cstmt.execute();  
  54. oraCon.commit();  
  55. System.out.println(System.currentTimeMillis()-aaaa);  
  56.  catch (Exception e) {  
  57. e.printStackTrace();  
  58. }  
  59. }  
  60. else  
  61. {  
  62. try  
  63. {  
  64. PreparedStatement oraPs = null;  
  65. String oraInsertSql =  
  66. "insert into a values(?,?)";  
  67. oraPs = oraCon.prepareStatement(oraInsertSql);  
  68. long aaaa = System.currentTimeMillis();  
  69. System.out.println(System.currentTimeMillis());  
  70. for (int i = 0; i < 100000; i++)  
  71. {  
  72. oraPs.setInt(1,i);  
  73. oraPs.setString(2, new String("aaa").concat(String.valueOf(i)));  
  74. oraPs.executeUpdate();   
  75. }  
  76. oraCon.commit();  
  77. System.out.println(System.currentTimeMillis()-aaaa);  
  78. }  
  79. catch (SQLException ex)  
  80. {  
  81. System.out.print("dddddd");  
  82. System.out.print(ex.getMessage());  
  83. }  
  84. }  
  85. try {  
  86. jbInit();  
  87. } catch (Exception ex) {  
  88. ex.printStackTrace();  
  89. }  
  90. }  
  91. public static void main(String args[]) {  
  92. testOracle a = new testOracle();  
  93. }  
  94. private void jbInit() throws Exception {  
  95. }  
  96. };  
  97.  
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved