Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: Different results from stored Proc when run from different programs.

Re: Different results from stored Proc when run from different programs.

From: <JimStrehlow_at_data911.com>
Date: 24 May 2005 11:18:57 -0700
Message-ID: <1116958737.518502.87750@z14g2000cwz.googlegroups.com>


select OWNER, TABLE_NAME from SYS.ALL_TABLES where TABLE_NAME = 'X';

You may have the same table_name with different owners. Depending upon how someone connects to the database, they gain access to one or the other table.

See if there is an Oracle synonym set for your table:

SELECT OWNER, TABLE_OWNER, TABLE_NAME FROM SYS.ALL_SYNONYMS WHERE TABLE_NAME='X'; Jim Strehlow, Data911 Oracle DBA, Alameda, CA, USA Received on Tue May 24 2005 - 13:18:57 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US