오라클/Admin1

Static Data Dictionary View & Dynamic Performance View

빵순이^^ 2010. 7. 22. 01:09

 

Static Data Dictionary View

- 데이터베이스에 존재하는 오브젝트 및 기타 정보에 대한 내용을 조회할 수 있는 뷰
- 출처 : internal table (obj$, tab$, users$) - sql.bsg  →  user_*, all_*, dba_* - catalog.sql
- open 상태에서만 사용가능 (datafile에 포함되어 있는 테이블 이기 때문)
- data의 생명은 instance와 무관


Dynamic Performance View

- 메모리 상태 및 현재 세션에 대한 정보를 확인할 수 있는 뷰
- 출처 : parameter file, instance, control file  →  x$ table  →  v$
- mount 상태에서 사용가능
- data의 생명은 instance와 대부분 동일 (shutdown시 data는 초기화)
- 끊임없이 내용이 변경된다.