<?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: [resolved] mysql component to execute multiple sql statements at once in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324728#M94399</link>
    <description>Hi jkrfs
&lt;BR /&gt;tMysqlRow don't support multiple statement at a time, I suggest to create a store procedure and call the store procedure with tMysqlSP component.
&lt;BR /&gt;Best regards
&lt;BR /&gt;Shong</description>
    <pubDate>Mon, 18 Apr 2011 05:09:23 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2011-04-18T05:09:23Z</dc:date>
    <item>
      <title>[resolved] mysql component to execute multiple sql statements at once</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324724#M94395</link>
      <description>Hi,&lt;BR /&gt;I have a bunch of tables I want to truncate, is there a mysql component I can call where I can truncate all the tables at once?  Something like executing the truncate statement in a script:&lt;BR /&gt;truncate table A;&lt;BR /&gt;truncate table B;&lt;BR /&gt;....&lt;BR /&gt;I know I can use tMysqlOutput or tMysqlRow, but I would need to create one component per table.&lt;BR /&gt;Thanks&lt;BR /&gt;Sarah</description>
      <pubDate>Sat, 16 Nov 2024 13:29:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324724#M94395</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T13:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] mysql component to execute multiple sql statements at once</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324725#M94396</link>
      <description>Hello 
&lt;BR /&gt;Iterate each table and truncate each one on tMysqlRow. for example:
&lt;BR /&gt;tMysqlTableList--iterate---tMysqlRow
&lt;BR /&gt;Best regards
&lt;BR /&gt;Shong</description>
      <pubDate>Mon, 22 Mar 2010 04:07:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324725#M94396</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-03-22T04:07:03Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] mysql component to execute multiple sql statements at once</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324726#M94397</link>
      <description>Thanks shong (you are quick with replies, much appreciated!) 
&lt;BR /&gt;This works for straightforward cases but the sqls I want to run any sql, not constrained by a single table. What I am trying to do here is to 're-initialize' a warehouse. To do so, for example, I need to truncate tables in certain order due to FK constraint, insert some seed data after truncate, call some stored procedures, etc. I don't think tMysqlTableList can do the trick. 
&lt;BR /&gt;Here's what I came up with, it's a bit ugly but it seems to work. Any suggestion on this is welcome. 
&lt;BR /&gt;The flow looks like this: 
&lt;BR /&gt;tFixedFlowInput --&amp;gt; tJavaFlex --&amp;gt; tMysqlRow 
&lt;BR /&gt;1. In the FixedFlowInput 
&lt;BR /&gt; a. create a dummy column 
&lt;BR /&gt; b. specify the number of rows - in this case the number of sql you want to execute 
&lt;BR /&gt;2. In tJavaFlex 
&lt;BR /&gt; a. Start code - put all your sql in a HashMap in the order you want to execute: example: 
&lt;BR /&gt;java.util.HashMap&amp;lt;Integer,String&amp;gt; sqlList = new java.util.HashMap&amp;lt;Integer,String&amp;gt;(); 
&lt;BR /&gt;Integer index = 1; 
&lt;BR /&gt;sqlList.put(1,"TRUNCATE TABLE table1"); 
&lt;BR /&gt;sqlList.put(2,"TRUNCATE TABLE table2"); 
&lt;BR /&gt;sqlList.put(3,"&amp;lt;whatever sql&amp;gt;"); 
&lt;BR /&gt; b. In the main code - put the current sql in a globalmap 
&lt;BR /&gt;globalMap.put("current_exec_sql",sqlList.get(index)); 
&lt;BR /&gt;index++; 
&lt;BR /&gt;3. In tMysqlRow 
&lt;BR /&gt; a. In the query: (String)globalMap.get("current_exec_sql") 
&lt;BR /&gt; 
&lt;BR /&gt;The good thing about this is that only one connection is opened for all sqls and you can basically specify any sql your want. The bad thing is, it's quite ugly.</description>
      <pubDate>Mon, 22 Mar 2010 17:16:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324726#M94397</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-03-22T17:16:37Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] mysql component to execute multiple sql statements at once</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324727#M94398</link>
      <description>I am trying to do the same, but something more complex like this:
