Hi,
Information present in the v$views are basically for the life of the instance.
Does these vies have an underlying table which are present in the data dictionary or on what tables are these views based and where are those tables present.
STATISTIC# NAME
CLASS VALUE
------------------------------------------------ ---------- ----------
0 logons cumulative 1 7
1 logons current 1 7
2 opened cursors cumulative 1 9
3 opened cursors current 1 1
4 user commits 1 0
5 user rollbacks 1 0
6 user calls 1 64
In this point (when started up only instance we may not have
data dictionary) for example when we going to install new db.
bat all v$tables exists!
-----------------------------------------------------------
AND SQL.BSQ didn't execute before.
-----------------------------------------------------------
But does it apply to all the v$ views? My understanding is some of them are available after startup nomount (from memory), some are available after mount (from memory and controlfile) and some are only available only after database is open (data dictionary)
Originally posted by Sonia Hi,
Information present in the v$views are basically for the life of the instance.
Does these vies have an underlying table which are present in the data dictionary or on what tables are these views based and where are those tables present.
regards
sonia
Hi sonia!
THe v$ views are dynamic performance viewsactually public synonyms of V_$ views which are based on X$ tables. To view the dynamic performance views you may query v$FIXED_TABLE.
Oracle server is responsible for populating and cleaning of these tables. Don't really know the process., May be it's SMON.
You cannot succeed if you fear to face challenges.
MAS
BE(CS) , OCP 8/8i.
Originally posted by SANJAY_G But does it apply to all the v$ views? My understanding is some of them are available after startup nomount (from memory), some are available after mount (from memory and controlfile) and some are only available only after database is open (data dictionary)
That's because fixed tables (X$ tables) on which fixed views are dependant, are populated at different stages of database startup. Sume are populeted in nomount stage, otehrs when you mount the database, and the rest when database is open. But AFAIK no fixed view is dependent on any data dictionary table.
Jurij Modic ASCII a stupid question, get a stupid ANSI
24 hours in a day .... 24 beer in a case .... coincidence?
Bookmarks