아카이브모드 활성/비활성
아카이브로 변경 archive log list ; shutdown immediate ; startup mount ; alter database archivelog ; alter database open ;…
Database Administrator Knowledge Sharing site
아카이브로 변경 archive log list ; shutdown immediate ; startup mount ; alter database archivelog ; alter database open ;…
cdrom mount //시디롬 마운트 mount -t iso9660 /dev/cdrom /mnt/cdrom //언마운트 umount mnt/cdrom disk mount 확인: fdisk -l 파일시스템 설정 mkfs.ext3…
테이블 이력 조회 select owner, table_name, to_char(last_analyzed,’YYYY-MM-DD HH24:MI:SS’) from dba_tables where owner=’SCOTT’ ; 통계정보 갱신 이력 조회 select…
E.3 Port Numbers and Protocols of Oracle Components The following table lists the port numbers and protocols used by components…
1. 스냅샷 설정 확인 select * from dba_hist_wr_control ; 2. 현재 스냅샷 조회 col startup_time for a30 col…
리스너 확인 및 리스너 정지 ps -ef |grep tns lsnrctl status [리스너 명] lsnrctl status LISTENER lsnrctl stop [리스너 명]…
리커버리 데스트 사이즈 확인 및 수정 oracle@solaris:/u01/app/oracle/fast_recovery_area/ORCL1/archivelog/2015_01_14$ ss SQL*Plus: Release 11.2.0.4.0 Production on Thu Jan 15 00:04:29 2015 Copyright (c)…
v$log, v$logfile 조회 select * from v$log ; select * from v$logfile ; 2개의 standby redo 생성 alter…
현재 사용률 조회 select df.tablespace_name “Tablespace”, round(df.TBS_byte /1048576,2) “Total(MB)”, round((df.TBS_byte – fs.Free_byte)/1048576,2) “Used(MB)”, round(fs.Free_byte /1048576,2) “Free(MB)”, round((fs.Free_byte/df.TBS_byte) *100,0) “Free(%)”, fs.pieces…
1. ZFS 소개 ■ ZFS 역사(History)ZFS was designed and implemented by a team at Sun led by Jeff Bonwick. It…