Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: New Dynamic Views - GV$ ???
These are parallel server views.
Taken from the reference manual.
GV$ Views
For almost every V$ view described in this chapter, Oracle has a
corresponding GV$(global V$) view. In a parallel server environment,
querying a GV$ view retrieves the V$ view information from all
qualified instances. In addition to the V$ information, each GV$ view
contains an extra column named INST_ID of datatype INTEGER. The INST_ID
column displays the instance number from which the associated V$ view
information was obtained. The INST_ID column can be used as a filter to
retrieve V$ information from a subset of available instances. For
example, the query:
SELECT * FROM GV$LOCK WHERE INST_ID = 2 OR INST_ID = 5
retrieves the information from the V$ views on instances 2 and 5.
In order to query the GV$ views, the value of the PARALLEL_MAX_SERVERS
parameter must be greater than zero on all instances mounting the
database. The sections that follow list the columns and public synonyms
for the dynamic performance views.
See Also: Oracle8i Parallel Server Concepts.
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Brian Wisniewski INET: brian_wisniewski_at_yahoo.com Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Thu Feb 01 2001 - 08:04:44 CST