<?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: tLogRow - Output displaying wrong number of characters in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/tLogRow-Output-displaying-wrong-number-of-characters/m-p/2321021#M91105</link>
    <description>I am no expert in TeraData but from Talend perspective looks okay to me, not able to figure what might be the problem.
&lt;BR /&gt;Your dropdown says CHARACTER is that same like CHAR?</description>
    <pubDate>Fri, 29 Jun 2018 07:37:27 GMT</pubDate>
    <dc:creator>iamabhishek</dc:creator>
    <dc:date>2018-06-29T07:37:27Z</dc:date>
    <item>
      <title>tLogRow - Output displaying wrong number of characters</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tLogRow-Output-displaying-wrong-number-of-characters/m-p/2321014#M91098</link>
      <description>&lt;P&gt;I have a CHAR(6) Account ID field that I am populating via a tDBRow component. &amp;nbsp;At the end of my process, I want to see the output of the field via a tLogRow component. &amp;nbsp;However, I am only getting the first character in that field, i.e. if I have Acct 123456, it displays 1 as output and leaves out the rest. &amp;nbsp;Any idea on where my mistake is? &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jun 2018 20:12:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tLogRow-Output-displaying-wrong-number-of-characters/m-p/2321014#M91098</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-06-27T20:12:01Z</dc:date>
    </item>
    <item>
      <title>Re: tLogRow - Output displaying wrong number of characters</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tLogRow-Output-displaying-wrong-number-of-characters/m-p/2321015#M91099</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;Have you ever defined field length for your column in schema setting?&lt;/P&gt;
&lt;P&gt;Best regards&lt;/P&gt;
&lt;P&gt;Sabrina&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jun 2018 08:27:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tLogRow-Output-displaying-wrong-number-of-characters/m-p/2321015#M91099</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-06-28T08:27:51Z</dc:date>
    </item>
    <item>
      <title>Re: tLogRow - Output displaying wrong number of characters</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tLogRow-Output-displaying-wrong-number-of-characters/m-p/2321016#M91100</link>
      <description>&lt;P&gt;Yes, I have set the length in schema and synced it across the job. &amp;nbsp;No matter how long I put the field length, I always get the first character only.&lt;/P&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009Lshw"&gt;schema.PNG&lt;/A&gt;</description>
      <pubDate>Thu, 28 Jun 2018 14:21:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tLogRow-Output-displaying-wrong-number-of-characters/m-p/2321016#M91100</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-06-28T14:21:40Z</dc:date>
    </item>
    <item>
      <title>Re: tLogRow - Output displaying wrong number of characters</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tLogRow-Output-displaying-wrong-number-of-characters/m-p/2321017#M91101</link>
      <description>Could you show us your job layout along with the schema information details</description>
      <pubDate>Thu, 28 Jun 2018 14:35:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tLogRow-Output-displaying-wrong-number-of-characters/m-p/2321017#M91101</guid>
      <dc:creator>iamabhishek</dc:creator>
      <dc:date>2018-06-28T14:35:11Z</dc:date>
    </item>
    <item>
      <title>Re: tLogRow - Output displaying wrong number of characters</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tLogRow-Output-displaying-wrong-number-of-characters/m-p/2321018#M91102</link>
      <description>&lt;P&gt;tDBRow_6 = creates volatile table in teradata&lt;/P&gt; 
