Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Error: -2147217865 Table or View does not exist in Oracle 9i
Nizam wrote:
> Hi team,
>
> We have two schemas SLT5 and SLT6 in oracle 9i database. In both the
> schema, we have two users TESTA and TESTB. Our application is logging
> in using TESTA credentials in both the schemas and trying to access the
> tables owned by TESTB.
>
> The problem is that, when we run the application connecting to SLT5
> schema. It is working fine. When tried connecting to SLT6 schema. It
> gives an error "Table or View does not exist" in a select query.
>
> We compare all the privileges in SLT5 and SLT6 schemas for both the
> users (specifically TESTA user). All found same. But we did not get any
> resolution. Even though, TESTA user has the SELECT privilege on those
> tables of TESTB.
>
> Could any body help me out.
>
> Thanks,
> Nizam.
Not without seeing your code.
The following statement you make are not possible as you have stated it.
You can not have as you state it:
"In both the schema, we have two users TESTA and TESTB"
What are the schema names?
Who owns the application's objects?
Are there synonyms or are you specifying schema_name dot object_name?
It might help to post the following:
conn testa/<pwd>
select table_name from user_tables;
conn testb/<pwd>
select table_name from user_tables;
conn testa/<pwd>
you query
conn testb/<pwd>
your query
-- Daniel Morgan Puget Sound Oracle Users GroupReceived on Thu Sep 21 2006 - 20:27:36 CDT
![]() |
![]() |