Dynamic performance views are based on virtual tables
that are built from memory structures inside the database server.
That is, they are not conventional tables that reside in a database.
This is why some of them can show you data before a database is mounted or open.
Dynamic performance views include information about:
•Sessions
•File states
•Progress of jobs and tasks
•Locks
•Backup status
•Memory usage and allocation
•System and session parameters
•SQL execution
•Statistics and metrics
-Usage Examples
SQL> select name from v$tempfile;
SQL> select name from v$tablespace;
SQL> select member from v$logfile;
SQL> select name from v$controlfile;
-oracle DBA 10g workshop I-
'용어,개념' 카테고리의 다른 글
동영상-Index Split (0) | 2010.09.05 |
---|---|
동영상-Index 크기 문제 (0) | 2010.09.05 |
Hidden Parameters (0) | 2010.09.02 |
Cursor 에 대하여 (0) | 2010.09.02 |
ORACLE_BASE와 ORACLE_HOME는 무엇인고~? (0) | 2010.09.01 |