&lt;BR /&gt;
&lt;PRE&gt;"CREATE TEMPORARY TABLE temp_security_id&lt;BR /&gt;AS SELECT DISTINCT security_id FROM trade_import&lt;BR /&gt;WHERE client_trade_import_id = " + context.clientTradeImportId +&lt;BR /&gt;" DELETE FROM trade_import&lt;BR /&gt;WHERE client_trade_import_id = " + context.clientTradeImportId +&lt;BR /&gt;" DELETE FROM security &lt;BR /&gt;WHERE id IN (SELECT security_id FROM temp_security_id)&lt;BR /&gt;DROP TABLE temp_security_id"&lt;/PRE&gt;
&lt;BR /&gt;However, its complaining about the syntax/mysql version. I am able to execute this outside of talend, but it does not work when using mysqlrow.
&lt;BR /&gt;Any idea how I can do this?</description>
      <pubDate>Fri, 15 Apr 2011 19:48:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324727#M94398</guid>
      <dc:creator>jkrfs</dc:creator>
      <dc:date>2011-04-15T19:48:37Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] mysql component to execute multiple sql statements at once</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324728#M94399</link>
      <description>Hi jkrfs
&lt;BR /&gt;tMysqlRow don't support multiple statement at a time, I suggest to create a store procedure and call the store procedure with tMysqlSP component.
&lt;BR /&gt;Best regards
&lt;BR /&gt;Shong</description>
      <pubDate>Mon, 18 Apr 2011 05:09:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324728#M94399</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-04-18T05:09:23Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] mysql component to execute multiple sql statements at once</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324729#M94400</link>
      <description>you could also wrap your multiple statements in a BEGIN/END block to avoid having to use multiple tMysqlRow components or a SP.</description>
      <pubDate>Mon, 18 Apr 2011 15:58:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324729#M94400</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-04-18T15:58:47Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] mysql component to execute multiple sql statements at once</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324730#M94401</link>
      <description>I currently chained 4 tMysqlRow statements to be able to do what I quoted above. However, I'd love to see an example of your method user JohnGarettMartin. 
&lt;BR /&gt;thanks</description>
      <pubDate>Wed, 20 Apr 2011 12:45:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324730#M94401</guid>
      <dc:creator>jkrfs</dc:creator>
      <dc:date>2011-04-20T12:45:49Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] mysql component to execute multiple sql statements at once</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324731#M94402</link>
      <description>in a tMysqlRow component:&lt;BR /&gt;&lt;PRE&gt;"&lt;BR /&gt;BEGIN&lt;BR /&gt;CREATE TEMPORARY TABLE temp_security_id&lt;BR /&gt;AS SELECT DISTINCT security_id FROM trade_import&lt;BR /&gt;WHERE client_trade_import_id = " + context.clientTradeImportId + ";&lt;BR /&gt;DELETE FROM trade_import&lt;BR /&gt;WHERE client_trade_import_id = " + context.clientTradeImportId + ";&lt;BR /&gt;DELETE FROM security &lt;BR /&gt;WHERE id IN (SELECT security_id FROM temp_security_id);&lt;BR /&gt;DROP TABLE temp_security_id;&lt;BR /&gt;END;"&lt;/PRE&gt;&lt;BR /&gt;you may need to adjust your syntax, but the general idea is that you wrap your statements with BEGIN/END to make them a single compound statement, allowing you to issue multiple statements with a single Row component.&lt;BR /&gt;The same strategy works with other databases as well.</description>
      <pubDate>Wed, 20 Apr 2011 15:23:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324731#M94402</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-04-20T15:23:19Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] mysql component to execute multiple sql statements at once</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324732#M94403</link>
      <description>@JohnGarrettMartin 
&lt;BR /&gt;I can't make this work. I have also tried this in phpmyadmin but it stil fails. 
&lt;BR /&gt;Does this need a specific mysql version?? 
&lt;BR /&gt;This is my query: 
&lt;BR /&gt;BEGIN 
&lt;BR /&gt;ALTER TABLE thetable ADD INDEX (revision); 
&lt;BR /&gt;ALTER TABLE thetable ADD INDEX (id); 
&lt;BR /&gt;END; 
&lt;BR /&gt;I just get "There is an error near... " nothing that indicates the error. 
&lt;BR /&gt;My current mysql version is: 5.1.41</description>
      <pubDate>Thu, 05 May 2011 15:15:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324732#M94403</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-05-05T15:15:55Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] mysql component to execute multiple sql statements at once</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324733#M94404</link>
      <description>Try this, I use it for mutiple SQL statement's 
