Oracle synonyms selection - Stack Overflow most recent 30 from stackoverflow.com2009-11-09T05:12:48Zhttp://stackoverflow.com/feeds/question/271953http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/271953/oracle-synonyms-selection1Oracle synonyms selectionipohfly2008-11-07T12:44:06Z2008-11-10T13:44:31Z
<p>Hi,</p>
<p>Got into a situation where in a schema i have a table, say table ACTION , while i got a synonym called ACTION as well which refers to another table to another schema.</p>
<p>Now, when i run the query</p>
<p>select * from ACTION</p>
<p>it will select the records from the table, but not the synonym.</p>
<p>Anyway for me to select from the synonym AND the table both together?</p>
<p>Thanx</p>
http://stackoverflow.com/questions/271953/oracle-synonyms-selection/271997#2719974Answer by Kieveli for Oracle synonyms selectionKieveli2008-11-07T13:01:27Z2008-11-07T13:01:27Z<p>Well, your underlying ACTION table should be renamed, let's say do LOCAL_ACTION.</p>
<p>Let's pretend your ACTION synonym is on otheruser.LOCAL_ACTION table...</p>
<p>Then you can redefine the ACTION synonym to be:</p>
<pre><code>SELECT * from LOCAL_ACTION
UNION
SELECT * from otheruser.LOCAL_ACTION
</code></pre>
<p>Then in the end, select * from ACTION will give you a combined list of both tables.</p>
http://stackoverflow.com/questions/271953/oracle-synonyms-selection/272051#2720515Answer by Salamander2007 for Oracle synonyms selectionSalamander20072008-11-07T13:26:48Z2008-11-07T13:26:48Z<p>I don't think that your ACTION synonym resides in the same schema as your ACTION table, as that isn't allowed in Oracle. Most likely your ACTION synonym resides in other schema, perhaps it's a PUBLIC synonym. If that's the case you can use </p>
<pre><code>select * from ACTION
union
select * from public.ACTION
</code></pre>
http://stackoverflow.com/questions/271953/oracle-synonyms-selection/277877#2778771Answer by David Aldridge for Oracle synonyms selectionDavid Aldridge2008-11-10T13:44:31Z2008-11-10T13:44:31Z<p>Tables and private synonyms do indeed share the same name space, so that is a public synonym: <a href="http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/sql_elements008.htm#sthref723" rel="nofollow">http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/sql_elements008.htm#sthref723</a></p>
<p>Be aware that UNION is an implicit distinct on the result set. Waht you need is UNION ALL.</p>
<pre><code>select * from ACTION
union all
select * from public.ACTION
</code></pre>