Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

QVD JOIN TABLE

Hello,

Quick question.  Can QVD file be join with a table with a join clause?

Your help is appreciated!

2 Replies
Not applicable
Author

Trying to do something like this, but it is feasible?

FROM (qvd) a join (select distinct pos from dbo.Mapping with(nolock)) b

on a.pos=b.pos

kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

  Its very simple. Try following.

  Select Distinct pos

   from dbo.mapping;

  join

  Load abc,pos

  from xyz.qvd (qvd);

  Make sure that joining field have same name in both the table.

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!