mysql+php+pdo大量新增大資料

來源:互聯網
上載者:User

標籤:

1.使用insert into插入

  ini_set(‘max_execution_time‘,‘0‘);//限制逾時時間,因為第一種時間較長,索性設為0不限制
  $pdo = new PDO("mysql:host=localhost;dbname=oradt_cloud1520","root","123456");

    for($i=0; $i<100000; $i++){

    $str = strrand(32);

  $pdo -> exec("insert into scan_card_picture(uuid,account_id,handle_state,created_time,status,from_account,accuracy,ifupdate) values(‘".$str."‘,‘A7kVzZYK2EyAXm2jIVVpF0ls4M2LS00000001044‘,‘handled‘,‘2015-09-17 07:55:10‘,‘active‘,‘[email protected]‘,‘90‘,1)");
  }

  使用這種方法,時間大概得1個多小時,慢的很離譜的,實在沒辦法,就使用了第二種。

2. ini_set(‘max_execution_time‘,‘0‘);
  $pdo = new PDO("mysql:host=localhost;dbname=oradt_cloud1520","root","123456");

  $sql = "insert into scan_card_picture(uuid,account_id,handle_state,created_time,status,from_account,accuracy,ifupdate) values";

  for($i=0; $i<100000; $i++){
    $str = strrand(32);
    $sql .="(‘".$str."‘,‘A7kVzZYK2EyAXm2jIVVpF0ls4M2LS00000001044‘,‘handled‘,‘2015-09-17 07:55:10‘,‘active‘,‘[email protected]‘,‘90‘,1),";
  }
  $sql = substr($sql,0,strlen($sql)-1);
  var_dump($sql);
  if($pdo -> exec($sql)){
    echo "插入成功!";
    echo $pdo -> lastinsertid();
  }

  使用這種方法,添加10萬條時間也就是一分鐘吧。肯能運行過程中會報錯PDO::exec(): MySQL server has gone away ;可以在mysql控制台裡面set global max_allowed_packet=2*1024*1024*10;  (詳細參考http://www.cnblogs.com/zlx7/p/4763207.html)

3.網上查的還可以使用事物提交(每10條提交一次都可以,但是時間沒有第二種快),大家可以自己試試。。

  

mysql+php+pdo大量新增大資料

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.