Oracle synonyms selection - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T05:12:48Z http://stackoverflow.com/feeds/question/271953 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/271953/oracle-synonyms-selection 1 Oracle synonyms selection ipohfly 2008-11-07T12:44:06Z 2008-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#271997 4 Answer by Kieveli for Oracle synonyms selection Kieveli 2008-11-07T13:01:27Z 2008-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#272051 5 Answer by Salamander2007 for Oracle synonyms selection Salamander2007 2008-11-07T13:26:48Z 2008-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#277877 1 Answer by David Aldridge for Oracle synonyms selection David Aldridge 2008-11-10T13:44:31Z 2008-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>