Hi,
My version is 12.2.1
I am trying to model the equivalent of; -
select tab1.VarFields, il.VarFields
from tab1
, (select *
from tab2
where tab2.fieldX = 'FlyInTheOintment') il
where tab1.fieldX = il.fieldX(+))
I am trying to do this without resorting to opaque views (for reasons of performance) and database views (ditto) and without building a new table via an ETL process.
Is it possible?
I know you can join two tables in the Logical Table Source, and I know that you can specify a filter in the Logical Table properties, BUT, my concern is that when the tab2 content returns no data applying the filter on that same table will cause tab1 content to be correspondingly filtered, as null data is never equal to anything.
thanks for your input in anticipation.
Robert.