<?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: File without delimiter in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/File-without-delimiter/m-p/2230187#M20901</link>
    <description>Sorry i wrote tFileInputDelimited but is tFileInputPositional that I used of course</description>
    <pubDate>Tue, 19 Feb 2008 18:13:07 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2008-02-19T18:13:07Z</dc:date>
    <item>
      <title>File without delimiter</title>
      <link>https://community.qlik.com/t5/Talend-Studio/File-without-delimiter/m-p/2230185#M20899</link>
      <description>Hi,&lt;BR /&gt;I'm trying to read a file with no delimiter but only fixed length fields. I tried to use tFileInputDelimited with "" or nothing as a row separator but it doesn't work.&lt;BR /&gt;How can I do that ?&lt;BR /&gt;Thank you</description>
      <pubDate>Sat, 16 Nov 2024 14:27:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/File-without-delimiter/m-p/2230185#M20899</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T14:27:17Z</dc:date>
    </item>
    <item>
      <title>Re: File without delimiter</title>
      <link>https://community.qlik.com/t5/Talend-Studio/File-without-delimiter/m-p/2230186#M20900</link>
      <description>try with tFileInputPositionnal</description>
      <pubDate>Tue, 19 Feb 2008 16:31:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/File-without-delimiter/m-p/2230186#M20900</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-02-19T16:31:16Z</dc:date>
    </item>
    <item>
      <title>Re: File without delimiter</title>
      <link>https://community.qlik.com/t5/Talend-Studio/File-without-delimiter/m-p/2230187#M20901</link>
      <description>Sorry i wrote tFileInputDelimited but is tFileInputPositional that I used of course</description>
      <pubDate>Tue, 19 Feb 2008 18:13:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/File-without-delimiter/m-p/2230187#M20901</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-02-19T18:13:07Z</dc:date>
    </item>
    <item>
      <title>Re: File without delimiter</title>
      <link>https://community.qlik.com/t5/Talend-Studio/File-without-delimiter/m-p/2230188#M20902</link>
      <description>Hello ebremond, 
&lt;BR /&gt;can you give us a example? 
&lt;BR /&gt;I started a small test (2.3.0, java, windows): 
&lt;BR /&gt;I tried the following: 
&lt;BR /&gt;aaaa1bbbb1 
&lt;BR /&gt;c1ddddddd1 
&lt;BR /&gt;eeeeeeeee1 
&lt;BR /&gt;-- 
&lt;BR /&gt;aaaa2bbbb2 
&lt;BR /&gt;c2ddddddd2 
&lt;BR /&gt;eeeeeeeee2 
&lt;BR /&gt;-- 
&lt;BR /&gt;With the following Pattern: "5,5,2,2,8,2,10" and Row Seperator: "--" 
&lt;BR /&gt;Result: 
&lt;BR /&gt; 
&lt;PRE&gt;.---------+----------+----------+----------+----------.&lt;BR /&gt;|                      tLogRow_1                      |&lt;BR /&gt;|=--------+----------+----------+----------+---------=|&lt;BR /&gt;|newColumn|newColumn1|newColumn3|newColumn4|newColumn6|&lt;BR /&gt;|=--------+----------+----------+----------+---------=|&lt;BR /&gt;|aaaa1    |bbbb1     |c1        |ddddddd1  |eeeeeeeee1|&lt;BR /&gt;|aaa      |a2bbb     |          |c2dddddd  |eeeeeeee  |&lt;BR /&gt;|         |          |          |          |          |&lt;BR /&gt;'---------+----------+----------+----------+----------'&lt;/PRE&gt; 
&lt;BR /&gt;I learned myself the following: If you use anything else than "\n" you have to handle existing linebreaks (in Windows/DOS 2 Bytes). In my case defining two additional datablocks each 2 bytes large. 
&lt;BR /&gt;If I use "" as row seperator it work the same to. But with the data above (-- removed) I get the following problem: 
&lt;BR /&gt;I've starting with the second datablock one more linebreak to handle. And actual no solution for this... 
&lt;BR /&gt;And the last one: 
&lt;BR /&gt;If I remove all linebreaks it works fine. 
&lt;BR /&gt;Bye 
&lt;BR /&gt;Volker</description>
      <pubDate>Tue, 19 Feb 2008 21:34:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/File-without-delimiter/m-p/2230188#M20902</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-02-19T21:34:24Z</dc:date>
    </item>
    <item>
      <title>Re: File without delimiter</title>
      <link>https://community.qlik.com/t5/Talend-Studio/File-without-delimiter/m-p/2230189#M20903</link>
      <description>I example would be :&lt;BR /&gt;Input File :&lt;BR /&gt;aaaaa1bbb1ccccccc1ddddddddd1aaaaa2bbb2ccccccc2ddddddddd2aaaaa3bbb3ccccccc3ddddddddd3&lt;BR /&gt;with pattern "6,4,8,10" to obtain for example in a csv file :&lt;BR /&gt;aaaaa1;bbb1;ccccccc1;ddddddddd1;&lt;BR /&gt;aaaaa2;bbb2;ccccccc2;ddddddddd2;&lt;BR /&gt;aaaaa3;bbb3;ccccccc3;ddddddddd3;&lt;BR /&gt;I tried with row separator = "" and it worked. I think the types I defined for the columns was wrong first time and induced my misunderstanding.&lt;BR /&gt;Thank you.&lt;BR /&gt;Bye</description>
      <pubDate>Wed, 20 Feb 2008 14:14:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/File-without-delimiter/m-p/2230189#M20903</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-02-20T14:14:07Z</dc:date>
    </item>
  </channel>
</rss>