&lt;BR /&gt;NOTE: SQL statements must be one line long. 
&lt;BR /&gt;eg. 
&lt;BR /&gt;SELECT * 
&lt;BR /&gt;FROM Test; 
&lt;BR /&gt;must be 
&lt;BR /&gt;SELECT * FROM Test; 
&lt;BR /&gt;Components: 
&lt;BR /&gt;tForEach -- iterate --&amp;gt; tMysqlRow 
&lt;BR /&gt; 
&lt;IMG src="https://community.qlik.com/" /&gt; 
&lt;BR /&gt; 
&lt;IMG src="https://community.qlik.com/" /&gt; 
&lt;BR /&gt;Code For tMysqlRow: 
&lt;BR /&gt; 
&lt;PRE&gt;((String)globalMap.get("tForeach_1_CURRENT_VALUE"))&lt;/PRE&gt; 
&lt;BR /&gt;Don't Forget to change tForeach number to match component number. 
&lt;BR /&gt;EG. 
&lt;BR /&gt;tForeach_1_CURRENT_VALUE 
&lt;BR /&gt;tForeach_2_CURRENT_VALUE 
&lt;BR /&gt;tForeach_3_CURRENT_VALUE 
&lt;BR /&gt;Sorry also to add. In your tMysqlConnection - Advanced Settings - Tick AutoCommit</description>
      <pubDate>Thu, 05 May 2011 16:36:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324733#M94404</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-05-05T16:36:43Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] mysql component to execute multiple sql statements at once</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324734#M94405</link>
      <description>Cool. 
&lt;BR /&gt;Thanks for this. Since I couldn't come to a solution using talend components, I used the tJava component and created code do perform the queries 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MACn.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/154443iC5B8CACEF3D12C6A/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MACn.png" alt="0683p000009MACn.png" /&gt;&lt;/span&gt; 
&lt;BR /&gt;Thanks again</description>
      <pubDate>Thu, 05 May 2011 18:14:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324734#M94405</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-05-05T18:14:38Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] mysql component to execute multiple sql statements at once</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324735#M94406</link>
      <description>Tried this&lt;BR /&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;DELIMITER $$&lt;BR /&gt;BEGIN&lt;BR /&gt;CREATE TEMPORARY TABLE temp_security_id&lt;BR /&gt;AS SELECT DISTINCT security_id FROM trade_import&lt;BR /&gt;WHERE client_trade_import_id = " + context.clientTradeImportId + ";&lt;BR /&gt;DELETE FROM trade_import&lt;BR /&gt;WHERE client_trade_import_id = " + context.clientTradeImportId + ";&lt;BR /&gt;DELETE FROM security &lt;BR /&gt;WHERE id IN (SELECT security_id FROM temp_security_id);&lt;BR /&gt;DROP TABLE temp_security_id;&lt;BR /&gt;END &lt;BR /&gt;$$&lt;BR /&gt;DELIMITER ;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;With and without delimiter, but nothing!</description>
      <pubDate>Wed, 11 May 2011 20:33:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324735#M94406</guid>
      <dc:creator>jkrfs</dc:creator>
      <dc:date>2011-05-11T20:33:30Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] mysql component to execute multiple sql statements at once</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324736#M94407</link>
      <description>It's actually much simpler than you're making it. The reason JohnGarrettMartin's approach - and many of the others - is because by default the mysql jdbc driver does two things: 
