OracleInsert和bulkInsert测速对比实例

经过长时间接触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.  

当前文章:OracleInsert和bulkInsert测速对比实例
文章链接:http://www.shufengxianlan.com/qtweb/news48/434398.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联