Why would an Oracle synonym return a different number of rows to the underlying table? - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T14:14:32Zhttp://stackoverflow.com/feeds/question/781224http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/781224/why-would-an-oracle-synonym-return-a-different-number-of-rows-to-the-underlying-t4Why would an Oracle synonym return a different number of rows to the underlying table?Jonathan2009-04-23T10:58:45Z2009-04-23T15:05:21Z
<p>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.</p>
<p>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.</p>
<p>I cannot explain this discrepancy. Can anyone help?</p>
<pre><code>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
</code></pre>
<p>Explain plans:</p>
<p>Directly on the table...</p>
<pre><code>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)|
--------------------------------------------------------------------------
</code></pre>
<p>Through the synonym...</p>
<pre><code>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)
</code></pre>
<p>Synonym chain...</p>
<pre><code>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 /
</code></pre>
<p>Checking Policies on database...</p>
<pre><code>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
</code></pre>
http://stackoverflow.com/questions/781224/why-would-an-oracle-synonym-return-a-different-number-of-rows-to-the-underlying-t/781261#7812610Answer by Adam Paynter for Why would an Oracle synonym return a different number of rows to the underlying table?Adam Paynter2009-04-23T11:10:33Z2009-04-23T11:10:33Z<p>Are you 100% sure that <code>CS.CS_INCIDENTS_ALL_B</code> 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.</p>
<pre><code>select object_type from dba_objects where owner = 'CS' and object_name = 'CS_INCIDENTS_ALL_B'
</code></pre>
http://stackoverflow.com/questions/781224/why-would-an-oracle-synonym-return-a-different-number-of-rows-to-the-underlying-t/781263#7812634Answer by Quassnoi for Why would an Oracle synonym return a different number of rows to the underlying table?Quassnoi2009-04-23T11:11:32Z2009-04-23T15:05:21Z<p><strong>Update:</strong></p>
<p>You have <a href="http://download.oracle.com/docs/cd/B19306%5F01/network.102/b14266/apdvcntx.htm#i1007410" rel="nofollow"><code>ROW LEVEL SECURITY</code></a> enabled.</p>
<p>The user function <code>FND_GENERIC_POLICY.GET_PREDICATE</code> gets called each time you access the table and limits access to some rows.</p>
<p>It returns different results depending on how do you access the table: directly or through the <code>SYNONYM</code>.</p>
<p>You'll need to look into the function and see what's going on (or post the function text here).</p>
http://stackoverflow.com/questions/781224/why-would-an-oracle-synonym-return-a-different-number-of-rows-to-the-underlying-t/781509#7815090Answer by IK for Why would an Oracle synonym return a different number of rows to the underlying table?IK2009-04-23T12:40:28Z2009-04-23T12:40:28Z<p>Check to make sure there are no other objects (view or table) owned by APPS with the same name as your synonym.</p>
<pre><code>select object_type,object_name
from dba_objects
where object_name='CS_INCIDENTS_B_SEC'
and owner='APPS'
and object_type!='SYNONYM'
</code></pre>