vote up 4 vote down star

I have a very unusual situation that I am hoping someone will be able to shed some light onto. My understanding of an oracle synonym is that it is basically an alias to a table in another schema.

When I do a count from the synonym, it returns zero rows. When I do the same from the underlying table, it returns 12 thousand rows.

I cannot explain this discrepancy. Can anyone help?

select * from dba_synonyms
where synonym_name = 'CS_INCIDENTS_B_SEC';

OWNER  SYNONYM_NAME        TABLE_OWNER  TABLE_NAME          DB_LINK
------ ------------------- ------------ ------------------- -------
APPS   CS_INCIDENTS_B_SEC  CS           CS_INCIDENTS_ALL_B         



select count(*) from CS.CS_INCIDENTS_ALL_B;

COUNT(*)               
---------------------- 
12549                  

select count(*) from APPS.CS_INCIDENTS_B_SEC;

COUNT(*)               
---------------------- 
0

Explain plans:

Directly on the table...

EXPLAIN PLAN FOR
SELECT  *
FROM    CS.CS_INCIDENTS_ALL_B

PLAN_TABLE_OUTPUT
--------------------------------------------------------------------------
| Id  | Operation         | Name               | Rows | Bytes| Cost(%CPU)|
--------------------------------------------------------------------------
|   0 | SELECT STATEMENT  |                    | 6056 | 1549K|  122   (3)|
|   1 |  TABLE ACCESS FULL| CS_INCIDENTS_ALL_B | 6056 | 1549K|  122   (3)|
--------------------------------------------------------------------------

Through the synonym...

EXPLAIN PLAN FOR
SELECT  *
FROM    APPS.CS_INCIDENTS_B_SEC

PLAN_TABLE_OUTPUT
---------------------------------------------------------------------------
| Id  | Operation          | Name               | Rows | Bytes| Cost(%CPU)|
---------------------------------------------------------------------------
|   0 | SELECT STATEMENT   |                    |    1 |  262 |    0   (0)|
|*  1 |  FILTER            |                    |      |      |           |
|   2 |   TABLE ACCESS FULL| CS_INCIDENTS_ALL_B | 6056 | 1549K|  122   (3)|
---------------------------------------------------------------------------

1 - filter(NULL IS NOT NULL)

Synonym chain...

SQL> SELECT  *
  2  FROM    dba_synonyms
  3  START WITH
  4          owner = 'CS'
  5          AND synonym_name = 'CS_INCIDENTS_ALL_B'
  6  CONNECT BY
  7          owner = PRIOR table_owner
  8          AND synonym_name = PRIOR table_name
  9  /

no rows selected

SQL> SELECT  *
  2  FROM    dba_synonyms
  3  START WITH
  4          owner = 'APPS'
  5          AND synonym_name = 'CS_INCIDENTS_B_SEC'
  6  CONNECT BY
  7          owner = PRIOR table_owner
  8          AND synonym_name = PRIOR table_name
  9  /

Checking Policies on database...

SQL> SELECT *
  2  FROM dba_policies
  3  WHERE OBJECT_NAME = 'CS_INCIDENTS_B_SEC'
  4  /

OBJECT_OWNER  OBJECT_NAME         POLICY_GROUP  POLICY_NAME          
------------- ------------------- ------------- -------------------- 
APPS          CS_INCIDENTS_B_SEC  SYS_DEFAULT   CS_SR_SEC_SR_ACCESS  


PF_OWNER  PACKAGE            FUNCTION       SEL INS UPD DEL IDX CHK 
--------- ------------------ -------------- --- --- --- --- --- --- 
APPS      FND_GENERIC_POLICY GET_PREDICATE  YES NO  NO  NO  NO  NO  


ENABLE STATIC_POLICY POLICY_TYPE  LONG_PREDICATE
------ ------------- ------------ --------------
YES    NO            DYNAMIC      YES
flag

Wow... It's very weird. AFAIK, the should not return different rows or row counts... – Pablo Santa Cruz Apr 23 at 11:02
Looking forward to see an answer to this though... :-) – Pablo Santa Cruz Apr 23 at 11:03
1  
Could you please post the query plan for both queries? – Quassnoi Apr 23 at 11:39
1  
Seems you have ROW LEVEL SECURITY enabled on this table. Could you please run the query from my post? – Quassnoi Apr 23 at 12:29
1  
+1, interesting issue. For those who find the question fascinating, why haven't you voted it up? – DCookie Apr 23 at 15:16
show 4 more comments

3 Answers

vote up 4 vote down check

Update:

You have ROW LEVEL SECURITY enabled.

The user function FND_GENERIC_POLICY.GET_PREDICATE gets called each time you access the table and limits access to some rows.

It returns different results depending on how do you access the table: directly or through the SYNONYM.

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

link|flag
I know that there is a synonym called APPS.CS_INCIDENTS_ALL_B, but it's in the apps schema, and also points to CS.CS_INCIDENTS_ALL_B. – Jonathan Apr 23 at 11:15
vote up 0 vote down

Check to make sure there are no other objects (view or table) owned by APPS with the same name as your synonym.

select object_type,object_name
from   dba_objects
where  object_name='CS_INCIDENTS_B_SEC'
and    owner='APPS'
and    object_type!='SYNONYM'
link|flag
Nope. Nothing returned from that query. – Jonathan Apr 23 at 13:46
vote up 0 vote down

Are you 100% sure that CS.CS_INCIDENTS_ALL_B is, in fact, a table and not a view? If it is a view, perhaps it is doing something rather unusual in its WHERE clause.

select object_type from dba_objects where owner = 'CS' and object_name = 'CS_INCIDENTS_ALL_B'
link|flag
Absolutely positive. That query returns "TABLE". – Jonathan Apr 23 at 11:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.