<?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 tMySql Configuration in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/tMySql-Configuration/m-p/2301410#M73530</link>
    <description>&lt;P&gt;Morning All,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;How to set tMysqloutput component to have:&lt;/P&gt; 
&lt;P&gt;1 - A specific collation to the table for exemple&amp;nbsp;"Utf8_general_ci" which is different to the default collation of the data base.&lt;/P&gt; 
&lt;P&gt;2 - A &lt;SPAN&gt;specific collation to a column&amp;nbsp;for exemple&amp;nbsp;"Utf8_bin"&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;3 - To have some column like Foreign Key&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;And in other side, is it better to create first tables and use tMysqloutput component to insert rows or it is the same thing to use tMySqloutput to create and insert rows.&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 15 Aug 2017 22:51:48 GMT</pubDate>
    <dc:creator>idembel2</dc:creator>
    <dc:date>2017-08-15T22:51:48Z</dc:date>
    <item>
      <title>tMySql Configuration</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tMySql-Configuration/m-p/2301410#M73530</link>
      <description>&lt;P&gt;Morning All,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;How to set tMysqloutput component to have:&lt;/P&gt; 
&lt;P&gt;1 - A specific collation to the table for exemple&amp;nbsp;"Utf8_general_ci" which is different to the default collation of the data base.&lt;/P&gt; 
&lt;P&gt;2 - A &lt;SPAN&gt;specific collation to a column&amp;nbsp;for exemple&amp;nbsp;"Utf8_bin"&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;3 - To have some column like Foreign Key&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;And in other side, is it better to create first tables and use tMysqloutput component to insert rows or it is the same thing to use tMySqloutput to create and insert rows.&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Aug 2017 22:51:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tMySql-Configuration/m-p/2301410#M73530</guid>
      <dc:creator>idembel2</dc:creator>
      <dc:date>2017-08-15T22:51:48Z</dc:date>
    </item>
    <item>
      <title>Re: tMySql Configuration</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tMySql-Configuration/m-p/2301411#M73531</link>
      <description>&lt;P&gt;You can manage session parameters by JDBC advanced settings -&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;useUnicode=true&amp;amp;characterEncoding=utf-8&lt;/PRE&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;in simple cases - You can use tMySQL component for create table, but generally - more proper do it manually.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;You can do it outside Talend, or use construction like:&lt;/P&gt; 
&lt;PRE&gt;CREATE TABLE IF NOT EXISTS tbl_name
(

);&lt;/PRE&gt; 
&lt;P&gt;in tMySQLRow component&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;the benefits of this,&amp;nbsp;full control of process, like:&lt;/P&gt; 
&lt;UL&gt; 
 &lt;LI&gt;add indexes (not only PK)&lt;/LI&gt; 
 &lt;LI&gt;constraints&lt;/LI&gt; 
 &lt;LI&gt;collations&lt;/LI&gt; 
 &lt;LI&gt;... list could be continue&lt;/LI&gt; 
&lt;/UL&gt;</description>
      <pubDate>Wed, 16 Aug 2017 16:34:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tMySql-Configuration/m-p/2301411#M73531</guid>
      <dc:creator>vapukov</dc:creator>
      <dc:date>2017-08-16T16:34:15Z</dc:date>
    </item>
    <item>
      <title>Re: tMySql Configuration</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tMySql-Configuration/m-p/2301412#M73532</link>
      <description>&lt;P&gt;Morning vapukov,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thank you for your message, it is helpful.&lt;/P&gt; 
&lt;P&gt;By your advice to manage session parameter by JDBC&amp;nbsp;advanced settings, i can understand with code bellow&lt;/P&gt; 
&lt;PRE&gt;useUnicode=true&amp;amp;characterEncoding=utf-8&lt;/PRE&gt; 
&lt;P&gt;That i set character encoding to Utf8; but nothing tell me that the collation is setting in Utf8_general_ci&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thank you for reply,&lt;/P&gt;</description>
      <pubDate>Sun, 27 Aug 2017 22:45:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tMySql-Configuration/m-p/2301412#M73532</guid>
      <dc:creator>idembel2</dc:creator>
      <dc:date>2017-08-27T22:45:40Z</dc:date>
    </item>
  </channel>
</rss>