&lt;BR /&gt;1. Explicitly doesn't allow multiple queries in a single statement. 
&lt;BR /&gt;2. Stops executing after the first semi-colon ;. 
&lt;BR /&gt;It does this to alleviate the probability for SQL Injection. However, a configuration parameter allows you to get around this default behavior. Set your "Additional JDBC Parameters" to include "allowMultiQueries=true" 
&lt;BR /&gt;From there, you can simply put all of the queries you wish into the same tMysqlRow component. 
&lt;BR /&gt; 
&lt;BR /&gt;See the screenshots attached below.</description>
      <pubDate>Wed, 11 May 2011 22:09:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324736#M94407</guid>
      <dc:creator>rbaldwin</dc:creator>
      <dc:date>2011-05-11T22:09:57Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] mysql component to execute multiple sql statements at once</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324737#M94408</link>
      <description>It worked!</description>
      <pubDate>Wed, 11 May 2011 22:20:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324737#M94408</guid>
      <dc:creator>jkrfs</dc:creator>
      <dc:date>2011-05-11T22:20:14Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] mysql component to execute multiple sql statements at once</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324738#M94409</link>
      <description>that guy rbaldwin is creepy good.</description>
      <pubDate>Thu, 12 May 2011 03:10:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324738#M94409</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-05-12T03:10:34Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] mysql component to execute multiple sql statements at once</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324739#M94410</link>
      <description>thanks rbaldwin for giving us the solution! It is very simple.
&lt;BR /&gt;Best regards
&lt;BR /&gt;sHONG</description>
      <pubDate>Thu, 12 May 2011 05:04:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324739#M94410</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-05-12T05:04:47Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] mysql component to execute multiple sql statements at once</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324740#M94411</link>
      <description>hi, 
&lt;BR /&gt;urgent please 
&lt;BR /&gt;i created a tMysqlRow and i also added the "Additional JDBC Parameters" to include "allowMultiQueries=true" but when i run the job only one query is getting updated i have a list of query please help me to resolve this issue 
&lt;BR /&gt; 
&lt;BR /&gt;thanks 
&lt;BR /&gt;caba</description>
      <pubDate>Thu, 25 Apr 2013 16:10:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324740#M94411</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-04-25T16:10:15Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] mysql component to execute multiple sql statements at once</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324741#M94412</link>
      <description>Use the component tSQLScriptParser from Talend Exchange. This component is dedicated to run multiple SQL statements from a file or from the build-in SQL text field and use ONE tXXXXRow component do run each statement.&lt;BR /&gt;You can - unlike all Talend components - comment statements out with line comments and it understand also some SQLPlus commands like the / at the line start to end complex function statements.</description>
      <pubDate>Thu, 25 Apr 2013 20:46:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324741#M94412</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-04-25T20:46:03Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] mysql component to execute multiple sql statements at once</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324742#M94413</link>
      <description>&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;hi,&lt;BR /&gt;urgent please&lt;BR /&gt;i created a tMysqlRow and i also added the "Additional JDBC Parameters" to include "allowMultiQueries=true" but when i run the job only one query is getting updated i have a list of query please help me to resolve this issue&lt;BR /&gt;thanks&lt;BR /&gt;caba&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;Can you please show us your query? 
&lt;BR /&gt;Shong</description>
      <pubDate>Fri, 26 Apr 2013 03:18:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324742#M94413</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-04-26T03:18:37Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] mysql component to execute multiple sql statements at once</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324743#M94414</link>
      <description>hi Shong, 
&lt;BR /&gt;I am not able to share the query since it is production one 
&lt;BR /&gt;but the query's look as below with the tMysqlRow with properties "Additional JDBC Parameters" to include "allowMultiQueries=true" 
&lt;BR /&gt;i have enclosed the list of querys in double quotes. 
&lt;BR /&gt; 
&lt;BR /&gt; "create table query; 
&lt;BR /&gt;insert query; 
&lt;BR /&gt;update query; 
&lt;BR /&gt;update query; 
&lt;BR /&gt;update query; 
&lt;BR /&gt;update query; 
&lt;BR /&gt;update query; 
&lt;BR /&gt;" 
&lt;BR /&gt;only one query is getting executed please help me to resolve this issue. 
&lt;BR /&gt; 
&lt;BR /&gt;Thanks 
&lt;BR /&gt;caba</description>
      <pubDate>Fri, 26 Apr 2013 16:38:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-mysql-component-to-execute-multiple-sql-statements-at/m-p/2324743#M94414</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-04-26T16:38:50Z</dc:date>
    </item>
  </channel>
</rss>

