IT 썸네일형 리스트형 Glossary SID : Site IDentifierFLM : Free ManagementFET$ : Free Extent TableUET$ : Used Extent TableDMT : Dictionary Management TablespaceLMT : Locally Managed TablespaceASSM : Automatic Segment Space ManagementRMAN : Recovery Manager 더보기 Control File 다중화(Multiplexing)하기 1. spfile 일 경우 다중화 하기현재 운영중인 control file의 경로를 확인 한 후/home/oracle/disk1/control01.ctl,/home/oracle/disk2/control02.ctl,/home/oracle/disk3/control03.ctl로 다중화 SQL>select status from v$instance;SQL>show parameter spfile;SQL> select name from v$controlfile; - 현재 control File 조회NAME--------------------------------------------------------------------------------/app/oracle/oradata/testdb/control01.ctl.. 더보기 profile 설정 # .bash_profile # Get the aliases and functionsif [ -f ~/.bashrc ]; then . ~/.bashrcfi # User specific environment and startup programs PATH=$PATH:$HOME/bin export PATHexport EDITOR=viexport ORACLE_BASE=/app/oracleexport ORACLE_HOME=$ORACLE_BASE/product/11gexport ORACLE_SID=testdbexport LANG=ko_KR.UTF-8export ORACLE_TERM=xtermexport NLS_LANG=AMERICAN_AMERICA.KO16MSWIN949export ORA_NLS33=$ORACLE_.. 더보기 Oracle 기동 순서 및 기동/종료 방법 Startup -> Nomount(Parameter file) -> Mount(Control file) -> Open(Redo log file Data file) - NOMOUNT 단계까지만 시작 후 나머지 단계 진행 SQL> startup nomount; SQL> alter database mount; SQL> alter database open; - MOUNT 단계까지 시작 한 후 나머지 단계 진행 SQL> startup mount; SQL> alter database open; - 읽기전용인 상태로 Open SQL> startup mount; SQL> alter database open read only; - Restricted Mode(제한된 모드)로 open 하기 데이터 생성이나 수정 등 모두 .. 더보기 Parameter File 및 pfile 생성 항목 / 파일 Pfile(정적 파라미터) Sfile(동적 파라미터) 파일 경로 $ORACLE_HOME/dbs(두 파일 모두 공통) $ORACLE_HOME/dbs(두 파일 모두 공통) 파일 이름 initSID.ora SpfileSID.ora 내용 변경 관리자(사람) 서버 프로세스 파일 형태 Text (OS 편집기로 편집가능) Binary(편집 안됨) spfile, pfile 생성SQL>create pfile from spfile;SQL> create spfile from pfile;$rm -rf spfiletestdb.ora - spfile을 제거해야 pfile을 사용가능spfile을 사용하면 alter system set 명령으로 DB 재기동없이 적용 가능 SQL> alter system set db_c.. 더보기 Alert Log 파일 위치 10g - $ORACLE_BASE/admin/SID/bdump/alert_SID.log11g - $ORACLE_BASE/diag/rdbms/SID/SID/trace/alert_SID.log 더보기 scott 계정 활성화 SQL> alter user scott identified by tiger account unlock;SQL> conn scott/tigerSQL> show user 더보기 주요 SQL SQL>select status from v$instance ; - oracle 상태 확인SQL>alter system set shared_pool_size = 100M; - shared pool 크기 조정SQL>show parameter processes;SQL>show parameter undo;SQL> show parameter db_block_size; Redo Copy Latch 조회SQL> col name for a13SQL> select name,gets,misses,immediate_gets,wait_time 2 from v$latch_children 3 where name='redo copy'; NAME GETS MISSES IMMEDIATE_GETS WAIT_TIME-----------.. 더보기 rlwrap - SQLPlus 편리하게 사용하기 rlwrap을 사용하여 SQLPLUS 편리하게 사용하기 Installation From EPELConfigure the EPEL yum repository, as described here. In this case i was installing on Oracle Linux 6 (x86-64), so I downloaded the package displayed here. Don't worry that it is listed as a, i386 package. It just installs the yum repository. The following commands download and configure the EPEL repository.# wget http://www.mirrorservice.org/.. 더보기 무료 DNS 서버 http://www.dnszi.com/ https://kr.dnsever.com/ 더보기 이전 1 2 3 4 5 6 다음