<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic RE: Bulk Insert into MySQL Table in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Bulk-Insert-into-MySQL-Table/m-p/67304#M19909</link>
    <description>&lt;P&gt;FWIW - There is a MySQL VBO available on the DX.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://digitalexchange.blueprism.com/dx/entry/9648/solution/blue-prism---mysql-utility" target="test_blank"&gt;https://digitalexchange.blueprism.com/dx/entry/9648/solution/blue-prism---mysql-utility&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Partner Integrations for Digital Exchange&lt;BR /&gt;Blue Prism&lt;BR /&gt;------------------------------&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 23 Dec 2020 19:05:00 GMT</pubDate>
    <dc:creator>ewilson</dc:creator>
    <dc:date>2020-12-23T19:05:00Z</dc:date>
    <item>
      <title>Bulk Insert into MySQL Table</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Bulk-Insert-into-MySQL-Table/m-p/67300#M19905</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;
&lt;/P&gt;&lt;P&gt;Is there a way to do a bulk insert into MySQL table.&lt;/P&gt;
&lt;P&gt;
&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Jongjong Oclarit&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 22 Dec 2020 06:57:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Bulk-Insert-into-MySQL-Table/m-p/67300#M19905</guid>
      <dc:creator>JongjongOclari1</dc:creator>
      <dc:date>2020-12-22T06:57:00Z</dc:date>
    </item>
    <item>
      <title>RE: Bulk Insert into MySQL Table</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Bulk-Insert-into-MySQL-Table/m-p/67301#M19906</link>
      <description>&lt;P&gt;Hi jongjong&lt;/P&gt;
&lt;P&gt;
&lt;/P&gt;&lt;P&gt;Execute the sql statement and insert rows from a file.&lt;/P&gt;
&lt;P&gt;"BULK INSERT &lt;TABLE&gt; FROM '"&amp;amp;[path filename]&amp;amp;"' WITH (fieldterminator = ' ', rowterminator = '\n')"&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Kristian Holm&lt;BR /&gt;RPA programmer&lt;BR /&gt;PenSam (Pension Company)&lt;BR /&gt;Copenhagen Denmark&lt;BR /&gt;------------------------------&lt;BR /&gt;&lt;/TABLE&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Dec 2020 13:58:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Bulk-Insert-into-MySQL-Table/m-p/67301#M19906</guid>
      <dc:creator>KristianHolm1</dc:creator>
      <dc:date>2020-12-22T13:58:00Z</dc:date>
    </item>
    <item>
      <title>RE: Bulk Insert into MySQL Table</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Bulk-Insert-into-MySQL-Table/m-p/67302#M19907</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;
&lt;P&gt;I think the best way is to use MySqlBlukLoader. Here is a link of the documentation &lt;A href="https://dev.mysql.com/doc/connector-net/en/connector-net-programming-bulk-loader.html" target="_blank" rel="noopener"&gt;https://dev.mysql.com/doc/connector-net/en/connector-net-programming-bulk-loader.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Basically, this piece of code:&lt;/P&gt;
&lt;P&gt;&lt;CODE&gt;&lt;EM&gt;&lt;SPAN class="token keyword"&gt;string&lt;/SPAN&gt; connStr &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;"server=localhost;user=root;database=test;port=3306;password=******"&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt; &lt;/EM&gt;&lt;BR /&gt;
&lt;EM&gt;MySqlConnection conn &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token keyword"&gt;new&lt;/SPAN&gt; &lt;SPAN class="token class-name"&gt;MySqlConnection&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;connStr&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/EM&gt;&lt;BR /&gt;
&lt;EM&gt;MySqlBulkLoader bl &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token keyword"&gt;new&lt;/SPAN&gt; &lt;SPAN class="token class-name"&gt;MySqlBulkLoader&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;conn&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt; &lt;/EM&gt;&lt;BR /&gt;
&lt;EM&gt;bl&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;Local &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token keyword"&gt;true&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt; &lt;/EM&gt;&lt;BR /&gt;
&lt;EM&gt;bl&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;TableName &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;"Career"&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt; &lt;/EM&gt;&lt;BR /&gt;
&lt;EM&gt;bl&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;FieldTerminator &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;"\t"&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt; &lt;/EM&gt;&lt;BR /&gt;
&lt;EM&gt;bl&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;LineTerminator &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;"\n"&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt; &lt;/EM&gt;&lt;BR /&gt;
&lt;EM&gt;bl&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;FileName &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;"c:/career_data.txt"&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/EM&gt;&lt;BR /&gt;
&lt;EM&gt;conn&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;Open&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/EM&gt;&lt;BR /&gt;
&lt;EM&gt;bl&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;Load&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;
&lt;/P&gt;&lt;P&gt;I hope I helped you&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Pablo Sarabia&lt;BR /&gt;Programmer&lt;BR /&gt;Altamira AM&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 22 Dec 2020 14:14:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Bulk-Insert-into-MySQL-Table/m-p/67302#M19907</guid>
      <dc:creator>PabloSarabia</dc:creator>
      <dc:date>2020-12-22T14:14:00Z</dc:date>
    </item>
    <item>
      <title>RE: Bulk Insert into MySQL Table</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Bulk-Insert-into-MySQL-Table/m-p/67303#M19908</link>
      <description>&lt;P&gt;Hi Guys,&lt;/P&gt;
