<?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 Dilemma with Synthetic Key and Data Modeling in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Dilemma-with-Synthetic-Key-and-Data-Modeling/m-p/216301#M69637</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'd rather suggest you to concatenate your 5 fact tables and make a single transactions table. Do not forget to add and Id for every fact table, so you can filter by set analysis. This way you dimensions will only link to one transactions table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fact1:&lt;/P&gt;&lt;P&gt;load *, 'G/L' as FlagTable;&lt;/P&gt;&lt;P&gt;Fact2:&lt;/P&gt;&lt;P&gt;concatenate(Fact1)&lt;/P&gt;&lt;P&gt;load *, 'Marketing' as FlagTable;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Sep 2010 16:38:37 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-09-23T16:38:37Z</dc:date>
    <item>
      <title>Dilemma with Synthetic Key and Data Modeling</title>
      <link>https://community.qlik.com/t5/QlikView/Dilemma-with-Synthetic-Key-and-Data-Modeling/m-p/216298#M69634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've been dilemma with Synthetic Keys and Data Modeling for my 10 reports and 3 dashboard for my current project.&lt;/P&gt;&lt;P&gt;Let say if i have 5 fact tables and 10 dimensions.&lt;/P&gt;&lt;P&gt;What are the fastest ways to solve the Synthetic keys and produce my reports &amp;amp; data correctly?&lt;/P&gt;&lt;P&gt;I really having time constraint as i'm just beginner but i've given a short time line to produce the reports and dashboard.[:'(]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 16:21:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dilemma-with-Synthetic-Key-and-Data-Modeling/m-p/216298#M69634</guid>
      <dc:creator />
      <dc:date>2010-09-23T16:21:01Z</dc:date>
    </item>
    <item>
      <title>Dilemma with Synthetic Key and Data Modeling</title>
      <link>https://community.qlik.com/t5/QlikView/Dilemma-with-Synthetic-Key-and-Data-Modeling/m-p/216299#M69635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Synthetic keys are not always a problem, actually they may save some time. But I'm guessing that in your case you have several tables with the same field name, so QlikView links those tables when you don't want to do it. (For example, say you have an Item table with an "ID" field and a Customer table with an "ID" field. QlikView will understand that both tables are related, and that's not the case).&lt;/P&gt;&lt;P&gt;If so, check that every table you load has a different name for each field, except for those you want to link, using "Preceding Load" from the script editor wizard will help you to rename those fields, and your script will look like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;ItemTable:LOAD ID AS ITEMID, WAREHOUSE; SQL SELECT ID, WAREHOUSE FROM Items;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Hope that helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 16:27:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dilemma-with-Synthetic-Key-and-Data-Modeling/m-p/216299#M69635</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2010-09-23T16:27:27Z</dc:date>
    </item>
    <item>
      <title>Dilemma with Synthetic Key and Data Modeling</title>
      <link>https://community.qlik.com/t5/QlikView/Dilemma-with-Synthetic-Key-and-Data-Modeling/m-p/216300#M69636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you really do understand what your synthetic keys are, you can keep them for short term.&lt;/P&gt;&lt;P&gt;Take a look here for more details: &lt;A href="http://community.qlik.com/forums/t/31028.aspx?PageIndex=1"&gt;http://community.qlik.com/forums/t/31028.aspx?PageIndex=1&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 16:28:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dilemma-with-Synthetic-Key-and-Data-Modeling/m-p/216300#M69636</guid>
      <dc:creator />
      <dc:date>2010-09-23T16:28:23Z</dc:date>
    </item>
    <item>
      <title>Dilemma with Synthetic Key and Data Modeling</title>
      <link>https://community.qlik.com/t5/QlikView/Dilemma-with-Synthetic-Key-and-Data-Modeling/m-p/216301#M69637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'd rather suggest you to concatenate your 5 fact tables and make a single transactions table. Do not forget to add and Id for every fact table, so you can filter by set analysis. This way you dimensions will only link to one transactions table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fact1:&lt;/P&gt;&lt;P&gt;load *, 'G/L' as FlagTable;&lt;/P&gt;&lt;P&gt;Fact2:&lt;/P&gt;&lt;P&gt;concatenate(Fact1)&lt;/P&gt;&lt;P&gt;load *, 'Marketing' as FlagTable;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 16:38:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dilemma-with-Synthetic-Key-and-Data-Modeling/m-p/216301#M69637</guid>
      <dc:creator />
      <dc:date>2010-09-23T16:38:37Z</dc:date>
    </item>
    <item>
      <title>Dilemma with Synthetic Key and Data Modeling</title>
      <link>https://community.qlik.com/t5/QlikView/Dilemma-with-Synthetic-Key-and-Data-Modeling/m-p/216302#M69638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;B&gt;&lt;/B&gt;&lt;B&gt;&lt;A href="http://community.qlik.com/forums/members/mabaeyens/default.aspx"&gt;Miguel A. Baeyens&lt;/A&gt;,&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;B&gt;Thank you for your quick response. &lt;IMG alt="Smile" src="http://community.qlik.com/emoticons/emotion-1.gif" /&gt;&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;I'd used the method that you shared to me previously. it works fine if we have 1 or 2 syn keys, especially when combining few Dimensions Table.&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;But when i start to add in my fact table, some data doesn't pull out correctly. it makes .. errr.. let say.. reportA show data correctly, but report B doesn't show data correctly.&lt;/B&gt;&lt;/P&gt;&lt;P style="font-weight: bold"&gt;Is it we must solve it the synthetic keys always? (i have more than 30 syn keys at the same time)&lt;/P&gt;&lt;P style="font-weight: bold"&gt;if yes, then under what circumstances?what reasons?&lt;BR /&gt;&lt;/P&gt;&lt;P style="font-weight: bold"&gt;if no?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;Thank you.&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;Sorry qlikers for disturb, i really don't have any experience in BI tools etc. Qlikview is my first experience with BI/DW.&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;Appreciate you response.&lt;/B&gt;&lt;/P&gt;&lt;P style="font-weight: bold"&gt;&lt;IMG alt="Big Smile" src="http://community.qlik.com/emoticons/emotion-2.gif" /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 16:42:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dilemma-with-Synthetic-Key-and-Data-Modeling/m-p/216302#M69638</guid>
      <dc:creator />
      <dc:date>2010-09-23T16:42:50Z</dc:date>
    </item>
    <item>
      <title>Dilemma with Synthetic Key and Data Modeling</title>
      <link>https://community.qlik.com/t5/QlikView/Dilemma-with-Synthetic-Key-and-Data-Modeling/m-p/216303#M69639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-weight: bold"&gt;Hi &lt;STRONG&gt;Nick Bor,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Thank you for your response and link.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I've gone through the post previously. But still, i'm having the dilemma and even have the "run out of virtual memory" error message.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;IMG alt="Big Smile" src="http://community.qlik.com/emoticons/emotion-2.gif" /&gt; should i hang myself? [:'(]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Thanks for the information.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 16:54:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dilemma-with-Synthetic-Key-and-Data-Modeling/m-p/216303#M69639</guid>
      <dc:creator />
      <dc:date>2010-09-23T16:54:44Z</dc:date>
    </item>
    <item>
      <title>Dilemma with Synthetic Key and Data Modeling</title>
      <link>https://community.qlik.com/t5/QlikView/Dilemma-with-Synthetic-Key-and-Data-Modeling/m-p/216304#M69640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;there's a useful "share qlikview" that automatically removes every syn keys from your app, you can download it here:&lt;/P&gt;&lt;P&gt;&lt;A href="http://community.qlik.com/media/p/76744.aspx"&gt;http://community.qlik.com/media/p/76744.aspx&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 17:00:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dilemma-with-Synthetic-Key-and-Data-Modeling/m-p/216304#M69640</guid>
      <dc:creator />
      <dc:date>2010-09-23T17:00:22Z</dc:date>
    </item>
    <item>
      <title>Dilemma with Synthetic Key and Data Modeling</title>
      <link>https://community.qlik.com/t5/QlikView/Dilemma-with-Synthetic-Key-and-Data-Modeling/m-p/216305#M69641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;B&gt;ivan_cruz,&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;Thank you for the reply. I'd appreciate it.&lt;/B&gt;&lt;/P&gt;&lt;P style="font-weight: bold"&gt;Each of my fact table have like 10-15 same field name. If i use concatenate, will this produce a very large table?&lt;/P&gt;&lt;P&gt;&lt;B&gt;Should i link the fact table first? or dimension table first? or how? can you advise. thank you.&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;i explored some posts in this forum here, some people saying that we should use Link Table if involved more than 2 fact table.&lt;/B&gt;&lt;/P&gt;&lt;P style="font-weight: bold"&gt;is this true? if yes, then we should link all the fact table first? or dimension table first? or mixed up?&lt;/P&gt;&lt;P&gt;&lt;B&gt;Thank you.&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;Thank you qlikers, wish i get a solution when i wake up tomorrow.&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;God Bless.&lt;BR /&gt;&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: bold"&gt;&lt;BR /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 17:05:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dilemma-with-Synthetic-Key-and-Data-Modeling/m-p/216305#M69641</guid>
      <dc:creator />
      <dc:date>2010-09-23T17:05:45Z</dc:date>
    </item>
    <item>
      <title>Dilemma with Synthetic Key and Data Modeling</title>
      <link>https://community.qlik.com/t5/QlikView/Dilemma-with-Synthetic-Key-and-Data-Modeling/m-p/216306#M69642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Depending on what you want to do with the information, the linktable approach might be convenient. Most of the times you can get away with the concatenation approach. If you concatenate all you fact tables, the result is going to be a big fat table, however performance will improve since all data is on the same table. If you want a fast solution you can use the share qlikview I mentioned in my last post.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 17:13:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dilemma-with-Synthetic-Key-and-Data-Modeling/m-p/216306#M69642</guid>
      <dc:creator />
      <dc:date>2010-09-23T17:13:58Z</dc:date>
    </item>
    <item>
      <title>Dilemma with Synthetic Key and Data Modeling</title>
      <link>https://community.qlik.com/t5/QlikView/Dilemma-with-Synthetic-Key-and-Data-Modeling/m-p/216307#M69643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My suggestion, not going into it in depth, is that you have to take synthetic keys as a warning when something similar to what I described above is happening, that is, when two fields that store different information are named alike. One example is Date from Orders table and Date from Invoice Table. QlikView will then link Orders and Invoices through the Date field, which is used for different purposes and probably need a different calendar each. You can avoid this renaming the first to OrderDate and the second InvoiceDate&lt;/P&gt;&lt;P&gt;Say you have a primary key field in your tables, called "Key". Obviously, Key = 1 in Item table has not to be linked with Key = 1 in Customers, Vendors or Invoices tables. Renaming as ItemKey, CustomerKey, VendorKey or InvoiceKey will solve the issue.&lt;/P&gt;&lt;P&gt;But now you say you have several invoice line for each invoice, and you want to link InvoiceLine and InvoiceHeader tables with fields InvoiceNo, ItemNo and InvoiceLineNo, Should both tables have those three fields, a synthetic key will be created, saving you the time to create a composite key and will create a third table (called something like "$Syn_Table") that will store all possible combinations between those fields.&lt;/P&gt;&lt;P&gt;I strongly recommend you to read &lt;A href="http://community.qlik.com/forums/t/31028.aspx?PageIndex=1" title="Should We Stop Worrying and Love the Synthetic Key? "&gt;this post&lt;/A&gt; (among others) and check and understand the scenarios described there about synthetic keys, their meaning and their use.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 17:17:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dilemma-with-Synthetic-Key-and-Data-Modeling/m-p/216307#M69643</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2010-09-23T17:17:57Z</dc:date>
    </item>
    <item>
      <title>Dilemma with Synthetic Key and Data Modeling</title>
      <link>https://community.qlik.com/t5/QlikView/Dilemma-with-Synthetic-Key-and-Data-Modeling/m-p/216308#M69644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think the problem is related with the point of view for the task. You need to think about QV table structure more carefully and from stamp point of business needs .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 17:21:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dilemma-with-Synthetic-Key-and-Data-Modeling/m-p/216308#M69644</guid>
      <dc:creator />
      <dc:date>2010-09-23T17:21:23Z</dc:date>
    </item>
    <item>
      <title>Dilemma with Synthetic Key and Data Modeling</title>
      <link>https://community.qlik.com/t5/QlikView/Dilemma-with-Synthetic-Key-and-Data-Modeling/m-p/216309#M69645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ivan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can we concatenate 3 fact table into one, but at the same time, 2 of the 3fact table having few field that are same name? How to solve this?&lt;/P&gt;&lt;P&gt;Do we rename the field?&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Sep 2010 11:10:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dilemma-with-Synthetic-Key-and-Data-Modeling/m-p/216309#M69645</guid>
      <dc:creator />
      <dc:date>2010-09-26T11:10:43Z</dc:date>
    </item>
    <item>
      <title>Dilemma with Synthetic Key and Data Modeling</title>
      <link>https://community.qlik.com/t5/QlikView/Dilemma-with-Synthetic-Key-and-Data-Modeling/m-p/216310#M69646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;If you are concatenating, you shouldn't worry about that, because you will have one table instead of three. In case some of the tables have the same field name will not create a synth key, you are already avoiding that concatenating. The issue may be somewhere else.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Sep 2010 11:34:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dilemma-with-Synthetic-Key-and-Data-Modeling/m-p/216310#M69646</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2010-09-26T11:34:49Z</dc:date>
    </item>
    <item>
      <title>Dilemma with Synthetic Key and Data Modeling</title>
      <link>https://community.qlik.com/t5/QlikView/Dilemma-with-Synthetic-Key-and-Data-Modeling/m-p/216311#M69647</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ivan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can we concatenate 3 fact table into one, but at the same time, 2 of the 3fact table having few field that are same name? How to solve this?&lt;/P&gt;&lt;P&gt;Do we rename the field?&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Sep 2010 12:12:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dilemma-with-Synthetic-Key-and-Data-Modeling/m-p/216311#M69647</guid>
      <dc:creator />
      <dc:date>2010-09-26T12:12:17Z</dc:date>
    </item>
    <item>
      <title>Dilemma with Synthetic Key and Data Modeling</title>
      <link>https://community.qlik.com/t5/QlikView/Dilemma-with-Synthetic-Key-and-Data-Modeling/m-p/216312#M69648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Miguel,&lt;/P&gt;&lt;P&gt;Thanks for the reply.&lt;/P&gt;&lt;P&gt;Maybe i use a example to express my doubt on concatenate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let say i have 3 fact table name as factA, factB, factC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;factA and factB having the same name field as REV_IN_GC. but both REV_IN_GC having different values.&lt;/P&gt;&lt;P&gt;After i concatenate the table, there'll be only one field REV_IN_GC in the concatenate table, am i right?&lt;/P&gt;&lt;P&gt;if i want to pull the data from REV_IN_GC from factB instead of factA, how qlikview identify?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you so much.&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Sep 2010 12:31:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dilemma-with-Synthetic-Key-and-Data-Modeling/m-p/216312#M69648</guid>
      <dc:creator />
      <dc:date>2010-09-26T12:31:15Z</dc:date>
    </item>
    <item>
      <title>Re: Dilemma with Synthetic Key and Data Modeling</title>
      <link>https://community.qlik.com/t5/QlikView/Dilemma-with-Synthetic-Key-and-Data-Modeling/m-p/216313#M69649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;where I can find this tool? as this link does not work&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Oct 2013 15:20:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dilemma-with-Synthetic-Key-and-Data-Modeling/m-p/216313#M69649</guid>
      <dc:creator>carlos13</dc:creator>
      <dc:date>2013-10-14T15:20:11Z</dc:date>
    </item>
  </channel>
</rss>

