Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
vipingarg23
Creator
Creator

how to join multiple dimension table to single fact table

Hi Team,

I have one fact table which is having 36 crore records, and have 4 dimension tables. I need to do inner join 4 dimension table to one fact table. As fact table is having 36cr record, it is taking too much time for below code:

Fact:

Inner Join(Fact)

DimensionA

Inner Join(Fact)

DimensionB

Inner Join(Fact)

DimensionC

Inner Join(Fact)

DimensionD

Can anyone correct me on the same?

2 Replies
PrashantSangle

your code is correct.

but is it necessary to do inner join dimension table to fact table??? you can keep it on association.

if it is necessary to join then take only required field from dimension table because high number of columns will impact on you script load.

Regards,

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
vipingarg23
Creator
Creator
Author

Thanks Prashant For your suggestion..