&lt;P&gt;"CREATE VOLATILE TABLE ACCTS&lt;BR /&gt;(&lt;BR /&gt;ACCT_ID CHAR(6)&lt;BR /&gt;,EFF_DT DATE&lt;BR /&gt;,FROM_DT DATE&lt;BR /&gt;,THRU_DT DATE&lt;BR /&gt;)&lt;BR /&gt;UNIQUE PRIMARY INDEX (ACCT_ID) ON COMMIT PRESERVE ROWS"&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;tDBRow_2 = inserts records in volatile table&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;"BEGIN TRANSACTION;&lt;BR /&gt;INSERT INTO ACCTS (ACCT_ID, EFF_DT) VALUES ('203544', '2018-10-01');&lt;BR /&gt;INSERT INTO ACCTS (ACCT_ID, EFF_DT) VALUES ('325412', '2018-10-01');&lt;BR /&gt;UPDATE ACCTS SET FROM_DT = EFF_DT - interval '19' month, THRU_DT = EFF_DT - interval '5' month;&lt;BR /&gt;END TRANSACTION;"&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;Attached is the schema, job layout and the output from tLogRow_1.&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LtED"&gt;job_layout.PNG&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009Lskf"&gt;schema.PNG&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009Lt3n"&gt;tlogrow_results.PNG&lt;/A&gt;</description>
      <pubDate>Thu, 28 Jun 2018 16:05:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tLogRow-Output-displaying-wrong-number-of-characters/m-p/2321018#M91102</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-06-28T16:05:18Z</dc:date>
    </item>
    <item>
      <title>Re: tLogRow - Output displaying wrong number of characters</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tLogRow-Output-displaying-wrong-number-of-characters/m-p/2321019#M91103</link>
      <description>&lt;P&gt;Just curious, shouldn't be your tDBCommit_6 be after your tDBRow_2.&lt;/P&gt;
&lt;P&gt;Also, how does your tLogRow_1 schema looks have you synced the columns correctly.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jun 2018 17:17:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tLogRow-Output-displaying-wrong-number-of-characters/m-p/2321019#M91103</guid>
      <dc:creator>iamabhishek</dc:creator>
      <dc:date>2018-06-28T17:17:20Z</dc:date>
    </item>
    <item>
      <title>Re: tLogRow - Output displaying wrong number of characters</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tLogRow-Output-displaying-wrong-number-of-characters/m-p/2321020#M91104</link>
      <description>&lt;P&gt;You'd think right? &amp;nbsp;But I have tried to put the commit after tDBRow_2 but Teradata gives me an error that says:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;[Teradata Database] [TeraJDBC 16.20.00.06] [Error 3932] [SQLState 25000] Only an ET or null statement is legal after a DDL Statement.Exception in component tDBInput_1 (test)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Only after putting a commit after the table creation and then inserting values did it work. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I did sync the scheme in tLogRow_1, attached is the screenshot.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LtCX"&gt;trowlog_schema.PNG&lt;/A&gt;</description>
      <pubDate>Thu, 28 Jun 2018 18:52:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tLogRow-Output-displaying-wrong-number-of-characters/m-p/2321020#M91104</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-06-28T18:52:41Z</dc:date>
    </item>
    <item>
      <title>Re: tLogRow - Output displaying wrong number of characters</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tLogRow-Output-displaying-wrong-number-of-characters/m-p/2321021#M91105</link>
      <description>I am no expert in TeraData but from Talend perspective looks okay to me, not able to figure what might be the problem.
&lt;BR /&gt;Your dropdown says CHARACTER is that same like CHAR?</description>
      <pubDate>Fri, 29 Jun 2018 07:37:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tLogRow-Output-displaying-wrong-number-of-characters/m-p/2321021#M91105</guid>
      <dc:creator>iamabhishek</dc:creator>
      <dc:date>2018-06-29T07:37:27Z</dc:date>
    </item>
    <item>
      <title>Re: tLogRow - Output displaying wrong number of characters</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tLogRow-Output-displaying-wrong-number-of-characters/m-p/2321022#M91106</link>
      <description>&lt;P&gt;You brought up a good point. &amp;nbsp;It seems as though the data type was the issue. &amp;nbsp;I changed it to String in the schema and synced up the columns and I got all the value now instead of only the first character. &amp;nbsp;Thanks for your continued help, it's nice to see an active forum that helps.&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jun 2018 14:37:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tLogRow-Output-displaying-wrong-number-of-characters/m-p/2321022#M91106</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-06-29T14:37:57Z</dc:date>
    </item>
  </channel>
</rss>

