show/hide this revision's text 5 deleted 870 characters in body

CS.CS_INCIDENTS_ALL_B seems to be the SYNONYM too which points somewhere outside APPS.CS_INCIDENTS_B_SEC.

Could you please post the query plan for both queries?

This will show you the real underlying tables.

EXPLAIN PLAN FORFROM    TABLE(DBMS_XPLAN.display())EXPLAIN PLAN FORFROM    TABLE(DBMS_XPLAN.display())

You have ROW LEVEL SECURITY enabled.

The final table user function FND_GENERIC_POLICY.GET_PREDICATE gets called each time you are selecting from is apparently a view, there is a filtering condition in access the plantable and limits access to some rows.

Could

It returns different results depending on how do you please run access the following queries?

SELECT  *        owner = 'CS'        AND synonym_name = 'CS_INCIDENTS_ALL_B'        owner = PRIOR table_owner        AND synonym_name = PRIOR table_name        owner = 'APPS'        AND synonym_name = 'CS_INCIDENTS_B_SEC'        owner = PRIOR table_owner        AND synonym_name = PRIOR table_name

This will show table: directly or through the full synonym chainSYNONYM.

Update2

Probably you have ROW LEVEL SECURITY enabled

You'll need to look into the function and see what's going on (or post the function text here).Could you please run:

SELECT  *
        
show/hide this revision's text 4 added 142 characters in body

CS.CS_INCIDENTS_ALL_B seems to be the SYNONYM too which points somewhere outside APPS.CS_INCIDENTS_B_SEC.

Could you please post the query plan for both queries?

This will show you the real underlying tables.

EXPLAIN PLAN FOR
SELECT  *
FROM    CS.CS_INCIDENTS_ALL_B
/
SELECT  *
FROM    TABLE(DBMS_XPLAN.display())
/
EXPLAIN PLAN FOR
SELECT  *
FROM    APPS.CS_INCIDENTS_B_SEC
/
SELECT  *
FROM    TABLE(DBMS_XPLAN.display())
/

Update:

The final table you are selecting from is apparently a view, there is a filtering condition in the plan.

Could you please run the following queries?

SELECT  *
FROM    dba_synonyms
START WITH
        owner = 'CS'
        AND synonym_name = 'CS_INCIDENTS_ALL_B'
CONNECT BY
        owner = PRIOR table_owner
        AND synonym_name = PRIOR table_name
/

SELECT  *
FROM    dba_synonyms
START WITH
        owner = 'APPS'
        AND synonym_name = 'CS_INCIDENTS_B_SEC'
CONNECT BY
        owner = PRIOR table_owner
        AND synonym_name = PRIOR table_name
/

This will show the full synonym chain.

Update2

Probably you have ROW LEVEL SECURITY enabled. Could you please run:

SELECT  *
FROM    dba_policies
/
show/hide this revision's text 3 added 712 characters in body

CS.CS_INCIDENTS_ALL_B seems to be the SYNONYM too which points somewhere outside APPS.CS_INCIDENTS_B_SEC.

Could you please post the query plan for both queries?

This will show you the real underlying tables.

EXPLAIN PLAN FOR
SELECT  *
FROM    CS.CS_INCIDENTS_ALL_B
/
SELECT  *
FROM    TABLE(DBMS_XPLAN.display())
/
EXPLAIN PLAN FOR
SELECT  *
FROM    APPS.CS_INCIDENTS_B_SEC
/
SELECT  *
FROM    TABLE(DBMS_XPLAN.display())
/

Update:

The final table you are selecting from is apparently a view, there is a filtering condition in the plan.

Could you please run the following queries?

SELECT  *
FROM    dba_synonyms
START WITH
        owner = 'CS'
        AND synonym_name = 'CS_INCIDENTS_ALL_B'
CONNECT BY
        owner = PRIOR table_owner
        AND synonym_name = PRIOR table_name
/

SELECT  *
FROM    dba_synonyms
START WITH
        owner = 'APPS'
        AND synonym_name = 'CS_INCIDENTS_B_SEC'
CONNECT BY
        owner = PRIOR table_owner
        AND synonym_name = PRIOR table_name
/

This will show the full synonym chain.

show/hide this revision's text 2 added 401 characters in body
show/hide this revision's text 1