Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
SwetaSule
Contributor II
Contributor II

How to resolve Synthetic keys created on Link Table in QS

Hello All,

 

I have 3 tables and  have created link table on these tables. Issue is that synthetic table is getting created on my link table.

Please can anyone provide me the solution on this.

 

 

Thanks In Advance. 

Labels (1)
4 Replies
justISO
Specialist
Specialist

Hi, can you provide at least data model view how it looks now? Its hard to solve this without anything.

SwetaSule
Contributor II
Contributor II
Author

Please find the attachment - Data modeling

SunilChauhan
Champion II
Champion II

you Can create  Composite Key

i.e if more than  on column is common in two Tables

Table1:

Load  A,B,c

From Table 1

Table 2:Load  A,B,D,E

From Table 2

 

Then you Can do below

 

LOAD 

A&B as COmpositeKey,

A,B,

C

From Table 1

Load A&B as COmpositeKey,

D,E

Resident Table2;

Drop Tables Table1,Table2;

 

 

or you Merge two Tables if possible.

 

Sunil Chauhan
SwetaSule
Contributor II
Contributor II
Author

Thank you for providing the solution. I have concatenated the tables.