<?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: Encoding problems when loading data into Oracle Database in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Encoding-problems-when-loading-data-into-Oracle-Database/m-p/2239522#M27289</link>
    <description>Thank you Cantoine. 
&lt;BR /&gt;I will try your method and see if the whole process works for us. I really appreciate you taking the time to answer my questions.
&lt;BR /&gt;Thank you,
&lt;BR /&gt;Santhosh.</description>
    <pubDate>Thu, 11 Nov 2010 23:04:48 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2010-11-11T23:04:48Z</dc:date>
    <item>
      <title>Encoding problems when loading data into Oracle Database</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Encoding-problems-when-loading-data-into-Oracle-Database/m-p/2239520#M27287</link>
      <description>Hi,
&lt;BR /&gt;I am downloading a number of zip files from an FTP server, unzipping and trying to load the txt files into the Oracle database. The files that come in are basically of different encoding/charactersets. 
&lt;BR /&gt;The files are of three types (charactersets) 
&lt;BR /&gt;1. text/plain; charset=us-ascii
&lt;BR /&gt;2. text/plain; charset=utf-16
&lt;BR /&gt;3. text/plain; charset=utf-8
&lt;BR /&gt;I am trying to load the tab delimited data in the unzipped txt files into an Oracle 11G database. I want to know if there is a component that will convert any characterset to utf-8, so that while I load the data into the database using SQL Loader, I do not come across errors. 
&lt;BR /&gt;I would really appreciate if anybody can give me suggestions/help or give me ideas as to load the data that has different charactersets.
&lt;BR /&gt;Thank you,
&lt;BR /&gt;Santhosh.</description>
      <pubDate>Sat, 16 Nov 2024 13:12:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Encoding-problems-when-loading-data-into-Oracle-Database/m-p/2239520#M27287</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T13:12:36Z</dc:date>
    </item>
    <item>
      <title>Re: Encoding problems when loading data into Oracle Database</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Encoding-problems-when-loading-data-into-Oracle-Database/m-p/2239521#M27288</link>
      <description>Hi, 
&lt;BR /&gt;The beauty with JAVA is whatever the ENCODING_TYPE you choose when you read a dataflow; the JAVA Object will convert into the expect format in output. 
&lt;BR /&gt;For example; in Talend if you choose as a constant that you want to read your INPUT_FILE with the ENCODING UTF-16 (which include UTF-8 and US-ASCII); then you can choose to have UTF-8 on the Output : tOracleOutputBulkExec. 
&lt;BR /&gt;Into the tOracleOutputBulkExec component the choice of UTF-8 for the encoding will handle the conversion of your source to the encoding for the BULK_FILE prior to be loaded with the SQLLoader. 
&lt;BR /&gt;Your job will looks like that if you have the same dataStructure; for example 5 COLUMN_FIELDS: 
&lt;BR /&gt;tFtpGet --onComponentOk--&amp;gt; tFileList --iterate--&amp;gt; tFileInputDelimited(UTF-16) --row--&amp;gt; tMap(for any conversion) --output--&amp;gt; tOracleOutputBulkExec(UTF8). 
&lt;BR /&gt;I don't have time to open my studio to deliver a proper screenshot. Let me know if my ASCII-CHARTS is not clear 
&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; and I'll post a screenshot.</description>
      <pubDate>Thu, 11 Nov 2010 20:59:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Encoding-problems-when-loading-data-into-Oracle-Database/m-p/2239521#M27288</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-11-11T20:59:38Z</dc:date>
    </item>
    <item>
      <title>Re: Encoding problems when loading data into Oracle Database</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Encoding-problems-when-loading-data-into-Oracle-Database/m-p/2239522#M27289</link>
      <description>Thank you Cantoine. 
&lt;BR /&gt;I will try your method and see if the whole process works for us. I really appreciate you taking the time to answer my questions.
&lt;BR /&gt;Thank you,
&lt;BR /&gt;Santhosh.</description>
      <pubDate>Thu, 11 Nov 2010 23:04:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Encoding-problems-when-loading-data-into-Oracle-Database/m-p/2239522#M27289</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-11-11T23:04:48Z</dc:date>
    </item>
    <item>
      <title>Re: Encoding problems when loading data into Oracle Database</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Encoding-problems-when-loading-data-into-Oracle-Database/m-p/2239523#M27290</link>
      <description>&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;Hi,&lt;BR /&gt;The beauty with JAVA is whatever the ENCODING_TYPE you choose when you read a dataflow; the JAVA Object will convert into the expect format in output.&lt;BR /&gt;For example; in Talend if you choose as a constant that you want to read your INPUT_FILE with the ENCODING UTF-16 (which include UTF-8 and US-ASCII); then you can choose to have UTF-8 on the Output : tOracleOutputBulkExec.&lt;BR /&gt;Into the tOracleOutputBulkExec component the choice of UTF-8 for the encoding will handle the conversion of your source to the encoding for the BULK_FILE prior to be loaded with the SQLLoader.&lt;BR /&gt;Your job will looks like that if you have the same dataStructure; for example 5 COLUMN_FIELDS:&lt;BR /&gt;tFtpGet --onComponentOk--&amp;gt; tFileList --iterate--&amp;gt; tFileInputDelimited(UTF-16) --row--&amp;gt; tMap(for any conversion) --output--&amp;gt; tOracleOutputBulkExec(UTF8).&lt;BR /&gt;I don't have time to open my studio to deliver a proper screenshot. Let me know if my ASCII-CHARTS is not clear &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; and I'll post a screenshot.&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;Apparently this doesn't work; please see my screenshots below. I have set up tFileList --&amp;gt; Iterate --&amp;gt; tFileInputDelimited(UTF-16) components and tested it with two files ( 
&lt;A href="http://dl.dropbox.com/u/1757832/encoding_files.zip" target="_blank" rel="nofollow noopener noreferrer"&gt;download&lt;/A&gt;). Only one file is being imported correct, the other one is imported as garbish: "???????????????????".</description>
      <pubDate>Thu, 08 Sep 2011 08:16:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Encoding-problems-when-loading-data-into-Oracle-Database/m-p/2239523#M27290</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-09-08T08:16:38Z</dc:date>
    </item>
  </channel>
</rss>

