I use the Oracle VPD facility(aka RLS, aka FGAC).
Suppose that i use the predicate
'(WHERE) id = 'XXXX''
on TableA and then i use the predicate
'(WHERE) col in (SELECT col From TableA)'
on TableB.
Will TableA be filtered or not? Filtering is done only outside of predicate definitions, when you query the tables?. Will i need to make predicate on TableB like this:
'(WHERE) col in (SELECT col From TableA where id ='XXXX')'
?
Thanks