&lt;P&gt;Thanks for the reply I will try your suggestion once i will get the data from a file.&lt;/P&gt;
&lt;P&gt;For now i will use this line of code below as data needs to be validated first.&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="hljs-keyword"&gt;INSERT&lt;/SPAN&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;SPAN class="hljs-keyword"&gt;INTO&lt;/SPAN&gt;&lt;SPAN&gt; projects(&lt;/SPAN&gt;&lt;SPAN class="hljs-keyword"&gt;name&lt;/SPAN&gt;&lt;SPAN&gt;, start_date, end_date) &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="hljs-keyword"&gt;VALUES&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;SPAN class="hljs-string"&gt;'AI for Marketing'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN class="hljs-string"&gt;'2019-08-01'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN class="hljs-string"&gt;'2019-12-31'&lt;/SPAN&gt;&lt;SPAN&gt;), (&lt;/SPAN&gt;&lt;SPAN class="hljs-string"&gt;'ML for Sales'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN class="hljs-string"&gt;'2019-05-15'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN class="hljs-string"&gt;'2019-11-20'&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;
&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Jongjong Oclarit&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 23 Dec 2020 03:59:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Bulk-Insert-into-MySQL-Table/m-p/67303#M19908</guid>
      <dc:creator>JongjongOclari1</dc:creator>
      <dc:date>2020-12-23T03:59:00Z</dc:date>
    </item>
    <item>
      <title>RE: Bulk Insert into MySQL Table</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Bulk-Insert-into-MySQL-Table/m-p/67304#M19909</link>
      <description>&lt;P&gt;FWIW - There is a MySQL VBO available on the DX.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://digitalexchange.blueprism.com/dx/entry/9648/solution/blue-prism---mysql-utility" target="test_blank"&gt;https://digitalexchange.blueprism.com/dx/entry/9648/solution/blue-prism---mysql-utility&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Partner Integrations for Digital Exchange&lt;BR /&gt;Blue Prism&lt;BR /&gt;------------------------------&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Dec 2020 19:05:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Bulk-Insert-into-MySQL-Table/m-p/67304#M19909</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2020-12-23T19:05:00Z</dc:date>
    </item>
    <item>
      <title>RE: Bulk Insert into MySQL Table</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Bulk-Insert-into-MySQL-Table/m-p/67305#M19910</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This approach will work only if SQL server has access to the file location, in many cases the Bot will get the Bulk Data from somewhere and need to insert it into DB, storing it into the file system may not be an option. also looping records one by one will take ages.&lt;/P&gt;
&lt;P&gt;
&lt;/P&gt;&lt;P&gt;What could be an option here?&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Bassam Yousif&lt;BR /&gt;Director&lt;BR /&gt;DAR-ME&lt;BR /&gt;Amman&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 24 Dec 2020 09:12:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Bulk-Insert-into-MySQL-Table/m-p/67305#M19910</guid>
      <dc:creator>bassam.yousif</dc:creator>
      <dc:date>2020-12-24T09:12:00Z</dc:date>
    </item>
  </channel>
</rss>

