<?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: Join between two tables where key field is having 18 digits in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Join-between-two-tables-where-key-field-is-having-18-digits/m-p/1560020#M743530</link>
    <description>&lt;P&gt;Why don't you convert the number to text and then join the two together?&lt;/P&gt;</description>
    <pubDate>Fri, 22 Mar 2019 10:58:16 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2019-03-22T10:58:16Z</dc:date>
    <item>
      <title>Join between two tables where key field is having 18 digits</title>
      <link>https://community.qlik.com/t5/QlikView/Join-between-two-tables-where-key-field-is-having-18-digits/m-p/1560015#M743529</link>
      <description>&lt;P&gt;Hi Expert,&lt;/P&gt;&lt;P&gt;I have to join two QVD's with a field which is having 18 digits in it. Though it is 1:1 relation the data is getting duplicated.&lt;/P&gt;&lt;P&gt;I understand that it is not considering 18 digits for joining and showing key field info like below.&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;1.0000000003537E+18&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1.0000000003538E+18&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1.0000000003539E+18&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1.000000000354E+18&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can anyone help how to handle this in Qlik to join?&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raju&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 04:04:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-between-two-tables-where-key-field-is-having-18-digits/m-p/1560015#M743529</guid>
      <dc:creator>raju_salmon</dc:creator>
      <dc:date>2024-11-16T04:04:35Z</dc:date>
    </item>
    <item>
      <title>Re: Join between two tables where key field is having 18 digits</title>
      <link>https://community.qlik.com/t5/QlikView/Join-between-two-tables-where-key-field-is-having-18-digits/m-p/1560020#M743530</link>
      <description>&lt;P&gt;Why don't you convert the number to text and then join the two together?&lt;/P&gt;</description>
      <pubDate>Fri, 22 Mar 2019 10:58:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-between-two-tables-where-key-field-is-having-18-digits/m-p/1560020#M743530</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-03-22T10:58:16Z</dc:date>
    </item>
    <item>
      <title>Re: Join between two tables where key field is having 18 digits</title>
      <link>https://community.qlik.com/t5/QlikView/Join-between-two-tables-where-key-field-is-having-18-digits/m-p/1560045#M743531</link>
      <description>&lt;P&gt;Thank you, it is showing same result though i have converted to text.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Mar 2019 12:04:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-between-two-tables-where-key-field-is-having-18-digits/m-p/1560045#M743531</guid>
      <dc:creator>raju_salmon</dc:creator>
      <dc:date>2019-03-22T12:04:50Z</dc:date>
    </item>
    <item>
      <title>Re: Join between two tables where key field is having 18 digits</title>
      <link>https://community.qlik.com/t5/QlikView/Join-between-two-tables-where-key-field-is-having-18-digits/m-p/1560049#M743532</link>
      <description>&lt;P&gt;Same result? Can you elaborate on this?&lt;/P&gt;</description>
      <pubDate>Fri, 22 Mar 2019 12:07:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-between-two-tables-where-key-field-is-having-18-digits/m-p/1560049#M743532</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-03-22T12:07:57Z</dc:date>
    </item>
    <item>
      <title>Re: Join between two tables where key field is having 18 digits</title>
      <link>https://community.qlik.com/t5/QlikView/Join-between-two-tables-where-key-field-is-having-18-digits/m-p/1560063#M743533</link>
      <description>&lt;P&gt;I have used&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;field,&lt;/P&gt;&lt;P&gt;text(field) as field1 from table;&lt;/P&gt;&lt;P&gt;Both are showing same result like '1234567891234e+18'.&lt;/P&gt;&lt;P&gt;If i user a text box and evaluate the same&amp;nbsp;&lt;/P&gt;&lt;P&gt;=num(123456789123456789) result is 1.2345678912346e+17&lt;/P&gt;&lt;P&gt;=text(123456789123456789) result is 123456789123456789&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If i divide field as two separate field and concatenate&lt;/P&gt;&lt;P&gt;Left(num(field,####################), 15)&amp;amp;Mid(num(field,,####################),16,5) as new field&lt;/P&gt;&lt;P&gt;last two digits are changing&lt;/P&gt;&lt;P&gt;Actual number in DB is 10000000000352423524285&lt;STRONG&gt;99&lt;/STRONG&gt;; result in QV is&amp;nbsp;10000000000352423524285&lt;STRONG&gt;44.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Not sure why last two digits are changing&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Mar 2019 12:21:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-between-two-tables-where-key-field-is-having-18-digits/m-p/1560063#M743533</guid>
      <dc:creator>raju_salmon</dc:creator>
      <dc:date>2019-03-22T12:21:52Z</dc:date>
    </item>
    <item>
      <title>Re: Join between two tables where key field is having 18 digits</title>
      <link>https://community.qlik.com/t5/QlikView/Join-between-two-tables-where-key-field-is-having-18-digits/m-p/1560214#M743534</link>
      <description>&lt;P&gt;Depending on the used number-system Qlik couldn't handle numbers with more as 15 respectively 14 digits as numbers. Therefore the suggestion to convert the numbers to text and if the db or the driver returned the value with a &lt;SPAN class="st"&gt;scientific notation&lt;/SPAN&gt; it might be useful to make this conversion already within the sql-query.&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Fri, 22 Mar 2019 15:49:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-between-two-tables-where-key-field-is-having-18-digits/m-p/1560214#M743534</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2019-03-22T15:49:11Z</dc:date>
    </item>
  </channel>
</rss>

