Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I have two tables already loaded in memory. I want to do a join between this tables, without having to store one table in a qvd.
How should I do it?
I've tryied in many ways, but the resident table gets concatenated with the original one, and I get a "invalid prefix combination" if I try to use NoConcatenate Load
[LotesFrutaGranelConKgDistribuidos]:
Left Join (LotesFrutaGranel)
LOAD * Resident KilosDistribuidos;
Drop Table LotesFrutaGranel;
Thanks!
The table name is not needed here and why drop the table you are joining to?
[LotesFrutaGranelConKgDistribuidos]:
Left Join (LotesFrutaGranel)
LOAD * Resident KilosDistribuidos;
Drop Table LotesFrutaGranel;
The table name is not needed here and why drop the table you are joining to?
[LotesFrutaGranelConKgDistribuidos]:
Left Join (LotesFrutaGranel)
LOAD * Resident KilosDistribuidos;
Drop Table LotesFrutaGranel;
You should consider using Join Keep
You're right
It worked:
Left Join (LotesFrutaGranel)
LOAD * Resident KilosDistribuidos;
Drop Table KilosDistribuidos;