日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網(wǎng)為廣大站長(zhǎng)提供免費(fèi)收錄網(wǎng)站服務(wù),提交前請(qǐng)做好本站友鏈:【 網(wǎng)站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(wù)(50元/站),

點(diǎn)擊這里在線咨詢客服
新站提交
  • 網(wǎng)站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會(huì)員:747

mysql 大批量插入解決方案

 

使用場(chǎng)景:

測(cè)試時(shí)需要插入100w甚至1000w,1億以上的數(shù)據(jù),跑sql腳本循環(huán)插入或者程序遍歷插入非常慢。

//DELIMITER
DROP PROCEDURE if EXISTS createAmountCount;
create PROCEDURE createAmountCount()
BEGIN
DECLARE i int;
set i=0;
drop table if exists person ;
create table person( 
id int not null auto_increment, 
name varchar(40) not null, 
age int, 
primary key(id) 
)engine=innodb charset=gb2312;
while i<10000 
DO
insert into person (name, age) values(CONCAT('usercode',i));
set i=i+1;
end while;
END;
//DELIMITER
CALL createAmountCount();

解決思路:

  1. 寫入文件
  2. 文件導(dǎo)入到MySQL中

實(shí)現(xiàn)舉例(以100w為例)

1. 使用sql 生成100w數(shù)據(jù)到txt文件中。

public static void main(String[] args) throws IOException {
 // TODO Auto-generated method stub
 BufferedWriter writer = new BufferedWriter(new FileWriter(new File("D:/driver/data.txt"), true));
 for(int i=0;i<1000000;i++){
 if(i%10==0){
 writer.write("趙"+(i/10)+"t"+ (int)(Math.random()*100)+"n");
 }if(i%10==1){
 writer.write("錢"+(i/10)+"t"+ (int)(Math.random()*100)+"n");
 }
 if(i%10==2){
 writer.write("孫"+(i/10)+"t"+ (int)(Math.random()*100)+"n");
 }if(i%10==3){
 writer.write("李"+(i/10)+"t"+ (int)(Math.random()*100)+"n");
 }
 if(i%10==4){
 writer.write("鄭"+(i/10)+"t"+ (int)(Math.random()*100)+"n");
 }if(i%10==5){
 writer.write("吳"+(i/10)+"t"+ (int)(Math.random()*100)+"n");
 }
 if(i%10==6){
 writer.write("周"+(i/10)+"t"+ (int)(Math.random()*100)+"n");
 }if(i%10==7){
 writer.write("王"+(i/10)+"t"+ (int)(Math.random()*100)+"n");
 }
 if(i%10==8){
 writer.write("張"+(i/10)+"t"+ (int)(Math.random()*100)+"n");
 }if(i%10==9){
 writer.write("劉"+(i/10)+"t"+ (int)(Math.random()*100)+"n");
 }
 }
 writer.close();
 }

2. 數(shù)據(jù)庫中將數(shù)據(jù)導(dǎo)入表中:

create table person( 
id int not null auto_increment, 
name varchar(40) not null, 
age int, 
primary key(id) 
)engine=innodb charset=gb2312;
load data local infile 'D:/driver/data.txt' 
into table person(name,age);
select count(*) from person;

耗費(fèi)時(shí)間:

[SQL]load data local infile 'D:/driver/data.txt' 
into table person(name,age);
受影響的行: 1000000
時(shí)間: 10.067s

本方案的缺點(diǎn):

1.權(quán)限。 非admin用戶沒有導(dǎo)入。

2. 寫文件代碼。對(duì)測(cè)試人員來說,寫文件不僅僅限于JAVA,可以使用任何語言實(shí)現(xiàn)之。

分享到:
標(biāo)簽:mysql
用戶無頭像

網(wǎng)友整理

注冊(cè)時(shí)間:

網(wǎng)站:5 個(gè)   小程序:0 個(gè)  文章:12 篇

  • 51998

    網(wǎng)站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會(huì)員

趕快注冊(cè)賬號(hào),推廣您的網(wǎng)站吧!
最新入駐小程序

數(shù)獨(dú)大挑戰(zhàn)2018-06-03

數(shù)獨(dú)一種數(shù)學(xué)游戲,玩家需要根據(jù)9

答題星2018-06-03

您可以通過答題星輕松地創(chuàng)建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學(xué)四六

運(yùn)動(dòng)步數(shù)有氧達(dá)人2018-06-03

記錄運(yùn)動(dòng)步數(shù),積累氧氣值。還可偷

每日養(yǎng)生app2018-06-03

每日養(yǎng)生,天天健康

體育訓(xùn)練成績(jī)?cè)u(píng)定2018-06-03

通用課目體育訓(xùn)練成績(jī)?cè)u(píng)定