* Steps to Configure a Cluster 0 . /etc/cmcluster/ 에서 작업 -> cd /etc/cmcluster/ 1 . cmclnodelist 생성 -> vi /etc/cmcluster/cmclnodelist Node_host_name or IP address ID(root) ㆍ cluster의 node끼리 equivalency(.hosts) 같이 member를 설정한다 ㆍ ftp, rcp를 통해서 모든 node 에 전송해주어야 된다 2 . Build cluster configuration file -> cmquerycl -v -C filename -n node1 -n node2 ... ㆍ -C filename : 아스키 파일을 생성한다 일반적으로 cmclconfig.asci..
Info Commands Info Command Options Comment cmviewcl View cluster information -n nodename View cluster information for specific node -p pachage View package information -l {pachage|cluster|node|group} View information about cluster restricted to a certain level of information -v Be more verbose cmquerycl Get information about e.g. lvm, file systems and lan config. Use this tool to create the clus..
조회 -SELECT i.KSPPINM , v.ksppstvl "current value" , v.ksppstdf "default value" from x$ksppi i join x$ksppcv v on i.indx = v.indx; -- 결과 KSPPINM current value default v ------------------------------ ------------------------------ --------- _swrf_test_dbfus FALSE TRUE _mwin_schedule TRUE TRUE _awr_sql_child_limit 200 TRUE sqltune_category DEFAULT TRUE _sqltune_category_parsed DEFAULT TRUE _ash_sa..
ALTER SYSTEM SET.. 또는 ALTER SESSION SET .. 와 같이 실행중 동적으로 바꿀 수 있는 기능이 있다. 하지만 어떤 파라미터는 이와 같이 동적으로 변경이 불가능하기도 하다. 또한 show parameter 으로 값을 조회하려면 SELECT ANY DICTIONARY 권한이 있어야 한다. 파라미터 종류와 구분 조회 -select name , type , value , isdefault , isses_modifiable , issys_modifiable from v$parameter - Column 설명 type - 값으로 들어올 수 있는 타입 isdefault - 기본값 사용 유무 isses_modifiable - Alter Session set ..가능 여부 issys_modi..
사용 목적 Large Pool 은 필수 메모리 영역은 아니지만 Shared Pool 의 부하를 감소시키는 등 몇가지 성능에 영향을 주기 때문에 지정해서 사용하는 편이 좋다. 1. Shared Server (= MTS : Multi Thread Server) Shared Server 를 사용하면 Server Process 는 UGA (User Global Area)를 Shared Pool에 위치 하고 사용한다. 2. Parallel Processing (병렬 프로세싱) 대용량의 데이터에 Access할 때 성능을 위해 병렬작업을 이용하게 된다. 하나의 SQL을 수행시에 동시에 여러개의 process가 동작하게 되는데 Thread으로 동작하는 프로세스간에 메시지를 이용하여 Thread 동기화를 이뤄낸다. 이 ..
Oracle 8i부터 Data Buffer Cache 를 3개의 용도로 나누어서 사용할 수 있다. 종류는 다음과 같이 조회 할 수 있다. 구분 -SQL> show parameter cache_size NAME TYPE VALUE ------------------------------------ ----------- ------------------------------ db_16k_cache_size big integer 16M db_2k_cache_size big integer 0 db_32k_cache_size big integer 0 db_4k_cache_size big integer 0 db_8k_cache_size big integer 0 db_cache_size big integer 0 db_..