<?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: [resolved] tFilter Row empty date values in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/resolved-tFilter-Row-empty-date-values/m-p/2295205#M68012</link>
    <description>Thanks xdshi for the answer (and sorry for the long silence). It did works and I am using this expression on a regular basis now.</description>
    <pubDate>Fri, 10 May 2013 00:53:56 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2013-05-10T00:53:56Z</dc:date>
    <item>
      <title>[resolved] tFilter Row empty date values</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tFilter-Row-empty-date-values/m-p/2295200#M68007</link>
      <description>Hi all,
&lt;BR /&gt;I'm trying to read datasets from an excel sheet that contains datasets with an empty date value and put into a MS SQL database table.
&lt;BR /&gt;The receiving database doesn't allow blank or null values so I'm trying to filter them using the tFilterRow component. Surely I can manually add fake date values to satisfy the MS SQL database, however I would like to run the job automaticall and it's impossible to modify the Excel input sheet itself (created by a 3rd party database tool).
&lt;BR /&gt;I'd be grateful if somebody has an easy solution.
&lt;BR /&gt;Cheers,
&lt;BR /&gt;Nils</description>
      <pubDate>Sat, 16 Nov 2024 12:25:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tFilter-Row-empty-date-values/m-p/2295200#M68007</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T12:25:46Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tFilter Row empty date values</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tFilter-Row-empty-date-values/m-p/2295201#M68008</link>
      <description>N1866,
&lt;BR /&gt;Add a tMap component between your tInputExcel and your tMssqlOutput. 
&lt;BR /&gt;In the tMap just do a 1:1 mapping and add an expression in the output box by saying "row1.YourDateFieldName is not null". 
&lt;BR /&gt;Regards</description>
      <pubDate>Wed, 25 Jan 2012 14:23:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tFilter-Row-empty-date-values/m-p/2295201#M68008</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-01-25T14:23:24Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tFilter Row empty date values</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tFilter-Row-empty-date-values/m-p/2295202#M68009</link>
      <description>N1866, 
&lt;BR /&gt;Ah no sorry I was wrong, it needs to be : "row1.YourDateFieldName != null" 
&lt;BR /&gt;Was mixing the expression up with SQL and SSIS. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; 
&lt;BR /&gt;Regards</description>
      <pubDate>Wed, 25 Jan 2012 14:27:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tFilter-Row-empty-date-values/m-p/2295202#M68009</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-01-25T14:27:21Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tFilter Row empty date values</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tFilter-Row-empty-date-values/m-p/2295203#M68010</link>
      <description>"row2.eff_date != null" returns the following error: Type mismatch: cannot convert from boolean to Date
&lt;BR /&gt;Never in my process row2.eff_date is defined as a boolean.</description>
      <pubDate>Thu, 28 Mar 2013 06:27:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tFilter-Row-empty-date-values/m-p/2295203#M68010</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-03-28T06:27:30Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tFilter Row empty date values</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tFilter-Row-empty-date-values/m-p/2295204#M68011</link>
      <description>Hi magdmartin 
&lt;BR /&gt;From your error code information, did you set the condition 
&lt;PRE&gt;"row2.eff_date != null"&lt;/PRE&gt; 
&lt;BR /&gt;in tMap Expression? It should be set in filter expression. 
&lt;BR /&gt;Please refer to component reference 
&lt;A href="https://help.talend.com/search/all?query=tMap&amp;amp;content-lang=en" target="_blank" rel="nofollow noopener noreferrer"&gt;tMap&lt;/A&gt; 
&lt;BR /&gt;In addition, could you give us more job information? It will be helpful for us giving a hand to you. 
&lt;BR /&gt;Best regards 
&lt;BR /&gt;Sabrina</description>
      <pubDate>Thu, 28 Mar 2013 07:26:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tFilter-Row-empty-date-values/m-p/2295204#M68011</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-03-28T07:26:20Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tFilter Row empty date values</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tFilter-Row-empty-date-values/m-p/2295205#M68012</link>
      <description>Thanks xdshi for the answer (and sorry for the long silence). It did works and I am using this expression on a regular basis now.</description>
      <pubDate>Fri, 10 May 2013 00:53:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tFilter-Row-empty-date-values/m-p/2295205#M68012</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-05-10T00:53:56Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tFilter Row empty date values</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tFilter-Row-empty-date-values/m-p/2295206#M68013</link>
      <description>Hi magdmartin, 
&lt;BR /&gt;It is a good news for us, thanks for your feedback.
&lt;BR /&gt;Best regards
&lt;BR /&gt;Sabrina</description>
      <pubDate>Fri, 10 May 2013 04:47:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tFilter-Row-empty-date-values/m-p/2295206#M68013</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-05-10T04:47:13Z</dc:date>
    </item>
  </channel>
</rss>

