The database I use is MySQL database version 5.7 First prepare the database table yourself Actually, I encountered some problems when inserting 10 million data. Now I will solve them first. At the beginning, I got an error when inserting 1 million data. The console information is as follows:
The above error occurs because the max_allowed_packet configuration of the database table is not large enough, because the default is 4M. Later, I adjusted it to 100M and no error was reported. set global max_allowed_packet = 100*1024*1024* Remember, you need to log in to the database again after setting it to see the set value show VARIABLES like '%max_allowed_packet%' The code is as follows: package insert; import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; import java.util.Date; import com.mysql.jdbc.PreparedStatement; public class InsertTest { public static void main(String[] args) throws ClassNotFoundException, SQLException { final String url = "jdbc:mysql://127.0.0.1/teacher" ; final String name = "com.mysql.jdbc.Driver"; final String user = "root" ; final String password = "123456" ; Connection conn = null; Class.forName(name); //Specify the connection type conn = DriverManager.getConnection(url, user, password); //Get the connection if (conn!= null ) { System.out.println("Connection obtained successfully"); insert(conn); } else { System.out.println("Failed to obtain connection"); } } public static void insert(Connection conn) { // Start time Long begin = new Date().getTime(); // sql prefix String prefix = "INSERT INTO t_teacher (id,t_name,t_password,sex,description,pic_url,school_name,regist_date,remark) VALUES "; try { // Save sql suffix StringBuffer suffix = new StringBuffer(); // Set the transaction to non-auto commit conn.setAutoCommit( false ); // PST is better than ST PreparedStatement pst = (PreparedStatement) conn.prepareStatement( "" ); //Prepare to execute statement// Outer loop, total number of committed transactions for ( int i = 1 ; i <= 100 ; i++) { suffix = new StringBuffer(); // j-th submission step for ( int j = 1 ; j <= 100000 ; j++) { // Build SQL suffix suffix.append( "('" + uutil.UUIDUtil.getUUID()+ "','" +i*j+ "','123456'" + ",'Male'" + ",'Teacher'" + ",'www.bbk.com'" + ",'XX University'" + ",'" + "2016-08-12 14:43:26" + "','Note'" + ")," ); } // Build complete SQL String sql = prefix + suffix.substring( 0 , suffix.length() - 1 ); // Add execution SQL pst.addBatch(sql); // Execute operations pst.executeBatch(); // Commit transaction conn.commit(); // Clear the last added data suffix = new StringBuffer(); } //First-class connection pst.close(); conn.close(); } catch (SQLException e) { e.printStackTrace(); } // End time Long end = new Date().getTime(); // Time consuming System.out.println( "Time taken to insert 10 million records: " + (end - begin) / 1000 + " s" ); System.out.println("Insert completed"); } } Summarize The above is the operation method introduced by the editor to insert 10 million data into the MySQL database table in 88 seconds. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! You may also be interested in:
|
<<: ThingJS particle effects to achieve rain and snow effects with one click
>>: JavaScript offset implements mouse coordinate acquisition and module dragging within the window
1. Download and install VirtualBox software First...
When configuring web.xml for tomcat, servlet is a...
Because I want the virtual machine to have its ow...
This article example shares the specific code of ...
Table of contents Modify the repository source st...
Recently, we need to perform a scheduled migratio...
When using XAML layout, sometimes in order to make...
Preface The similarities and differences between ...
MySQL sets up independent writing separation. If ...
Recently, due to business adjustments in the comp...
There are many purposes for exporting MySQL data,...
Table of contents 1. VueRouter 1. Description 2. ...
This database query statement is one of 50 databa...
Html code: Copy code The code is as follows: <t...
Summarize This article ends here. I hope it can b...