pushdown functionality

Give me the idea of pushdown_sql function…

coming thing in where clause throw me error

STG_CUSTOMER.NAME <> (pushdown_sql(‘DS_SAMPLE’, ‘select ODS_CUSTOMER.NAME from ODS_CUSTOMER’))

Pls help…


JES (BOB member since 2008-06-16)


Werner Daehn :de: (BOB member since 2004-12-17)

In addition to Werner’s links, you might want to consider your approach. If you are truly looking for an exclusion of all the entries from one table, then <> is not the operator you want. NOT IN would be one (albeit non efficient) approach, another would be to use a left outer join with a null filter, and a preload cached lookup would be a third.

  • Ernie

eepjr24 :us: (BOB member since 2005-09-16)

Thanx…


JES (BOB member since 2008-06-16)