<?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 Synthetic Key Issues in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Synthetic-Key-Issues/m-p/1606984#M736341</link>
    <description>&lt;P&gt;Hi, I have an issue with Synthetic Keys and am not sure how to fix this, or does it need fixing?&lt;/P&gt;&lt;P&gt;I have 3 tables that I wish to join, but to make the joins work properly I get synthetic keys. I've created a small dummy data to represent what I have. I cant see a way for creating a key by joining fields and if I do a join in my full data set I end up with duplicated data.&lt;/P&gt;&lt;P&gt;&lt;FONT color="#3366FF"&gt;// Load Location Data&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;UNQUALIFY *;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;L_TMP:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;LOAD * Inline [&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;NAME, LOCATION&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;Bill, Office1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;Jill, Office2&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;Fred, Home&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;Mary, Office1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;Unassigned];&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;QUALIFY *;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;UNQUALIFY "%_*";&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;LOCATION:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;LOAD *&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;,NAME as %_NAME&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;Resident L_TMP;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#3366FF"&gt;Drop Table L_TMP;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#3366FF"&gt;// Load Work Order Data&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;UNQUALIFY *;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;W_TMP:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;LOAD * Inline [&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;KEY, ASSIGNED, DESCRIPTION&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;WO1, Mary, Find Cat&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;WO2, Fred, Read Book&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;WO3, Mary, Build Shed&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;WO4, Jill, Mow Lawn&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;WO5, Fred, Make Breakfast&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;WO6, Unassigned, Cook Dinner&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;WO7, Fred, Clean House&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;WO8, Fred, Wash Clothes&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;];&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;QUALIFY *;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;UNQUALIFY "%_*";&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;WORK_ORDER:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;LOAD *&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;,ASSIGNED as %_NAME&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;,KEY as %_WO&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;Resident W_TMP;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#3366FF"&gt;Drop Table W_TMP;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#3366FF"&gt;// Load Task Data&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;UNQUALIFY *;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;T_TMP:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;LOAD * Inline [&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;KEY, NAME, DESCRIPTION, WORKORDER&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;A1, Bill, Look Inside, WO1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;A2, Jill, Look Outside, WO1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;A3, Mary, Get Mower, WO4&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;A7, Jill, Fuel Mower, WO4&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;A5, Mary, Cut Lawn, WO4&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;A9, Bill, Get Wash Powder, WO8&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;A6, Unassigned, Collect Clothes, WO8&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;A4, Bill, Clean Upstairs, WO7&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;A10, Unassigned, Clean Downstairs, WO7&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;A8, Jill, Dry Clothes, WO8&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;A11, Mary, Paint Doors, WO21&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;];&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;QUALIFY *;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;UNQUALIFY "%_*";&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;TASKS:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;LOAD *&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;,NAME as %_NAME&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;,WORKORDER as %_WO&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;Resident T_TMP;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#3366FF"&gt;Drop Table T_TMP;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#3366FF"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 431px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/16136iC2C4150344EC037F/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;Any help would be greatly appreciated, thank you&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 16 Nov 2024 20:22:09 GMT</pubDate>
    <dc:creator>SimonDB</dc:creator>
    <dc:date>2024-11-16T20:22:09Z</dc:date>
    <item>
      <title>Synthetic Key Issues</title>
      <link>https://community.qlik.com/t5/QlikView/Synthetic-Key-Issues/m-p/1606984#M736341</link>
      <description>&lt;P&gt;Hi, I have an issue with Synthetic Keys and am not sure how to fix this, or does it need fixing?&lt;/P&gt;&lt;P&gt;I have 3 tables that I wish to join, but to make the joins work properly I get synthetic keys. I've created a small dummy data to represent what I have. I cant see a way for creating a key by joining fields and if I do a join in my full data set I end up with duplicated data.&lt;/P&gt;&lt;P&gt;&lt;FONT color="#3366FF"&gt;// Load Location Data&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;UNQUALIFY *;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;L_TMP:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;LOAD * Inline [&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;NAME, LOCATION&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;Bill, Office1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;Jill, Office2&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;Fred, Home&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;Mary, Office1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;Unassigned];&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;QUALIFY *;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;UNQUALIFY "%_*";&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;LOCATION:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;LOAD *&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;,NAME as %_NAME&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;Resident L_TMP;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#3366FF"&gt;Drop Table L_TMP;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#3366FF"&gt;// Load Work Order Data&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;UNQUALIFY *;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;W_TMP:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;LOAD * Inline [&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;KEY, ASSIGNED, DESCRIPTION&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;WO1, Mary, Find Cat&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;WO2, Fred, Read Book&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;WO3, Mary, Build Shed&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;WO4, Jill, Mow Lawn&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;WO5, Fred, Make Breakfast&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;WO6, Unassigned, Cook Dinner&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;WO7, Fred, Clean House&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;WO8, Fred, Wash Clothes&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;];&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;QUALIFY *;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;UNQUALIFY "%_*";&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;WORK_ORDER:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;LOAD *&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;,ASSIGNED as %_NAME&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;,KEY as %_WO&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;Resident W_TMP;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#3366FF"&gt;Drop Table W_TMP;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#3366FF"&gt;// Load Task Data&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;UNQUALIFY *;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;T_TMP:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;LOAD * Inline [&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;KEY, NAME, DESCRIPTION, WORKORDER&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;A1, Bill, Look Inside, WO1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;A2, Jill, Look Outside, WO1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;A3, Mary, Get Mower, WO4&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;A7, Jill, Fuel Mower, WO4&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;A5, Mary, Cut Lawn, WO4&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;A9, Bill, Get Wash Powder, WO8&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;A6, Unassigned, Collect Clothes, WO8&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;A4, Bill, Clean Upstairs, WO7&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;A10, Unassigned, Clean Downstairs, WO7&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;A8, Jill, Dry Clothes, WO8&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;A11, Mary, Paint Doors, WO21&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;];&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;QUALIFY *;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;UNQUALIFY "%_*";&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;TASKS:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;LOAD *&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;,NAME as %_NAME&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;,WORKORDER as %_WO&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;Resident T_TMP;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#3366FF"&gt;Drop Table T_TMP;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#3366FF"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 431px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/16136iC2C4150344EC037F/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;Any help would be greatly appreciated, thank you&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 20:22:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Synthetic-Key-Issues/m-p/1606984#M736341</guid>
      <dc:creator>SimonDB</dc:creator>
      <dc:date>2024-11-16T20:22:09Z</dc:date>
    </item>
    <item>
      <title>Re: Synthetic Key Issues</title>
      <link>https://community.qlik.com/t5/QlikView/Synthetic-Key-Issues/m-p/1607068#M736342</link>
      <description>&lt;P&gt;Hi how are you?&lt;/P&gt;&lt;P&gt;Question: You want to join? or only have a relation between tables?&lt;/P&gt;&lt;P&gt;If you want to join, you have to use the JOIN FUNCTION IN THE SCRIPT between tables.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If only you want to have a relation, try this code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Drop Table L_TMP;&lt;/P&gt;&lt;P&gt;// Load Work Order Data&lt;BR /&gt;UNQUALIFY *;&lt;BR /&gt;W_TMP:&lt;BR /&gt;LOAD * Inline [&lt;BR /&gt;KEY, ASSIGNED, DESCRIPTION&lt;BR /&gt;WO1, Mary, Find Cat&lt;BR /&gt;WO2, Fred, Read Book&lt;BR /&gt;WO3, Mary, Build Shed&lt;BR /&gt;WO4, Jill, Mow Lawn&lt;BR /&gt;WO5, Fred, Make Breakfast&lt;BR /&gt;WO6, Unassigned, Cook Dinner&lt;BR /&gt;WO7, Fred, Clean House&lt;BR /&gt;WO8, Fred, Wash Clothes&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;QUALIFY *;&lt;BR /&gt;UNQUALIFY "%_*";&lt;BR /&gt;WORK_ORDER:&lt;BR /&gt;LOAD *&lt;BR /&gt;,ASSIGNED as %_NAME&lt;BR /&gt;,KEY as %_WO&lt;BR /&gt;Resident W_TMP;&lt;/P&gt;&lt;P&gt;Drop Table W_TMP;&lt;/P&gt;&lt;P&gt;// Load Task Data&lt;BR /&gt;UNQUALIFY *;&lt;BR /&gt;T_TMP:&lt;BR /&gt;LOAD * Inline [&lt;BR /&gt;KEY, NAME, DESCRIPTION, WORKORDER&lt;BR /&gt;A1, Bill, Look Inside, WO1&lt;BR /&gt;A2, Jill, Look Outside, WO1&lt;BR /&gt;A3, Mary, Get Mower, WO4&lt;BR /&gt;A7, Jill, Fuel Mower, WO4&lt;BR /&gt;A5, Mary, Cut Lawn, WO4&lt;BR /&gt;A9, Bill, Get Wash Powder, WO8&lt;BR /&gt;A6, Unassigned, Collect Clothes, WO8&lt;BR /&gt;A4, Bill, Clean Upstairs, WO7&lt;BR /&gt;A10, Unassigned, Clean Downstairs, WO7&lt;BR /&gt;A8, Jill, Dry Clothes, WO8&lt;BR /&gt;A11, Mary, Paint Doors, WO21&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;QUALIFY *;&lt;BR /&gt;UNQUALIFY "%_*";&lt;BR /&gt;TASKS:&lt;BR /&gt;LOAD *&lt;BR /&gt;,NAME as %_NAME&lt;BR /&gt;,WORKORDER as %_WO_TASK&lt;BR /&gt;Resident T_TMP;&lt;/P&gt;&lt;P&gt;Drop Table T_TMP;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2019 14:24:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Synthetic-Key-Issues/m-p/1607068#M736342</guid>
      <dc:creator>fkeuroglian</dc:creator>
      <dc:date>2019-07-29T14:24:34Z</dc:date>
    </item>
    <item>
      <title>Re: Synthetic Key Issues</title>
      <link>https://community.qlik.com/t5/QlikView/Synthetic-Key-Issues/m-p/1614795#M736343</link>
      <description>&lt;P&gt;Simon, have a look at the following Design Blog post, I think it will help you out here:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/Synthetic-Keys/ba-p/1472634" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/Synthetic-Keys/ba-p/1472634&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Brett&lt;/P&gt;</description>
      <pubDate>Wed, 21 Aug 2019 12:34:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Synthetic-Key-Issues/m-p/1614795#M736343</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2019-08-21T12:34:29Z</dc:date>
    </item>
  </channel>
</rss>

