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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

[resolved] Reverse of Right outer Join

Hi,
I have two tables (Say A and B)
Data is flowing from A to B
A--> tMap--> B
Table A has values inserted periodically. (More data from files are added to table A periodically)
Table B has values after transformation from table A.
When running the process again after A has more values added to it. I want only (A-B) values to be processed and added to table B.
One way of achieving it can be taking a reverse of Right outer join on A and B. (How to do it?)
Is there any better way to do it?
A and B has huge data. So please avoid solution with data redundancy.
Labels (2)
1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Try following
In your job
Use A as Main
B as lookup
Use Inner join and at output enable inner join reject.. this will give all the records from A which are not in B
I hope this is what you mean >> I want only (A-B) values
Thanks
Vaibhav

View solution in original post

2 Replies
Anonymous
Not applicable
Author

Try following
In your job
Use A as Main
B as lookup
Use Inner join and at output enable inner join reject.. this will give all the records from A which are not in B
I hope this is what you mean >> I want only (A-B) values
Thanks
Vaibhav
Anonymous
Not applicable
Author

Thanks Vaibhav. It did the job.