Topic: Database Administration >> Related to dynamic View
|
Disclaimer: The purpose of all dbapool forums including OCP and Other Oracle Certification forums is to help each other with specific issues but not to share dump and copyrighted exam content, materials or intellectual property.
You may review the entire Oracle Certification Program Candidate Agreement online Here.
|
|
|
|
| Title: Related to dynamic View |
| Partha |
Posted: Jul 26, 2007 02:46:46 AM |
Total Post: 3
Joined: Jul, 2006
|
| What Dynamic View is accessed to find a Buffer's State?. |
|
|
Ratnaker |
| Posted: Jul 26, 2007 03:03:23 AM | |
|
Total Post: 138
Joined: Apr, 2007
|
SELECT (1 - (phys.value / (db.value + cons.value))) * 100
'DB Block Buffer Cache Hit Ratio'
FROM v$sysstat phys,
v$sysstat db,
v$sysstat cons
WHERE phys.name = 'physical reads'
AND db.name = 'db block gets'
AND cons.name = 'consistent gets';
|
|
|
|
|
Mohammed Taj |
| Posted: Jul 29, 2007 10:05:53 AM | |
|
Total Post: 709
Joined: Jul, 2007
|
Hi,
"Oracle contains a set of underlying views that are maintained by the database server and accessible to the database administrator user SYS. These views are called dynamic performance views because they are continuously updated while a database is open and in use, and their contents relate primarily to performance."
SQL>select name from v$fixed_table;
you can query all dynamic views through above query.
regards
Taj
http://dbataj.blogspot.com
|
|
|
|
|
| Time Zone: EDT |
Send this thread to your friend |
|
|
|
|
Forum Rules & Description
Who Can Read The Forum? Any registered user or guest
Who Can Post New Topics? Any registered user
Who Can Post Replies? Any registered user
|
| |
Get FREE Magazines
|
Top 10 Forum User
|
| Murtuja Khokhar | 816 |
| Mohammed Taj | 709 |
| Jayanta Sur | 479 |
| positive fanatic | 418 |
| Vigyan Kaushik | 386 |
| Gitesh Trivedi | 322 |
| Gopu Gopi | 242 |
| neeraj sharma | 240 |
| Ramesh Jois | 226 |
| Bishal Khetan | 205 |
|
|