IT/Oracle 실습2011. 4. 28. 01:06
SQL *PLUS 기동
sqlplus /nolog
SQL> connect / as sysdba

1. 데이터 베이스 구성 내용을 조회
SQL> startup
SQL> select name from v$datafile;
SQL> select * from v$controlfile;
SQL> select member from v$logfile;

2. Instance 구성 내용을 조회
SQL> select * from v$sga
SQL> show sga

// background 프로세스에 대한 정보를 보여준다.
SQL> select paddr, name, description from v$bgprocess where paddr > '00';

v$datafile, v$controlfile, v$logfile, v$sga는 아래의 링크를 참고해 주세요.
참조 내용 : http://markspeople.tistory.com/39

Posted by 예영교육 연구소