<?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: Full outer join with QVDs on some condition in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Full-outer-join-with-QVDs-on-some-condition/m-p/772234#M1045955</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in the sql section of qlik script (in bold)&lt;/P&gt;&lt;P&gt;when a sql query works in Oracle (sqlplus, toad, etc....) you can usually use it in Qlik&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;SQL&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; select&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="line-height: 1.5em; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; to_char(.............),&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="line-height: 1.5em; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .........&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="line-height: 1.5em; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="line-height: 1.5em; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...........&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Nov 2014 21:02:44 GMT</pubDate>
    <dc:creator>maxgro</dc:creator>
    <dc:date>2014-11-18T21:02:44Z</dc:date>
    <item>
      <title>Full outer join with QVDs on some condition</title>
      <link>https://community.qlik.com/t5/QlikView/Full-outer-join-with-QVDs-on-some-condition/m-p/772225#M1045946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a script like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load .....;&lt;/P&gt;&lt;P&gt;SELECT * FROM&lt;/P&gt;&lt;P&gt;( Select * from tableA where condition) T1&lt;/P&gt;&lt;P&gt;Full outer join&lt;/P&gt;&lt;P&gt;(Select * from table B) T2&lt;/P&gt;&lt;P&gt;on ((T1.field1=T2.field1) and (T1.field2=T2.field2));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I now have two separate QVDs &lt;/P&gt;&lt;P&gt;1) One for Select * from tableA and other for SELECT * FROM TableB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I perform full outer join when loading from QVDs with a where condition for the join??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2014 20:26:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Full-outer-join-with-QVDs-on-some-condition/m-p/772225#M1045946</guid>
      <dc:creator>reshmakala</dc:creator>
      <dc:date>2014-11-18T20:26:48Z</dc:date>
    </item>
    <item>
      <title>Re: Full outer join with QVDs on some condition</title>
      <link>https://community.qlik.com/t5/QlikView/Full-outer-join-with-QVDs-on-some-condition/m-p/772226#M1045947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It sounds like you wan to accomplish the same bit of code using QVD's instead of DB tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If that's the case you can try something like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T1:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;From QVD1&lt;/P&gt;&lt;P&gt;Where&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; YourCondition&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Outer Join (T1)&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;From QVD2&lt;/P&gt;&lt;P&gt;Where&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; YourCondition&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck&lt;/P&gt;&lt;P&gt;Oscar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2014 20:33:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Full-outer-join-with-QVDs-on-some-condition/m-p/772226#M1045947</guid>
      <dc:creator>oscar_ortiz</dc:creator>
      <dc:date>2014-11-18T20:33:49Z</dc:date>
    </item>
    <item>
      <title>Re: Full outer join with QVDs on some condition</title>
      <link>https://community.qlik.com/t5/QlikView/Full-outer-join-with-QVDs-on-some-condition/m-p/772227#M1045948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Thanks for your response. Will the script you mentioned be equal to what I have from DB tables?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to perform the join on some condiitons.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;STRONG&gt;on ((T1.field1=T2.field1) and (T1.field2=T2.field2)); ----&amp;gt; I want how to script this part with QVDs&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2014 20:36:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Full-outer-join-with-QVDs-on-some-condition/m-p/772227#M1045948</guid>
      <dc:creator>reshmakala</dc:creator>
      <dc:date>2014-11-18T20:36:22Z</dc:date>
    </item>
    <item>
      <title>Re: Full outer join with QVDs on some condition</title>
      <link>https://community.qlik.com/t5/QlikView/Full-outer-join-with-QVDs-on-some-condition/m-p/772228#M1045949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;QlikView by default will join by like fields.&amp;nbsp; So in your case T1.Fld1 = T2.Fld1 and T1.Fld2 = T2.Fld2 will automatically be taken care of.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The thing to be aware of is how many other fields that might have the same name.&amp;nbsp; You may not want those conditions to exists, if so you'll need t do some renaming of fields.&amp;nbsp; If not no worries.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2014 20:42:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Full-outer-join-with-QVDs-on-some-condition/m-p/772228#M1045949</guid>
      <dc:creator>oscar_ortiz</dc:creator>
      <dc:date>2014-11-18T20:42:40Z</dc:date>
    </item>
    <item>
      <title>Re: Full outer join with QVDs on some condition</title>
      <link>https://community.qlik.com/t5/QlikView/Full-outer-join-with-QVDs-on-some-condition/m-p/772229#M1045950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;table:&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Load &lt;STRONG&gt;field1&lt;/STRONG&gt;, &lt;STRONG&gt;field2&lt;/STRONG&gt;, ...... from tableAQvd where .....;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;join (table)&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load &lt;STRONG&gt;field1&lt;/STRONG&gt;, &lt;STRONG&gt;field2&lt;/STRONG&gt;, ..... from tableBQvd where ......:&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Qlik will join using fields with same name&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Qlik will do (default) an outer join&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2014 20:44:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Full-outer-join-with-QVDs-on-some-condition/m-p/772229#M1045950</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2014-11-18T20:44:45Z</dc:date>
    </item>
    <item>
      <title>Re: Full outer join with QVDs on some condition</title>
      <link>https://community.qlik.com/t5/QlikView/Full-outer-join-with-QVDs-on-some-condition/m-p/772230#M1045951</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks!! If the condition is T1.FieldA = T2.FieldB..I mean to say if the field names are different? Is there anything else that I need to add or something?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Because My field1 in both the tables do not have a same name.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2014 20:47:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Full-outer-join-with-QVDs-on-some-condition/m-p/772230#M1045951</guid>
      <dc:creator>reshmakala</dc:creator>
      <dc:date>2014-11-18T20:47:42Z</dc:date>
    </item>
    <item>
      <title>Re: Full outer join with QVDs on some condition</title>
      <link>https://community.qlik.com/t5/QlikView/Full-outer-join-with-QVDs-on-some-condition/m-p/772231#M1045952</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;rename the field you want to join&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;field1 as field2,&lt;/P&gt;&lt;P&gt;.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2014 20:50:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Full-outer-join-with-QVDs-on-some-condition/m-p/772231#M1045952</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2014-11-18T20:50:05Z</dc:date>
    </item>
    <item>
      <title>Re: Full outer join with QVDs on some condition</title>
      <link>https://community.qlik.com/t5/QlikView/Full-outer-join-with-QVDs-on-some-condition/m-p/772232#M1045953</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rename the field...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FldX as Fld1,&lt;/P&gt;&lt;P&gt;FldY as Fld2&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2014 20:52:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Full-outer-join-with-QVDs-on-some-condition/m-p/772232#M1045953</guid>
      <dc:creator>oscar_ortiz</dc:creator>
      <dc:date>2014-11-18T20:52:54Z</dc:date>
    </item>
    <item>
      <title>Re: Full outer join with QVDs on some condition</title>
      <link>https://community.qlik.com/t5/QlikView/Full-outer-join-with-QVDs-on-some-condition/m-p/772233#M1045954</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you. I have a small question. How can I use an Oracle to_char function in LOAD statement?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2014 20:58:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Full-outer-join-with-QVDs-on-some-condition/m-p/772233#M1045954</guid>
      <dc:creator>reshmakala</dc:creator>
      <dc:date>2014-11-18T20:58:08Z</dc:date>
    </item>
    <item>
      <title>Re: Full outer join with QVDs on some condition</title>
      <link>https://community.qlik.com/t5/QlikView/Full-outer-join-with-QVDs-on-some-condition/m-p/772234#M1045955</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in the sql section of qlik script (in bold)&lt;/P&gt;&lt;P&gt;when a sql query works in Oracle (sqlplus, toad, etc....) you can usually use it in Qlik&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;SQL&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; select&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="line-height: 1.5em; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; to_char(.............),&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="line-height: 1.5em; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .........&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="line-height: 1.5em; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="line-height: 1.5em; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...........&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2014 21:02:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Full-outer-join-with-QVDs-on-some-condition/m-p/772234#M1045955</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2014-11-18T21:02:44Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Full outer join with QVDs on some condition</title>
      <link>https://community.qlik.com/t5/QlikView/Full-outer-join-with-QVDs-on-some-condition/m-p/772235#M1045956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Thank you. I have a small question. How can I use an Oracle to_char function in LOAD statement? Could you please help me with that?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2014 21:02:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Full-outer-join-with-QVDs-on-some-condition/m-p/772235#M1045956</guid>
      <dc:creator>reshmakala</dc:creator>
      <dc:date>2014-11-18T21:02:53Z</dc:date>
    </item>
    <item>
      <title>Re: Full outer join with QVDs on some condition</title>
      <link>https://community.qlik.com/t5/QlikView/Full-outer-join-with-QVDs-on-some-condition/m-p/772236#M1045957</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can I not do it in a load statement? I have all my data in a QVD&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2014 21:05:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Full-outer-join-with-QVDs-on-some-condition/m-p/772236#M1045957</guid>
      <dc:creator>reshmakala</dc:creator>
      <dc:date>2014-11-18T21:05:42Z</dc:date>
    </item>
    <item>
      <title>Re: Full outer join with QVDs on some condition</title>
      <link>https://community.qlik.com/t5/QlikView/Full-outer-join-with-QVDs-on-some-condition/m-p/772237#M1045958</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the to_char is an Oracle function&lt;/P&gt;&lt;P&gt;in the load section you can only use Qlik function and there are are a lot of string function&lt;/P&gt;&lt;P&gt;list is in Qlik online help......&lt;/P&gt;&lt;P&gt;what do you want to do with the to_char function in Qlik?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2014 21:11:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Full-outer-join-with-QVDs-on-some-condition/m-p/772237#M1045958</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2014-11-18T21:11:18Z</dc:date>
    </item>
    <item>
      <title>Re: Full outer join with QVDs on some condition</title>
      <link>https://community.qlik.com/t5/QlikView/Full-outer-join-with-QVDs-on-some-condition/m-p/772238#M1045959</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My field in first table was created as a number and the same filed in another table was of varchar type. So I am finding it difficult to compare them.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2014 21:13:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Full-outer-join-with-QVDs-on-some-condition/m-p/772238#M1045959</guid>
      <dc:creator>reshmakala</dc:creator>
      <dc:date>2014-11-18T21:13:11Z</dc:date>
    </item>
    <item>
      <title>Re: Full outer join with QVDs on some condition</title>
      <link>https://community.qlik.com/t5/QlikView/Full-outer-join-with-QVDs-on-some-condition/m-p/772239#M1045960</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;maybe with &lt;/P&gt;&lt;P&gt;text&lt;/P&gt;&lt;P&gt;num#&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from online help&lt;/P&gt;&lt;P class="syntax"&gt;&lt;SPAN class="Bold"&gt;text(&lt;/SPAN&gt;&lt;SPAN class="Italic"&gt;expression &lt;/SPAN&gt;&lt;SPAN class="Bold"&gt;)&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;The &lt;SPAN class="Bold"&gt;text&lt;/SPAN&gt; function forces the expression to be treated as text, even if a numeric interpretation is possible. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2014 21:19:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Full-outer-join-with-QVDs-on-some-condition/m-p/772239#M1045960</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2014-11-18T21:19:50Z</dc:date>
    </item>
  </channel>
</rss>

