Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
shantanu73
Creator II
Creator II

What is Link Tables? What is the use?

Hello Forums/Friends

I am aware of Synthetic key, Circular refrence, etc and know how to remove it.

But What is Link Table? What is the use/advantage of Link Table?

Is it only to remove the Synthetic key or more.

Can pls explain in details

Thanks in Advance

SRS

6 Replies
khadeer
Specialist
Specialist

Link tables are generally used for linking the two table or the fact tables.

Let us go with an example..

As we know that when we are designing the datamodel synthetic keys and circular loop are common.

For fixing this problems we use the link table concept.

You can also use concatenation ,but it always not give the appropiate result.

Concatenation works well enough when we have all the fields same.


With the use of link tables, it’s possible to keep the facttables separated from each other. The advantage of this solution   for choosing this method is to keep the datamodel a logical one.

Please refer the following link. But its better to avoid link table.

Hope it helps u.

http://www.quickqlearqool.nl/?p=910

Not applicable

hi

in qlikview if two table has a single common field, then these table automaticaly linked. called link table,

because qlikview work on associtive query languages(AQL).

now if between two tables more than one common field (suppose two common field)then it link two times via synthetik key.

shantanu73
Creator II
Creator II
Author

Hello Friend,

Thanks for Response

SRS

shantanu73
Creator II
Creator II
Author

Hello vishwaranjan,

Thanks for Response

SRS

regowins
Creator II
Creator II

link_table.JPG

ramkrishna86
Creator II
Creator II

There are two main strategies to modelling data in QlikView to handle multiple fact tables:

  1. Append your fact tables into one single fact table - usually referred to as a CONCATENATED FACT as QlikView's syntax for appending data to tables is by use of the CONCATENATE prefix (the equivalent of a SQL UNION operation)
  2. Build a link table (what you have done so far) For a majority of implementations, option 1 is the appropriate method. Attributes of a CONCATENATED fact can be summarised as:

Positives:

  1. Performs well due to the reduced number of large tables in the data model
  2. Simple to implement, just append all data to one generic fact table whilst ensuring common dimensions are referenced by common field names

Negatives:

  1. The different facts are NOT directly associated with each other. The implication is important to understand. It means that cross-analysis of facts is typically only achievable by the common dimensions. Any fact specific dimensions do not connect in any way to the records of the facts that do not reference these dimensions. Complex 'set analysis' syntax can to some degree mitigate this shortcoming, but if your core requirement is to do indirect analysis of fact A by fact B's fact specific dimensions then you may need to revert to a link table model instead.

How to construct Link Tables is a complex subject but relies upon traditional database linking table design techniques. It is easy to go wrong and produce linking tables that may seem to produce the correct results in the front-end but is excessively large, consuming memory and CPU resources.

In my experience, a poorly modelled QlikView data model is the most common culprit for causing poor performance.

I hope this quick, far from exhaustive, introduction to multi-fact modelling in QlikView proves of some help and sets you on the right course.