Re: ORA-00942: table or view does not exist for v$session.

From: Eugene Pokopac <epokopac_at_gmail.com>
Date: Thu, 8 Jul 2010 06:41:45 -0700 (PDT)
Message-ID: <48f7d63b-aa42-4e7a-be02-90c190b8b2a8_at_b35g2000yqi.googlegroups.com>



Probably just a "privilege" issue. V$SESSION is usually a Public Synonym for the SYS.V_$SESSION table. Have your DBA grant an explicit SELECT privilege on the SYS.V_$SESSION table and see if that works.

ORA-00942 table or view does not exist

Cause: The table or view entered does not exist, a synonym that is not allowed here was used, or a view was referenced where a table is required. Existing user tables and views can be listed by querying the data dictionary. Certain privileges may be required to access the table. If an application returned this message, the table the application tried to access does not exist in the database, or the application does not have access to it.

Action: Check each of the following:

the spelling of the table or view name.
that a view is not specified where a table is required. that an existing table or view name exists. Contact the database administrator if the table needs to be created or if user or application privileges are required to access the table.

Also, if attempting to access a table or view in another schema, make certain the correct schema is referenced and that access to the object is granted. Received on Thu Jul 08 2010 - 08:41:45 CDT

Original text of this message