{"id":104009,"date":"2017-12-09T12:28:14","date_gmt":"2017-12-09T12:28:14","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=104009"},"modified":"2023-01-06T06:25:14","modified_gmt":"2023-01-06T06:25:14","slug":"bulk-insert-table-magento-2","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/bulk-insert-table-magento-2\/","title":{"rendered":"How To Bulk Insert in A Table Magento 2"},"content":{"rendered":"<p>How To Bulk Insert in A Table Magento 2 : Sometime we need to insert multiple records in table using a single step. because insert record one by one it takes so much time. so for the better performance, you can insert multiple records in a table if you want. and it will take less time. so i am going to explain how you can insert bulk records in a database table.<\/p>\n<p>1 =&gt; First make a class where you will define the connection with table for bulk insert.<br \/>\nso here i have created a class in model directory on this location (Webkul\\BulkInsertTest\\Model\\Storage).<\/p>\n<pre class=\"brush:php\">namespace Webkul\\BulkInsertTest\\Model\\Storage;\n\nuse Magento\\Framework\\App\\ResourceConnection;\n\nclass DbStorage\n{\n    \/**\n     * DB Storage table name\n     *\/\n    const TABLE_NAME = 'wk_custom_table';\n\n    \/**\n     * Code of \"Integrity constraint violation: 1062 Duplicate entry\" error\n     *\/\n    const ERROR_CODE_DUPLICATE_ENTRY = 23000;\n\n    \/**\n     * @var \\Magento\\Framework\\DB\\Adapter\\AdapterInterface\n     *\/\n    protected $connection;\n\n    \/**\n     * @var Resource\n     *\/\n    protected $resource;\n\n    \/**\n     * @param \\Magento\\Framework\\App\\ResourceConnection $resource\n     *\/\n    public function __construct(\n        ResourceConnection $resource\n    ) {\n        $this-&gt;connection = $resource-&gt;getConnection();\n        $this-&gt;resource = $resource;\n    }\n\n    \/**\n     * Insert multiple\n     *\n     * @param array $data\n     * @return void\n     * @throws \\Magento\\Framework\\Exception\\AlreadyExistsException\n     * @throws \\Exception\n     *\/\n    public function insertMultiple($data, $tableName = self::TABLE_NAME)\n    {\n        try {\n            $tableName = $this-&gt;resource-&gt;getTableName(self::TABLE_NAME);\n            return $this-&gt;connection-&gt;insertMultiple($tableName, $data);\n        } catch (\\Exception $e) {\n            if ($e-&gt;getCode() === self::ERROR_CODE_DUPLICATE_ENTRY\n                &amp;&amp; preg_match('#SQLSTATE\\[23000\\]: [^:]+: 1062[^\\d]#', $e-&gt;getMessage())\n            ) {\n                throw new \\Magento\\Framework\\Exception\\AlreadyExistsException(\n                    __('URL key for specified store already exists.')\n                );\n            }\n            throw $e;\n        }\n    }\n}<\/pre>\n<p>Here TABLE_NAME constant contain table name.<\/p>\n<p>2 =&gt; Now you have to just create an array of data and call the method.<\/p>\n<pre class=\"brush:php\">foreach($records as $record) {\n    $bulkInsert[] = [\n        'first_name' =&gt; $record['first_name'],\n        'last_name' =&gt; $record['last_name']\n    ];\n}\n\n$objectManager = \\Magento\\Framework\\App\\ObjectManager::getInstance();\n$dbStorage = $objectManager-&gt;get('Webkul\\BulkInsertTest\\Model\\Storage');\n$dbStorage-&gt;insertMultiple($bulkInsert, 'wk_custom_table',);<\/pre>\n<p>Hope so it will help.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>How To Bulk Insert in A Table Magento 2 : Sometime we need to insert multiple records in table using a single step. because insert record one by one it takes so much time. so for the better performance, you can insert multiple records in a table if you want. and it will take less <a href=\"https:\/\/webkul.com\/blog\/bulk-insert-table-magento-2\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":92,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[302],"tags":[5859,5860,5862,5861],"class_list":["post-104009","post","type-post","status-publish","format-standard","hentry","category-magento2","tag-how-to-bulk-insert-in-a-table-magento-2","tag-insert-multiple-records-in-table","tag-mass-insert","tag-multi-insert"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How To Bulk Insert in A Table Magento 2, insert multiple records in table, multi insert, mass insert<\/title>\n<meta name=\"description\" content=\"How To Bulk Insert in A Table Magento 2, insert multiple records in table, multi insert, mass insert\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/bulk-insert-table-magento-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Bulk Insert in A Table Magento 2, insert multiple records in table, multi insert, mass insert\" \/>\n<meta property=\"og:description\" content=\"How To Bulk Insert in A Table Magento 2, insert multiple records in table, multi insert, mass insert\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/bulk-insert-table-magento-2\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2017-12-09T12:28:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-01-06T06:25:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Narendra\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Narendra\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/bulk-insert-table-magento-2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/bulk-insert-table-magento-2\/\"},\"author\":{\"name\":\"Narendra\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/3c4771ea9c127b5c6e7d1ff8b58ec70a\"},\"headline\":\"How To Bulk Insert in A Table Magento 2\",\"datePublished\":\"2017-12-09T12:28:14+00:00\",\"dateModified\":\"2023-01-06T06:25:14+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/bulk-insert-table-magento-2\/\"},\"wordCount\":138,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"keywords\":[\"How To Bulk Insert in A Table Magento 2\",\"insert multiple records in table\",\"mass insert\",\"multi insert\"],\"articleSection\":[\"Magento2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/bulk-insert-table-magento-2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/bulk-insert-table-magento-2\/\",\"url\":\"https:\/\/webkul.com\/blog\/bulk-insert-table-magento-2\/\",\"name\":\"How To Bulk Insert in A Table Magento 2, insert multiple records in table, multi insert, mass insert\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"datePublished\":\"2017-12-09T12:28:14+00:00\",\"dateModified\":\"2023-01-06T06:25:14+00:00\",\"description\":\"How To Bulk Insert in A Table Magento 2, insert multiple records in table, multi insert, mass insert\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/bulk-insert-table-magento-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/bulk-insert-table-magento-2\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/bulk-insert-table-magento-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Bulk Insert in A Table Magento 2\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/3c4771ea9c127b5c6e7d1ff8b58ec70a\",\"name\":\"Narendra\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/303d2e21e5f58ef4ebc1e13fa3c2ef91c7e27b33a9add5728a40545b6de1d269?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/303d2e21e5f58ef4ebc1e13fa3c2ef91c7e27b33a9add5728a40545b6de1d269?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Narendra\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/narendra962\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How To Bulk Insert in A Table Magento 2, insert multiple records in table, multi insert, mass insert","description":"How To Bulk Insert in A Table Magento 2, insert multiple records in table, multi insert, mass insert","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/webkul.com\/blog\/bulk-insert-table-magento-2\/","og_locale":"en_US","og_type":"article","og_title":"How To Bulk Insert in A Table Magento 2, insert multiple records in table, multi insert, mass insert","og_description":"How To Bulk Insert in A Table Magento 2, insert multiple records in table, multi insert, mass insert","og_url":"https:\/\/webkul.com\/blog\/bulk-insert-table-magento-2\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2017-12-09T12:28:14+00:00","article_modified_time":"2023-01-06T06:25:14+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png","type":"image\/png"}],"author":"Narendra","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Narendra","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/bulk-insert-table-magento-2\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/bulk-insert-table-magento-2\/"},"author":{"name":"Narendra","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/3c4771ea9c127b5c6e7d1ff8b58ec70a"},"headline":"How To Bulk Insert in A Table Magento 2","datePublished":"2017-12-09T12:28:14+00:00","dateModified":"2023-01-06T06:25:14+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/bulk-insert-table-magento-2\/"},"wordCount":138,"commentCount":1,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"keywords":["How To Bulk Insert in A Table Magento 2","insert multiple records in table","mass insert","multi insert"],"articleSection":["Magento2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/bulk-insert-table-magento-2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/bulk-insert-table-magento-2\/","url":"https:\/\/webkul.com\/blog\/bulk-insert-table-magento-2\/","name":"How To Bulk Insert in A Table Magento 2, insert multiple records in table, multi insert, mass insert","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"datePublished":"2017-12-09T12:28:14+00:00","dateModified":"2023-01-06T06:25:14+00:00","description":"How To Bulk Insert in A Table Magento 2, insert multiple records in table, multi insert, mass insert","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/bulk-insert-table-magento-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/bulk-insert-table-magento-2\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/bulk-insert-table-magento-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How To Bulk Insert in A Table Magento 2"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/3c4771ea9c127b5c6e7d1ff8b58ec70a","name":"Narendra","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/303d2e21e5f58ef4ebc1e13fa3c2ef91c7e27b33a9add5728a40545b6de1d269?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/303d2e21e5f58ef4ebc1e13fa3c2ef91c7e27b33a9add5728a40545b6de1d269?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Narendra"},"url":"https:\/\/webkul.com\/blog\/author\/narendra962\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/104009","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/92"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=104009"}],"version-history":[{"count":3,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/104009\/revisions"}],"predecessor-version":[{"id":363333,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/104009\/revisions\/363333"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=104009"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=104009"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=104009"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}