<?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: Uniqueidentifier (GUID/UUID) handling from MSSQL and MySQL in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Uniqueidentifier-GUID-UUID-handling-from-MSSQL-and-MySQL/m-p/2343754#M111485</link>
    <description>Hi kcd,&lt;BR /&gt;Thanks for your feedback and sharing your solution with us.&lt;BR /&gt;Best regards&lt;BR /&gt;Sabrina</description>
    <pubDate>Fri, 05 Jul 2013 04:46:54 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2013-07-05T04:46:54Z</dc:date>
    <item>
      <title>Uniqueidentifier (GUID/UUID) handling from MSSQL and MySQL</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Uniqueidentifier-GUID-UUID-handling-from-MSSQL-and-MySQL/m-p/2343749#M111480</link>
      <description>Hello 
&lt;BR /&gt;Anyone got ETL playing nicely with GUIDs? Out of the box it detects the schema as 36 length varbinaries rather than 16 bit byte arrays, or worse booleans! 
&lt;BR /&gt;I tried changing the mappings (Preferences &amp;gt; Talend &amp;gt; Specific Settings &amp;gt; Metadata of TalendType) but it doesn't seem to help. I adjusted the Java section of MSSQL mapping to: 
&lt;BR /&gt; 
&lt;PRE&gt;				&amp;lt;dbType type="UNIQUEIDENTIFIER"&amp;gt;&lt;BR /&gt;					&amp;lt;talendType type="byte[]" default="true" /&amp;gt;&lt;/PRE&gt; 
&lt;BR /&gt;But when I retrived the schema I still get a db type VARBINARY and type Object length 36 
&lt;BR /&gt; 
&lt;BR /&gt;Handling GUIDs in MySQL is even worse. For Mysql I resorted to doing a find and replace in the *.item file because I couldn't find a better solution. 
&lt;BR /&gt; 
&lt;PRE&gt;FIND AND REPLACE&lt;BR /&gt;length="16" sourceType="BIT" talendType="id_Boolean"&lt;BR /&gt;WITH&lt;BR /&gt;length="16" sourceType="BINARY" talendType="id_byte[]"&lt;/PRE&gt; 
&lt;BR /&gt;Surely there are other people who have overcome this problem 
&lt;BR /&gt;Cheers 
&lt;BR /&gt;Kevin</description>
      <pubDate>Sat, 16 Nov 2024 12:41:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Uniqueidentifier-GUID-UUID-handling-from-MSSQL-and-MySQL/m-p/2343749#M111480</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T12:41:34Z</dc:date>
    </item>
    <item>
      <title>Re: Uniqueidentifier (GUID/UUID) handling from MSSQL and MySQL</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Uniqueidentifier-GUID-UUID-handling-from-MSSQL-and-MySQL/m-p/2343750#M111481</link>
      <description>Hi Kevin,&lt;BR /&gt;If you changed the data type matching file, it should have worked. Have you restarted the Studio after doing that?</description>
      <pubDate>Mon, 12 Sep 2011 03:28:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Uniqueidentifier-GUID-UUID-handling-from-MSSQL-and-MySQL/m-p/2343750#M111481</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-09-12T03:28:04Z</dc:date>
    </item>
    <item>
      <title>Re: Uniqueidentifier (GUID/UUID) handling from MSSQL and MySQL</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Uniqueidentifier-GUID-UUID-handling-from-MSSQL-and-MySQL/m-p/2343751#M111482</link>
      <description>Thanks Vincent. Yes I have restarted but I think the problem that it is mapping VARBINARY not UNIQUEIDENTIFIER. Same with MySQL using BIT.</description>
      <pubDate>Mon, 12 Sep 2011 03:52:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Uniqueidentifier-GUID-UUID-handling-from-MSSQL-and-MySQL/m-p/2343751#M111482</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-09-12T03:52:57Z</dc:date>
    </item>
    <item>
      <title>Re: Uniqueidentifier (GUID/UUID) handling from MSSQL and MySQL</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Uniqueidentifier-GUID-UUID-handling-from-MSSQL-and-MySQL/m-p/2343752#M111483</link>
      <description>So why does ETL get the schema wrong for connection metadata (using Retrieve Schema) and why can we not fix the 'DB Type' without hacking the .item file?&lt;BR /&gt;Should I start a new post?</description>
      <pubDate>Wed, 14 Sep 2011 23:28:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Uniqueidentifier-GUID-UUID-handling-from-MSSQL-and-MySQL/m-p/2343752#M111483</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-09-14T23:28:13Z</dc:date>
    </item>
    <item>
      <title>Re: Uniqueidentifier (GUID/UUID) handling from MSSQL and MySQL</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Uniqueidentifier-GUID-UUID-handling-from-MSSQL-and-MySQL/m-p/2343753#M111484</link>
      <description>Turns out we can fix it, as of version 5.3 you must do so yourself:&lt;BR /&gt;Window &amp;gt; Preferences &amp;gt;Specific Settings &amp;gt; Metadata of Talend and edit mapping_Mysql.xml&lt;BR /&gt;&lt;PRE&gt;&amp;lt;language name="java"&amp;gt;&lt;BR /&gt;	&amp;lt;talendToDbTypes&amp;gt;&amp;lt;!-- Adviced mappings  --&amp;gt;&lt;BR /&gt;		...&lt;BR /&gt;		&amp;lt;talendType type="id_byte[]"&amp;gt;&lt;BR /&gt;			&amp;lt;dbType type="BINARY" default="true"/&amp;gt;&lt;BR /&gt;	&amp;lt;dbToTalendTypes&amp;gt;&lt;BR /&gt;		...&lt;BR /&gt;		&amp;lt;dbType type="BINARY"&amp;gt;&lt;BR /&gt;			&amp;lt;talendType type="id_byte[]" default="true" /&amp;gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 05 Jul 2013 03:48:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Uniqueidentifier-GUID-UUID-handling-from-MSSQL-and-MySQL/m-p/2343753#M111484</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-07-05T03:48:47Z</dc:date>
    </item>
    <item>
      <title>Re: Uniqueidentifier (GUID/UUID) handling from MSSQL and MySQL</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Uniqueidentifier-GUID-UUID-handling-from-MSSQL-and-MySQL/m-p/2343754#M111485</link>
      <description>Hi kcd,&lt;BR /&gt;Thanks for your feedback and sharing your solution with us.&lt;BR /&gt;Best regards&lt;BR /&gt;Sabrina</description>
      <pubDate>Fri, 05 Jul 2013 04:46:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Uniqueidentifier-GUID-UUID-handling-from-MSSQL-and-MySQL/m-p/2343754#M111485</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-07-05T04:46:54Z</dc:date>
    </item>
    <item>
      <title>Re: Uniqueidentifier (GUID/UUID) handling from MSSQL and MySQL</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Uniqueidentifier-GUID-UUID-handling-from-MSSQL-and-MySQL/m-p/2343755#M111486</link>
      <description>Hello Expert,&lt;BR /&gt;Any one can elaborate on this.&lt;BR /&gt;i am reading data from delimited file and i want to insert data into MSSql table.&lt;BR /&gt;Table structure already their in SQL server db i want to load data into existing table for data type uniqueidentifier&amp;nbsp;&lt;BR /&gt;how to convert int to uniqueidentifier &amp;nbsp;in tmap or MSSqloutput.&lt;BR /&gt;I tried with int,object but it won't work, any help would be much appreciated.&lt;BR /&gt;&amp;nbsp;</description>
      <pubDate>Mon, 09 Nov 2015 15:15:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Uniqueidentifier-GUID-UUID-handling-from-MSSQL-and-MySQL/m-p/2343755#M111486</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-09T15:15:49Z</dc:date>
    </item>
    <item>
      <title>Re: Uniqueidentifier (GUID/UUID) handling from MSSQL and MySQL</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Uniqueidentifier-GUID-UUID-handling-from-MSSQL-and-MySQL/m-p/2343756#M111487</link>
      <description>&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;Hi,&lt;/FONT&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;Any one can elaborate on this.&lt;/FONT&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;i am reading data from mssql database table it's has UniqiueIdentifier field,and i want to insert data into MSSql table.&lt;/FONT&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;how to convert int to uniqueidentifier &amp;nbsp;in tmap or MSSqloutput.&lt;/FONT&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;I tried with int,object but it won't work, any help would be much appreciated.&lt;/FONT&gt;&lt;/FONT&gt;</description>
      <pubDate>Wed, 16 Dec 2015 04:12:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Uniqueidentifier-GUID-UUID-handling-from-MSSQL-and-MySQL/m-p/2343756#M111487</guid>
      <dc:creator>sasi8008</dc:creator>
      <dc:date>2015-12-16T04:12:32Z</dc:date>
    </item>
    <item>
      <title>Re: Uniqueidentifier (GUID/UUID) handling from MSSQL and MySQL</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Uniqueidentifier-GUID-UUID-handling-from-MSSQL-and-MySQL/m-p/2343757#M111488</link>
      <description>Hi,&lt;BR /&gt;read it as Object from source keep object data type in tmap.&lt;BR /&gt;You have to change in mssqloutput --&amp;gt; edits schema DB type="UNIQUEIDENTIFIER"&lt;BR /&gt;let me know for further help.</description>
      <pubDate>Wed, 16 Dec 2015 07:13:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Uniqueidentifier-GUID-UUID-handling-from-MSSQL-and-MySQL/m-p/2343757#M111488</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-12-16T07:13:29Z</dc:date>
    </item>
  </channel>
</rss>

