Advanced Oracle Document 11gR2 향상된 ASM(ADVM 과 ACFS) (Oracle 11g R ) Author: Hyun-Ho, Jung Site:

Size: px
Start display at page:

Download "Advanced Oracle Document 11gR2 향상된 ASM(ADVM 과 ACFS) (Oracle 11g R ) Author: Hyun-Ho, Jung Site:"

Transcription

1 11gR2 향상된 ASM(ADVM 과 ACFS) (Oracle 11g R ) Author: Hyun-Ho, Jung Site: Creation Date:

2 DBMS Install Document Server Information Items Description Test Date 2011 / 06 / 01 CPU Intel(R) Xeon(R) CPU 2.40GHz X 8 Main Memory 1GB O/S version RHEL 5.5 Host Name ATHENA ORACLE_SID ATHENA Oracle version DBMS Install Document 1 of 16

3 ADVM 11gR2 ASM 에서새롭게나온기능이며해당기능하나로벤더혹은 3 rd party 볼륨제품군을사용하지않아도 될만큼훌륭한기능이다. ADVM 과 ACFS 를사용하기이전에 ADVM 이라는의미를이해해야한다. ADVM 은 ASM Dynamic Volume Manager 의약자이며용어대로 ASM 의볼륨을관리하는기능이다. 위의그림이 ADVM 과 ACFS 를설명해주는가장손쉬운그림이다. ASM DISK GROUP 위에 ADVM 이존재하며 ADVM 을통해 ASM Volume 생성및 ACFS 기능을이용할수있다. ADVM 은 linux, aix, hp-ux 에서사용중인볼륨서비스인 LVM 과유사하다고볼수있다. LVM 은여러개의 Disk 를 Volume Group 으로만든후 logical volume 을생성한후 Rawdevice 나 mount 하여 filesystem 영역에사용하게되는데이와유사하다고할수있다. ASM 의경우여러개의 Disk 를하나의 ASM Disk Group 으로생성하여사용하게된다. 10g,11gR1 까지는이렇게생성된 ASM Disk Group 내에 datafile 을위치시켜사용하였다. ADVM 2 of 16

4 11gR2 는여기서좀더진보하여 LVM 과유사하게 ASM Disk Group 에서 volume 을생성할수있다. 해당 Volume 은 rawdevice 로사용가능하며, mount 하여 OS 의 filesystem 영역으로사용가능하며, ADVM 에서제공하는 ACFS 를이용하여 Cluster file system 을사용할수있게된다. 볼륨은오라클데이터베이스의데이터파일이아닌 OS 의파일시스템의볼륨으로표현된다. ADVM 과관련디바이스드라이버는동적볼륨과 ASM 클러스터파일시스템간에인터페이스를제공한다. ASM 동적볼륨에는 NTFS 와같은다른파일시스템으로도운영될수있다. ASM 의장점중에하나인 ASM Disk GROUP 내에존재하는 Disk 에아주균등하게 Striping 되어 ASM AU 가분배되어 어느 Storage 기능보다 I/O 성능을보장받을수있다는것은익히알려진내용이며, ACFS 를사용하게되면 Cluster file system 의편의성과 ASM 의고성능 I/O 성능을사용할수있는기술이라고할수있다. ADVM 3 of 16

5 ADVM TEST ASM Volume 1. sysasm => sysdba 11gR2 에서변경된것이 ASM 인스턴스접속관리자권한이 sysdba 에서 sysasm 권한으로변경되었다는것이다. asm 인스턴스에접속해서히든파라미터를조회하면 11gR1 과 R2 가다른것을 확인할수있다. COL PARAM FORMAT A60 HEADING "Parameter Name" WRAP COL DESCRIPTION FORMAT A64 HEADING "Parameter Description" WRAP COL DFLT FORMAT A7 HEADING "Default Values" COL ISSES_MODIFIABLE FORMAT A10 HEADING "IsSession Modifiable" COL ISSYS_MODIFIABLE FORMAT A10 HEADING "IsSystem Modifiable" SELECT RPAD(I.KSPPINM, 35) ' = ' V.KSPPSTVL AS PARAM, I.KSPPDESC DESCRIPTION, DECODE(V.KSPPSTDF,'FALSE','F','TRUE','T') AS DFLT, P.ISSES_MODIFIABLE, P.ISSYS_MODIFIABLE FROM X$KSPPI I, X$KSPPCV V, V$PARAMETER P WHERE V.INDX = I.INDX AND V.INST_ID = I.INST_ID AND I.KSPPINM = P.NAME(+) AND I.KSPPINM ='_asm_admin_with_sysdba' ORDER BY I.KSPPINM; 위쿼리의결과에서보면 11gR1 Name _asm_admin_with_sysdba = TRUE 11gR2 Name _asm_admin_with_sysdba = FALSE 해당파라미터의 Description 에는아래와같이 ASM 의관리자권한을 sysdba 인지 여부를결정하는것을알수있다. Does the sysdba role have administrative privileges on ASM? ADVM TEST 4 of 16

6 11gR1 까지는 true 로되어있으며 export ORACLE_SID=+ASM 지정후 sqlplus " /as sysdba" 로 ASM 인스턴스내로접근할수있었지만 11gR2 부터는 grid 유저로 sqlplus " /as sysasm" 으로접속해야한다. 그렇기때문에사용의편의성을위해 sysdba 를사용하기위해 11gR2 에서파라미터수정을하겠다. SQL> alter system set "_asm_admin_with_sysdba"=true scope=spfile; db 종료 => asm 재시작 => db 구동순으로작업하면된다. 필수사항은아니며, 11gR2 부터는 sysasm 를사용해야한다는것이변경된점이다. 2. Volume Creation ASM 인스턴스를접속하여볼륨을생성한다. 아래쿼리로조회해보면사용중인용량과여유용량을알수있다. set lines 400 col name for a30 select name,state,type,total_mb,free_mb from v$asm_diskgroup; TOTAL_MB FREE_MB 약 26000MB 가여유공간으로조회되고있다 MB 의볼륨을할당하겠다. 명령어는아래와같다 alter diskgroup DATA add volume arch size 10000m; DATA 는 ASM DISK GROUP 이름이고 arch 는 volume 명이다. 생성후 OS 에서 /dev/asm 을조회해보면 OS 디바이스가생성된것을확인할수있다. ls -l /dev/asm/ total 0 brwxrwx--- 1 root dba 252, Jun 1 23:24 arch-443 ADVM TEST 5 of 16

7 arch-443 으로디바이스가생성되었고 -443 은디스크그룹에대한고유번호이다. 이번호는시스템에의해자동으로할당된다. 쿼리로조회해보면 set lines 500 col usage for a20 col volume_name for a20 col mountpath for a30 col volume_device for a30 col mountpath for a30 select volume_name,size_mb,volume_number,state,usage,volume_device,mountpath from v$asm_volume; 아래와같은내용이조회할수있다. 3. Volume Resize 10000MB 로생성된 arch 볼륨을 resize 시키려면아래와같다. Increase SQL> alter diskgroup DATA resize volume arch size 10005m; Reduce SQL> alter diskgroup DATA resize volume arch size 9500m; 4. Volume Delete 생성된볼륨을삭제하기위해서아래와같다. alter diskgroup DATA drop volume arch; ADVM TEST 6 of 16

8 5. Volume Status Change 볼륨활성화 SQL> alter diskgroup DATA enable volume arch; => 볼륨생성후 default 는바로 enable 상태임으로활성화할필요는없다. 볼륨비활성화 SQL> alter diskgroup DATA disable volume arch; RAWDEVICE 1. RAWDEVICE test 라는볼륨을하나생성하여 rawdevice 로사용가능한지를테스트해본다. SQL> alter diskgroup DATA add volume test size 10m; root 유저로 /dev/asm 으로이동한뒤소유권을변경한다. # chown oracle:dba test-443 oracle 유저로 Database 로접속하여테이블스페이스를생성한다. SQL> create tablespace test datafile '/dev/asm/test-443' size 8m; 조회해보면정상적으로 Tablespace 가생성되었음을확인할수있다 TABLESPACE_NAME FILE_NAME SYSTEM +DATA/athena/datafile/system01.dbf SYSAUX +DATA/athena/datafile/sysaux01.dbf UNDOTBS1 +DATA/athena/datafile/undotbs01.dbf USERS +DATA/athena/datafile/users01.dbf TEST /dev/asm/test-443 ADVM TEST 7 of 16

9 테이블생성하고데이터를 insert 하고조회해보면 ASM volume 으로 Rawdevice 로사용가능하다는것을확인할수있다. Filesystem 1. Filesystem 위에서설명했듯이 ASM 볼륨으로 OS 일반파일시스템으로도사용가능하다. 백업을위한볼륨을생성하고 mount 를해서사용하겠다. SQL> alter diskgroup DATA add volume backup size 10000m; root 유저로 mkfs 후 mount 를실행한다. mkfs -t ext3 /dev/asm/backup-443 mount /dev/asm/backup-443 /backup ADVM TEST 8 of 16

10 trace]# df -h Filesystem Size Used Avail Use% Mounted on /dev/mapper/os_vol-root_vol 39G 17G 21G 44% / /dev/hda1 289M 17M 257M 7% /boot tmpfs 2.0G 567M 1.5G 28% /dev/shm /dev/asm/backup G 151M 9.2G 2% /backup df h 로보면정상적으로 /backup 에 mount 된것을확인할수있다. rman 으로백업을수행해서 /backup 파일시스템을정상사용가능한지확인하겠다. rman> backup incremental level 0 database format '/backup/df_%d_%s_%p.bus' [oracle@athena:/backup]$ ls -l total rw-r oracle dba Jun 2 00:19 df_athena_2_1.bus -rw-r oracle dba Jun 2 00:23 df_athena_3_1.bus -rw-r oracle dba Jun 2 00:23 df_athena_4_1.bus /backup 위치에정상적으로백업되는것을확인할수있으며, 해당파일시스템을정상적으로사용가능하다는것을확인할수있다 ASM 볼륨을이용하여 mount 한내역을다음부팅에서도 mount 되게하기위해서는 OS 의 fstab 등에기록하지않고 acfsutil 이라는새로운 utility 를이용한다. registry 라는옵션을사용하며커맨드는아래와같다. acfsutil registry -a /dev/asm/backup-443 /backup 등록해놓으면 grid 의 resource 기동순서는아래와같이된다. ASM => DISKGROUP => Mount => Database start ADVM TEST 9 of 16

11 ACFS 1. ACFS ACFS 는강인성, 일반용도, 익스텐트기반, 저널링파일시스템을제공하여 ASM 을확장한다. ACFS 는오라클이진파일 ( 바이너리 ), 리포트파일, 추적파일 (Trace), 경보로그 (alert log), 그외애플리케이션데이터파일들을지원한다. ACFS 가추가됨으로서 ASM 은오라클데이터베이스와비 - 데이터베이스파일들을모두지원하는완전한저장장소관리솔루션이된다. ACFS 는소용량파일에서대용량 ( 엑사바이트 ) 파일까지확장되며, 클러스터내의수많은노드들을지원한다. ACFS 는고성능을제공하고, 파일시스템의무결성및신속한복구를위한로그기반메타데이터트랜잭션엔진을사용하기위한익스텐트기반파일시스템이다. ACFS 디스크구조는엔디언 (edian) 중립메타데이터를지원한다. ACFS 파일시스템은 NFS 및 CIFS 와같은산업표준프로토콜을이용하여원격클라이언트에게제공될수도있다. ACFS 는단일노드뿐만아니라, RAC 와같은그리드컴퓨팅환경에서모든파일타입관리를단순화하며, 써드파티 (Third Party) 클러스터파일시스템의도입및구입의필요성을감소시킨다. ACFS 는데이터베이스를정지하지않고동적파일시스템의확장및축소를지원한다. ACFS 는하드웨어 RAID 기능에추가하여 ASM 미러링및스트라이핑기능을사용할수있도록함으로서고가용성을제공한다. 2. mkfs t acfs arch 이름으로 9000MB 용량으로생성한다. SQL> alter diskgroup data add volume arch size 9000m; filesystem 사용하듯이 mkfs 작업을실행한다. ADVM TEST 10 of 16

12 # mkfs -t acfs /dev/asm/arch-443 mkfs.acfs: version = mkfs.acfs: on-disk version = 39.0 mkfs.acfs: volume = /dev/asm/arch-443 mkfs.acfs: volume size = mkfs.acfs: Format complete. mount 시에도 t(type) 을지정해준다. # mount -t acfs /dev/asm/arch-443 /arch df h 로조회해보면아래와같이 mount 된것을확인할수있다. /dev/asm/arch G 55M 9.0G 1% /arch acfsutil 의 info fs 옵션으로확인해보며아래와같다 # acfsutil info fs /arch ACFS Version: flags: MountPoint,Available mount time: Thu Jun 2 00:44: volumes: 1 total size: total free: primary volume: /dev/asm/arch-443 label: flags: Primary,Available,ADVM on-disk version: 39.0 allocation unit: 4096 major, minor: 252, size: free: ADVM diskgroup DATA ADVM resize increment: ADVM redundancy: unprotected ADVM stripe columns: 4 ADVM stripe width: number of snapshots: 0 snapshot space usage: 0 ASM 인스턴스에서조회하면 USAGE 에는 ACFS 로 MOUNTPATH /arch 로볼륨정보및 ACFS 에대한조회가가능하다. ADVM TEST 11 of 16

13 위에서언급했듯이 mount 정보를 acfsutil 을이용하여 mount 정보를등록한다. # acfsutil registry -a /dev/asm/arch-443 /arch acfsutil registry: mount point /arch successfully added to Oracle Registry 3. ACFS Resize 위에서벤더및 3 rd party 볼륨제품군을사용하지않아도될만큼고가용성을 느낄수있는부분이다. HP-UX 기준으로 LVM Version1 을사용하기때문에 online 중에볼륨추가 및 resize 가되지않는다고한다. Cluster 일경우한쪽노드의 LVM 의변경사항을 export 한후 import 해줘야하는 번거러움도존재한다. Linux 기준으로 LVM 사용시 Volume resize 후 Filesystem 에서따로 resize2fs 작업이동반되지만 ACFS 는명령어한줄로아주빠르게 Online Resize 가가능하다. 물론파일시스템 umount 하지않아도된다. ASM DISK GROUP 의여유공간이있다면해당공간만큼증가시킬수있다 ASM 의장점중한가지는 ASM DISK GROUP 에신규 DISK 를추가시 Online 추가및 Rebalance 기능이다. 정리하면 ASM 을사용하면서용량부족에대한부분 Downtime 없이 가능하다는것이다. ASM DISK GROUP 에서새로운 LUN / DISK 를 Online 으로추가하여 DISK GROUP 의용량을증가시킨후 ASM Volume 증가순서로작업하게되면 Downtime 없는고가용성용량추가가가능하다. 위에서 asm volume 의 resize 는 ASM 인스턴스내에서아래커맨드형태로 진행하였다. SQL> alter diskgroup DATA resize volume arch 10000m; ADVM TEST 12 of 16

14 하지만볼륨이 ACFS 로적용되었다면 acfsutil 로 resize 를진행한다. acfsutil 로 resize 를하게되면 volume 도 resize 되면서 Filesystem 도 resize 가적용된다. 현재 9000MB 로되어있는 arch 볼륨을 15000MB 으로늘려보겠다. root 로작업하며, 커맨드는아래와같고 linux 의 time 명령어로시간을 측정해보았다. # time acfsutil size 15000m /arch acfsutil size: new file system size: (15104MB) real user sys 0m0.060s 0m0.009s 0m0.014s 9000MB 에서 15000MB 로변경되었으며 6000MB 로크지않은용량이지만 1 초미만의빠른처리를보여주고있다. df h 로확인해보면 filesystem 이 15000MB 로증가된것을확인할수있다 /dev/asm/arch G 67M 15G 1% /arch ASM 인스턴스내에서 ASM Volume 을조회하면아래와같이 ARCH volume 사이즈도같이늘어난것을확인할수있다. ADVM TEST 13 of 16

15 Conclusion 1. acfstuil 리눅스 / 유닉스및윈도우에서지원되지않는새로운 ACFS 명령어는다음과같다. acfsutil info fs acfsutil snapshot - Display ACFS file and file system features and information - create and display ACFS snapshots acfsutil registry - Registry an ACFS file system with the ACFS mount registry 마운트포인트를등록하는옵션으로써다음부팅때 clusterware 가올라오면마운트가된다. RAC 의경우한쪽노드에서실행하면된다. acfsutil registry -a /dev/asm/backup-443 /backup - mount 정보등록 acfsutil registry -d /backup - mount 정보삭제 acfsutil rmfs acfsutil size - Remove unmounted ACFS file system - resize an ACFS file system # acfsutil size 20G /backup/arch/ acfsutil 명령어를실행시키면더많은옵션에사용에대한정보를볼수있다 2. only MS-Windows Command 아래의명령어가윈도우파일관리 API 가 ACFS 파일시스템에통합되었으며다음명령들이관리명령에추가되었으며, 윈도우 OS 에서만가능하다. - acfschkdsk - acfsformat - acfsmountvol - acfsdiskmount - ACFS 파일시스템생성 acfsformat [/vf] [/b blksz] [/n name] device [blocks] ADVM TEST 14 of 16

16 - ACFS 파일시스템마운트 acfsmountvol [/all] [/v] - ACFS 파일시스템언마운트 acfsdismount [/v] [/p] [/P] path - ACFS 파일시스템체크및수리 acfschkdsk [/a] [/v] [/n] [/f] [info] device 3. Overall rating 모사이트에서 solaris 에서 Veritas Volume manager 를사용하는것을본적이있다. LINUX/UNIX 중유일하게 solaris 만 LVM 이존재하지않고 SVM 을이용하여볼륨을관리하는데해당담당자는 SVM 이불편하여 Veritas 제품을사용한다고말한적이있었다. 위에서테스트해봤듯이 ASM 볼륨은어느볼륨시스템보다쉽고간편하게 사용할수있는장점이있어서 OS 볼륨관리를위해서도충분히사용해볼 만하다라고생각되며 grid infrastructure + ASM 이생성되어있다면바로 볼륨서비스및 ACFS 를사용가능하기에가격면에서도 3 rd Party 보다저렴할듯도하다. Test 해본결과상당히좋은기능임을알수있으며, 현재테스트환경에서는 datafile 이 ASM 영역내에존재하지만 db 생성전 ASM 볼륨 +ACFS 를준비 해놓는다면 cluster file system 영역에바로 DB 를생성할수있다. 이렇게구성이된다면 ASM 을사용하지만 ASM 내에존재하는것은 OCR / VOTE 만이 ASM 내에존재하게되므로 11gR2 RAC 에서도 datafile 에대한관리가쉬워진다고볼수있다. ADVM TEST 15 of 16

Simplify your Job Automatic Storage Management DB TSC

Simplify your Job Automatic Storage Management DB TSC Simplify your Job Automatic Storage Management DB TSC 1. DBA Challenges 2. ASM Disk group 3. Mirroring/Striping/Rebalancing 4. Traditional vs. ASM 5. ASM administration 6. ASM Summary Capacity in Terabytes

More information

Tablespace On-Offline 테이블스페이스 온라인/오프라인

Tablespace On-Offline 테이블스페이스 온라인/오프라인 2018/11/10 12:06 1/2 Tablespace On-Offline 테이블스페이스온라인 / 오프라인 목차 Tablespace On-Offline 테이블스페이스온라인 / 오프라인... 1 일반테이블스페이스 (TABLESPACE)... 1 일반테이블스페이스생성하기... 1 테이블스페이스조회하기... 1 테이블스페이스에데이터파일 (DATA FILE) 추가

More information

Document Server Information Items Description Test Date 2011 / 05 / 31 CPU Intel(R) Xeon(R) CPU 2.40GHz X 8 Main Memory 1GB O/S version OEL 5.

Document Server Information Items Description Test Date 2011 / 05 / 31 CPU Intel(R) Xeon(R) CPU 2.40GHz X 8 Main Memory 1GB O/S version OEL 5. 11g 에서향상된 ASMCMD-CP 기능 (Oracle 11g R1 11.1.0.7) Author: Hyun-Ho, Jung Job: Oracle DBA Site: http://www.commit.co.kr Email: admin@commit.co.kr cleanto@naver.com Creation Date: 2011-05-31 Document Server

More information

Oracle Database 10g: Self-Managing Database DB TSC

Oracle Database 10g: Self-Managing Database DB TSC Oracle Database 10g: Self-Managing Database DB TSC Agenda Overview System Resource Application & SQL Storage Space Backup & Recovery ½ Cost ? 6% 12 % 6% 6% 55% : IOUG 2001 DBA Survey ? 6% & 12 % 6% 6%

More information

오라클 데이터베이스 10g 핵심 요약 노트

오라클 데이터베이스 10g 핵심 요약 노트 1 10g 10g SYSAUX 10g 22 Oracle Database 10g, 10g. 10g. (Grid), 10g.. 10g SYSAUX (ASM, Automatic Storage Management) 10g 10g. g. (DBA).,., 1).,..? 10g,.. (Larry Ellison).. (Leverage Components), (ASM) (

More information

Advanced Product Service

Advanced Product Service Advanced Oracle Document CONVERT to ASM and Non-ASM Author: Hyun-Ho, Jung Site: http://www.commit.co.kr Email: admin@commit.co.kr cleanto@naver.com Creation Date: 2011-12 - 13 CONVERT to ASM and Non-ASM

More information

Microsoft PowerPoint - Linux_10gRAC_3Node

Microsoft PowerPoint - Linux_10gRAC_3Node Linux 환경에서 3 Node 10g RAC 구성및 Data 이관하기 일시 : 2006. 08. 10 Contents I. RAC 구성환경및전체순서 II. Volume 및 Server 환경 Setup III. CRS 및 DB S/W 설치 IV. CRS 및 DB S/W Patchset V. File-System DBF raw-device 이관 VI. Sinlge

More information

ORANGE FOR ORACLE V4.0 INSTALLATION GUIDE (Online Upgrade) ORANGE CONFIGURATION ADMIN O

ORANGE FOR ORACLE V4.0 INSTALLATION GUIDE (Online Upgrade) ORANGE CONFIGURATION ADMIN O Orange for ORACLE V4.0 Installation Guide ORANGE FOR ORACLE V4.0 INSTALLATION GUIDE...1 1....2 1.1...2 1.2...2 1.2.1...2 1.2.2 (Online Upgrade)...11 1.3 ORANGE CONFIGURATION ADMIN...12 1.3.1 Orange Configuration

More information

I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r

I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r -------------------------------------------------------------------- -- 1. : ts_cre_bonsa.sql -- 2. :

More information

MySQL-Ch10

MySQL-Ch10 10 Chapter.,,.,, MySQL. MySQL mysqld MySQL.,. MySQL. MySQL....,.,..,,.,. UNIX, MySQL. mysqladm mysqlgrp. MySQL 608 MySQL(2/e) Chapter 10 MySQL. 10.1 (,, ). UNIX MySQL, /usr/local/mysql/var, /usr/local/mysql/data,

More information

PowerPoint Presentation

PowerPoint Presentation Data Protection Rapid Recovery x86 DR Agent based Backup - Physical Machine - Virtual Machine - Cluster Agentless Backup - VMware ESXi Deploy Agents - Windows - AD, ESXi Restore Machine - Live Recovery

More information

Contents Data Mart 1. 개요 실습방향 테스트위한사전설정 본격실습시작 ) 데이터파일 dd 명령어로 백업수행및유실시키기 ) 장애복구수행 결론...7 페이지 2 / 7

Contents Data Mart 1. 개요 실습방향 테스트위한사전설정 본격실습시작 ) 데이터파일 dd 명령어로 백업수행및유실시키기 ) 장애복구수행 결론...7 페이지 2 / 7 ( 참 ) 본상단부머리말에있는 Data Mart 는본문서작성자의블로그이름입니다 dd 명령어를 이용한백업수행 최소개념이해 본문서의 pdf 문서는다음 URL 참조 http://mindata.tistory.com/55 Version 변경일자 ( 작성일자 ) 변경자 ( 작성자 ) 주요내용 1 2013.4.3 김민기 최초작성 2 3 페이지 1 / 7 Contents

More information

목차 BUG offline replicator 에서유효하지않은로그를읽을경우비정상종료할수있다... 3 BUG 각 partition 이서로다른 tablespace 를가지고, column type 이 CLOB 이며, 해당 table 을 truncate

목차 BUG offline replicator 에서유효하지않은로그를읽을경우비정상종료할수있다... 3 BUG 각 partition 이서로다른 tablespace 를가지고, column type 이 CLOB 이며, 해당 table 을 truncate ALTIBASE HDB 6.1.1.5.6 Patch Notes 목차 BUG-39240 offline replicator 에서유효하지않은로그를읽을경우비정상종료할수있다... 3 BUG-41443 각 partition 이서로다른 tablespace 를가지고, column type 이 CLOB 이며, 해당 table 을 truncate 한뒤, hash partition

More information

Microsoft Word - LVM으로리눅스설치및운용.doc

Microsoft Word - LVM으로리눅스설치및운용.doc LVM 으로리눅스설치및운용 2009 년 12 월 13 일 / 2011 년 2 월 26 일수정됨 http://www.commit.co.kr 정현호 admin@commit.co.kr LVM 에대해서먼저간략하게애기하자면 Logical Volume Manager 의약자로서, 저장장치들을좀더효율적이고유연하게관리할수있는커널의부분과프로그램을말한다. 처음에는 IBM에서개발되었는데,

More information

The Self-Managing Database : Automatic Health Monitoring and Alerting

The Self-Managing Database : Automatic Health Monitoring and Alerting The Self-Managing Database : Automatic Health Monitoring and Alerting Agenda Oracle 10g Enterpirse Manager Oracle 10g 3 rd Party PL/SQL API Summary (Self-Managing Database) ? 6% 6% 12% 55% 6% Source: IOUG

More information

Microsoft PowerPoint - 10Àå.ppt

Microsoft PowerPoint - 10Àå.ppt 10 장. DB 서버구축및운영 DBMS 의개념과용어를익힌다. 간단한 SQL 문법을학습한다. MySQL 서버를설치 / 운영한다. 관련용어 데이터 : 자료 테이블 : 데이터를표형식으로표현 레코드 : 테이블의행 필드또는컬럼 : 테이블의열 필드명 : 각필드의이름 데이터타입 : 각필드에입력할값의형식 학번이름주소연락처 관련용어 DB : 테이블의집합 DBMS : DB 들을관리하는소프트웨어

More information

Pacemaker/Corosync 클러스터에서 GFS2구성

Pacemaker/Corosync 클러스터에서 GFS2구성 2019/07/09 23:42 1/2 Pacemaker/Corosync 클러스터에서 GFS2 구성 목차 Pacemaker/Corosync 클러스터에서 GFS2구성... 1 작업개요... 1 구성환경... 1 패키지설치... 2 Clustered Locking LVM사용... 2 DLM 및 CLVMD 클러스터리소스작성... 3 리소스순서및코로케이션... 4 LVM

More information

[Brochure] KOR_TunA

[Brochure] KOR_TunA LG CNS LG CNS APM (TunA) LG CNS APM (TunA) 어플리케이션의 성능 개선을 위한 직관적이고 심플한 APM 솔루션 APM 이란? Application Performance Management 란? 사용자 관점 그리고 비즈니스 관점에서 실제 서비스되고 있는 어플리케이션의 성능 관리 체계입니다. 이를 위해서는 신속한 장애 지점 파악 /

More information

<49534F20323030303020C0CEC1F520BBE7C8C4BDC9BBE720C4C1BCB3C6C320B9D7204954534D20BDC3BDBAC5DB20B0EDB5B5C8AD20C1A6BEC8BFE4C3BBBCAD2E687770>

<49534F20323030303020C0CEC1F520BBE7C8C4BDC9BBE720C4C1BCB3C6C320B9D7204954534D20BDC3BDBAC5DB20B0EDB5B5C8AD20C1A6BEC8BFE4C3BBBCAD2E687770> ISO 20000 인증 사후심사 컨설팅 및 ITSM 시스템 고도화를 위한 제 안 요 청 서 2008. 6. 한 국 학 술 진 흥 재 단 이 자료는 한국학술진흥재단 제안서 작성이외의 목적으로 복제, 전달 및 사용을 금함 목 차 Ⅰ. 사업개요 1 1. 사업명 1 2. 추진배경 1 3. 목적 1 4. 사업내용 2 5. 기대효과 2 Ⅱ. 사업추진계획 4 1. 추진체계

More information

DBMS & SQL Server Installation Database Laboratory

DBMS & SQL Server Installation Database Laboratory DBMS & 조교 _ 최윤영 } 데이터베이스연구실 (1314 호 ) } 문의사항은 cyy@hallym.ac.kr } 과제제출은 dbcyy1@gmail.com } 수업공지사항및자료는모두홈페이지에서확인 } dblab.hallym.ac.kr } 홈페이지 ID: 학번 } 홈페이지 PW:s123 2 차례 } } 설치전점검사항 } 설치단계별설명 3 Hallym Univ.

More information

Microsoft Word - 10g RAC on Win2k.doc

Microsoft Word - 10g RAC on Win2k.doc 10g RAC on Win2K Document Control Date Author Change References 2006-03-30 신종근 초기작성함 1-1 ** Agenda 1. 작업목적 Down-Time 최소화!! 2. Pre-Install 환경 3. CRS Install 4. DBMS S/W Install 5. 9i 10g Upgrade 6. 문제점및주의사항

More information

휠세미나3 ver0.4

휠세미나3 ver0.4 andromeda@sparcs:/$ ls -al dev/sda* brw-rw---- 1 root disk 8, 0 2014-06-09 18:43 dev/sda brw-rw---- 1 root disk 8, 1 2014-06-09 18:43 dev/sda1 brw-rw---- 1 root disk 8, 2 2014-06-09 18:43 dev/sda2 andromeda@sparcs:/$

More information

untitled

untitled A Leader of Enterprise e-business Solution FORCS Co., LTD 1 OZ Application Getting Started 2 FORCS Co., LTD A Leader of Enterprise e-business Solution FORCS Co., LTD 3 OZ Application Getting Started 'OZ

More information

62

62 2 instance database physical storage 2 1 62 63 tablespace datafiles 2 2 64 1 2 logical view control files datafiles redo log files 65 2 3 9i OMF Oracle Managed Files, OMF 9i 9i / / OMF 9i 66 8 1MB 8 10MB

More information

슬라이드 1

슬라이드 1 사례를통해본 ORACLE MAA (Maximum Availability Architecture) 2013. 02. Seungtaek Lee( 放浪 DBA) ORACLE MAA 최고의가용성을보장하기위해 Oracle( 사 ) 의여러솔루션을조합한 Oracle 권고아키텍처 2 ORACLE DB HA Solution Set RAC, Data Guard(ADG), ASM,

More information

SQL Developer Connect to TimesTen 유니원아이앤씨 DB 기술지원팀 2010 년 07 월 28 일 문서정보 프로젝트명 SQL Developer Connect to TimesTen 서브시스템명 버전 1.0 문서명 작성일 작성자

SQL Developer Connect to TimesTen 유니원아이앤씨 DB 기술지원팀 2010 년 07 월 28 일 문서정보 프로젝트명 SQL Developer Connect to TimesTen 서브시스템명 버전 1.0 문서명 작성일 작성자 SQL Developer Connect to TimesTen 유니원아이앤씨 DB 팀 2010 년 07 월 28 일 문서정보 프로젝트명 SQL Developer Connect to TimesTen 서브시스템명 버전 1.0 문서명 작성일 2010-07-28 작성자 김학준 최종수정일 2010-07-28 문서번호 20100728_01_khj 재개정이력 일자내용수정인버전

More information

Backup Exec

Backup Exec (sjin.kim@veritas.com) www.veritas veritas.co..co.kr ? 24 X 7 X 365 Global Data Access.. 100% Storage Used Terabytes 9 8 7 6 5 4 3 2 1 0 2000 2001 2002 2003 IDC (TB) 93%. 199693,000 TB 2000831,000 TB.

More information

10.ppt

10.ppt : SQL. SQL Plus. JDBC. SQL >> SQL create table : CREATE TABLE ( ( ), ( ),.. ) SQL >> SQL create table : id username dept birth email id username dept birth email CREATE TABLE member ( id NUMBER NOT NULL

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 공개 SW 솔루션설치 & 활용가이드 시스템 SW > 스토리지 제대로배워보자 How to Use Open Source Software Open Source Software Installation & Application Guide CONTENTS 1. 개요 2. 기능요약 3. 실행환경 4. 설치및실행 5. 기능소개 6. 활용예제 7. FAQ 8. 용어정리 -

More information

Cloud Friendly System Architecture

Cloud Friendly System Architecture -Service Clients Administrator 1. -Service 구성도 : ( 좌측참고 ) LB(LoadBlancer) 2. -Service 개요 ucloud Virtual Router F/W Monitoring 개념 특징 적용가능분야 Server, WAS, DB 로구성되어 web service 를클라우드환경에서제공하기위한 service architecture

More information

CD-RW_Advanced.PDF

CD-RW_Advanced.PDF HP CD-Writer Program User Guide - - Ver. 2.0 HP CD-RW Adaptec Easy CD Creator Copier, Direct CD. HP CD-RW,. Easy CD Creator 3.5C, Direct CD 3.0., HP. HP CD-RW TEAM ( 02-3270-0803 ) < > 1. CD...3 CD...5

More information

untitled

untitled A Leader of Enterprise e-business Solution FORCS Co., LTD 1 OZ Application Designer Getting Started 2 FORCS Co., LTD A Leader of Enterprise e-business Solution FORCS Co., LTD 3 OZ Application Designer

More information

untitled

untitled A Leader of Enterprise e-business Solution FORCS Co., LTD 1 OZ Application Designer Getting Started 2 FORCS Co., LTD A Leader of Enterprise e-business Solution FORCS Co., LTD 3 OZ Application Designer

More information

Tina Admin

Tina Admin 유니원아이앤씨 DB 기술지원팀 2015 년 09 월 09 일 문서정보 프로젝트명 TTS (Transportable Tablespace) 서브시스템명 버전 1.0 문서명 TTS (Transportable Tablespace) 작성일 2015-08-16 작성자 김성한 최종수정일 2015-09-09 문서번호 UNIONE-201509091051-KSH 재개정이력 일자내용수정인버전

More information

목 차

목      차 Oracle 9i Admim 1. Oracle RDBMS 1.1 (System Global Area:SGA) 1.1.1 (Shared Pool) 1.1.2 (Database Buffer Cache) 1.1.3 (Redo Log Buffer) 1.1.4 Java Pool Large Pool 1.2 Program Global Area (PGA) 1.3 Oracle

More information

소개 TeraStation 을 구입해 주셔서 감사합니다! 이 사용 설명서는 TeraStation 구성 정보를 제공합니다. 제품은 계속 업데이트되므로, 이 설명서의 이미지 및 텍스트는 사용자가 보유 중인 TeraStation 에 표시 된 이미지 및 텍스트와 약간 다를 수

소개 TeraStation 을 구입해 주셔서 감사합니다! 이 사용 설명서는 TeraStation 구성 정보를 제공합니다. 제품은 계속 업데이트되므로, 이 설명서의 이미지 및 텍스트는 사용자가 보유 중인 TeraStation 에 표시 된 이미지 및 텍스트와 약간 다를 수 사용 설명서 TeraStation Pro II TS-HTGL/R5 패키지 내용물: 본체 (TeraStation) 이더넷 케이블 전원 케이블 TeraNavigator 설치 CD 사용 설명서 (이 설명서) 제품 보증서 www.buffalotech.com 소개 TeraStation 을 구입해 주셔서 감사합니다! 이 사용 설명서는 TeraStation 구성 정보를

More information

슬라이드 1

슬라이드 1 사례를통해본 RMAN (RMAN Case Study) 2013. 02. Seungtaek Lee( 放浪 A) RMAN 백업 Server-Managed Backup(RMAN) Components Target : 백업대상 Catalog : 백업정보가저장되는 RMAN Repository Auxiliary : 백업또는 Target 를 Restore하여여러가지용도로사용하는

More information

FlexCloud Linux Server 원격접속및볼륨확장매뉴얼 Date: Hostway IDC Corporation Copyright 2011 Hostway IDC Inc. All rights reserved. TEL: URL:

FlexCloud Linux Server 원격접속및볼륨확장매뉴얼 Date: Hostway IDC Corporation Copyright 2011 Hostway IDC Inc. All rights reserved. TEL: URL: FlexCloud Linux Server 원격접속및볼륨확장매뉴얼 Date: 2011.01.24 Hostway IDC Corporation 1 목차 1. Linux VM 원격접속... 3 가 ) WEB Console 사용... 3 나 ) SSH 접속프로그램사용... 3 2. Linux VM 볼륨확장... 5 가 ) Disk 확장방법 1 ( 새로운파티션에마운트

More information

untitled

untitled Push... 2 Push... 4 Push... 5 Push... 13 Push... 15 1 FORCS Co., LTD A Leader of Enterprise e-business Solution Push (Daemon ), Push Push Observer. Push., Observer. Session. Thread Thread. Observer ID.

More information

Remote UI Guide

Remote UI Guide Remote UI KOR Remote UI Remote UI PDF Adobe Reader/Adobe Acrobat Reader. Adobe Reader/Adobe Acrobat Reader Adobe Systems Incorporated.. Canon. Remote UI GIF Adobe Systems Incorporated Photoshop. ..........................................................

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 Deep Learning 작업환경조성 & 사용법 ISL 안재원 Ubuntu 설치 작업환경조성 접속방법 사용예시 2 - ISO file Download www.ubuntu.com Ubuntu 설치 3 - Make Booting USB Ubuntu 설치 http://www.pendrivelinux.com/universal-usb-installer-easy-as-1-2-3/

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 Reasons for Poor Performance Programs 60% Design 20% System 2.5% Database 17.5% Source: ORACLE Performance Tuning 1 SMS TOOL DBA Monitoring TOOL Administration TOOL Performance Insight Backup SQL TUNING

More information

AKG 설 맞이 사내 특판 이벤트

AKG 설 맞이 사내 특판 이벤트 ORACLE RAC 설치매뉴얼 (11g+HACMP 6.1+RAWDEVICE) OTS 유명수, 정명호 2015.08.04 Contents 1. HACMP 설치 2. HACMP 설정 3. 사전준비사항 4. Grid 설치 5. DB 엔진설치 6. DB 생성 7. 설치확인및설정사항 1. HACMP 설치 (1/5) HACMP S/W 를특정디렉토리에압축해제 smit installp

More information

solution map_....

solution map_.... SOLUTION BROCHURE RELIABLE STORAGE SOLUTIONS ETERNUS FOR RELIABILITY AND AVAILABILITY PROTECT YOUR DATA AND SUPPORT BUSINESS FLEXIBILITY WITH FUJITSU STORAGE SOLUTIONS kr.fujitsu.com INDEX 1. Storage System

More information

vm-웨어-01장

vm-웨어-01장 Chapter 16 21 (Agenda). (Green),., 2010. IT IT. IT 2007 3.1% 2030 11.1%, IT 2007 1.1.% 2030 4.7%, 2020 4 IT. 1 IT, IT. (Virtualization),. 2009 /IT 2010 10 2. 6 2008. 1970 MIT IBM (Mainframe), x86 1. (http

More information

슬라이드 1

슬라이드 1 UGENS SNC Techinical Report OEL6 + 12C RAC 사원최재정 UGENS SNC 목차 1. 12c 설치된곳에자료수집 2. SERVER DB 삭제 3. 12c grid 설치 4. oracle 12c 설치 5. 확인 2 Vi.bash_profile if [ -f ~/.bashrc ]; then. ~/.bashrc fi # User specific

More information

Mango220 Android How to compile and Transfer image to Target

Mango220 Android How to compile and Transfer image to Target Mango220 Android How to compile and Transfer image to Target http://www.mangoboard.com/ http://cafe.naver.com/embeddedcrazyboys Crazy Embedded Laboratory www.mangoboard.com cafe.naver.com/embeddedcrazyboys

More information

공개 SW 기술지원센터

공개 SW 기술지원센터 - 1 - 일자 VERSION 변경내역작성자 2007. 11. 20 0.1 초기작성손명선 - 2 - 1. 문서개요 4 가. 문서의목적 4 나. 본문서의사용방법 4 2. 테스트완료사항 5 가. 성능테스트결과 5 나. Tomcat + 단일노드 MySQL 성능테스트상세결과 5 다. Tomcat + MySQL Cluster 성능테스트상세결과 10 3. 테스트환경 15

More information

R50_51_kor_ch1

R50_51_kor_ch1 S/N : 1234567890123 Boot Device Priority NumLock [Off] Enable Keypad [By NumLock] Summary screen [Disabled] Boor-time Diagnostic Screen [Disabled] PXE OPROM [Only with F12]

More information

Oracle Database Appliance X5-2 Customer Presentation

Oracle Database Appliance X5-2 Customer Presentation 12c MGMTDB(GIMR) 소개및구성가이드 2018. 8 김종인 Agenda 1. MGMTDB(GIMR) 이란? 2. GIMR Toploogy 3. GIMR 환경 4. GIMR tools 12c GIMR (Grid Infrastructure Management Repository)) MGMT 란무엇인가? - Management Repository 는 Oracle

More information

Amazon EBS (Elastic Block Storage) Amazon EC2 Local Instance Store (Ephemeral Volumes) Amazon S3 (Simple Storage Service) / Glacier Elastic File Syste (EFS) Storage Gateway AWS Import/Export 1 Instance

More information

워드표준 가이드

워드표준 가이드 Cloud NAS 서비스매뉴얼 2013.04 1 개정이력 개정일자 Version 개정사유개정내용 2012.10.26 1.0 신규작성 2012.11.08 1.1 CIFS 로그인 ID 정보변경 로그인시 IP\administrator ID 로사용 2012.11.23 1.2 Linux 계열 eth1(nas 용 ) 인식필요 CentOs, Debian, ubuntu 에서

More information

<4D F736F F D205BB4EBBBF3C1A4BAB8B1E2BCFA5DB1E2BCFAB9AEBCAD2D524D414EBBE7BFEBBFB9C1A65F39695F313067>

<4D F736F F D205BB4EBBBF3C1A4BAB8B1E2BCFA5DB1E2BCFAB9AEBCAD2D524D414EBBE7BFEBBFB9C1A65F39695F313067> 9i 에서의 RMAN 사용법예제 Author : 여현승 Creation Date : 2009-04-15 Last Updated : Latest Version : 1.0 Updated by Updated date Version < YYYY-MM-DD>

More information

GNU/Linux 1, GNU/Linux MS-DOS LOADLIN DOS-MBR LILO DOS-MBR LILO... 6

GNU/Linux 1, GNU/Linux MS-DOS LOADLIN DOS-MBR LILO DOS-MBR LILO... 6 GNU/ 1, qkim@pecetrirekr GNU/ 1 1 2 2 3 4 31 MS-DOS 5 32 LOADLIN 5 33 DOS- LILO 6 34 DOS- 6 35 LILO 6 4 7 41 BIOS 7 42 8 43 8 44 8 45 9 46 9 47 2 9 5 X86 GNU/LINUX 10 1 GNU/, GNU/ 2, 3, 1 : V 11, 2001

More information

PCServerMgmt7

PCServerMgmt7 Web Windows NT/2000 Server DP&NM Lab 1 Contents 2 Windows NT Service Provider Management Application Web UI 3 . PC,, Client/Server Network 4 (1),,, PC Mainframe PC Backbone Server TCP/IP DCS PLC Network

More information

Spotlight on Oracle V10.x 트라이얼프로그램설치가이드 DELL SOFTWARE KOREA

Spotlight on Oracle V10.x 트라이얼프로그램설치가이드 DELL SOFTWARE KOREA Spotlight on Oracle V10.x DELL SOFTWARE KOREA 2016-11-15 Spotlight on Oracle 목차 1. 시스템요구사항... 2 1.1 지원하는데이터베이스...2 1.2 사용자설치홖경...2 2. 프로그램설치... 3 2.1 설치프로그램실행...3 2.2 라이선스사용관련내용확인및사용동의...3 2.3 프로그램설치경로지정...4

More information

Copyright 2004 Sun Microsystems, Inc Network Circle, Santa Clara, CA U.S.A..,,. Sun. Sun. Berkeley BSD. UNIX X/Open Company, Ltd.. Sun, Su

Copyright 2004 Sun Microsystems, Inc Network Circle, Santa Clara, CA U.S.A..,,. Sun. Sun. Berkeley BSD. UNIX X/Open Company, Ltd.. Sun, Su Java Desktop System 2 Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. : 817 7757 10 2004 9 Copyright 2004 Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, CA 95054 U.S.A..,,.

More information

untitled

untitled A Leader of Enterprise e-business Solution FORCS Co., LTD 1 OZ Application Getting Started (ver 5.1) 2 FORCS Co., LTD A Leader of Enterprise e-business Solution FORCS Co., LTD 3 OZ Application Getting

More information

문서 대제목

문서 대제목 Linux OS Backup 교육자료 v1.1 2013. 12. 27. 이스턴네트웍스 기술지원팀전흥수 목차 1. Linux OS Backup & Cloning Layout 2. Solution Install & Configuration 3. Recovery Procedure 4. Reference Site - 1 - 1. Linux OS Backup / Cloning

More information

세미나(장애와복구-수강생용).ppt

세미나(장애와복구-수강생용).ppt DB PLAN Consultant jina6678@yahoo.co.kr 011-864-1858 - - 1. 2. DB 3. - 4. - 5. 6. 1 INSTANCE MMAN RECO RFS MRP ORBn RBAL MMON Dnnn Snnn Data Buffer Cache SGA Stream Pool Shared pool Large Pool PGA Log

More information

슬라이드 1

슬라이드 1 Pairwise Tool & Pairwise Test NuSRS 200511305 김성규 200511306 김성훈 200614164 김효석 200611124 유성배 200518036 곡진화 2 PICT Pairwise Tool - PICT Microsoft 의 Command-line 기반의 Free Software www.pairwise.org 에서다운로드후설치

More information

untitled

untitled Oracle DBMS 로그인의접근제어우회 취약점분석 2006. 2. 9 인터넷침해사고대응지원센터 (KISC) 본보고서의전부나일부를인용시반드시 [ 자료 : 한국정보보호진흥원 (KISA)] 룰명시하여주시기바랍니다. 개요 o 2005년이후 Oracle Critical Patch Update(CPU) 는 Oracle사제품대상으로다수의보안패치및보안패치와관련된일반패치를발표하는주요수단임

More information

목차 1. 제품 소개... 4 1.1 특징... 4 1.2 개요... 4 1.3 Function table... 5 2. 기능 소개... 6 2.1 Copy... 6 2.2 Compare... 6 2.3 Copy & Compare... 6 2.4 Erase... 6 2

목차 1. 제품 소개... 4 1.1 특징... 4 1.2 개요... 4 1.3 Function table... 5 2. 기능 소개... 6 2.1 Copy... 6 2.2 Compare... 6 2.3 Copy & Compare... 6 2.4 Erase... 6 2 유영테크닉스( 주) 사용자 설명서 HDD014/034 IDE & SATA Hard Drive Duplicator 유 영 테 크 닉 스 ( 주) (032)670-7880 www.yooyoung-tech.com 목차 1. 제품 소개... 4 1.1 특징... 4 1.2 개요... 4 1.3 Function table... 5 2. 기능 소개... 6 2.1 Copy...

More information

Jerry Held

Jerry Held DB / TSC Oracle Database 10g (Self-Managing Database) (Common Infrastructure) (Automatic Workload Repository) (Server-generated Alerts) (Automated Maintenance Tasks) (Advisory Framework) (ADDM) (Self-Managing

More information

1217 WebTrafMon II

1217 WebTrafMon II (1/28) (2/28) (10 Mbps ) Video, Audio. (3/28) 10 ~ 15 ( : telnet, ftp ),, (4/28) UDP/TCP (5/28) centralized environment packet header information analysis network traffic data, capture presentation network

More information

untitled

untitled (shared) (integrated) (stored) (operational) (data) : (DBMS) :, (database) :DBMS File & Database - : - : ( : ) - : - : - :, - DB - - -DBMScatalog meta-data -DBMS -DBMS - -DBMS concurrency control E-R,

More information

시스템 사용자 계정 관리

시스템 사용자 계정 관리 파일시스템에유용한명령어 파일시스템에대한정보를보여주는명령어 df Disk Free 설명 파일시스템에할당된전체용량, 사용한용량, 사용가능한용량, 현재파일시스템사용률, 파일시스템의마운트포인트정보를보여주며일반사용자도명령어사용이가능 사용방법 # df [option] 옵션 설명 -a 모든파일시스템정보출력 -i 블록사용정보대신 inode 사용정보출력 -k 단위를 1KB

More information

Title Slide with Name

Title Slide with Name 비용절감, 성능향상및고가용성관리방안 베리타스코리아 박철현이사 비용절감, 성능향상, 가용성향상 비용 성능 가용성 2 스토리지장애 무중단 스토리지이중화를통한업무무중단 Mirror 단일스토리지장애는장시간의서비스중단 스토리지복제로는업무중단및성능저하 H/W 방식은고비용및성능저하, 장애포인트증가 InfoScale 을통한성능향상, 무중단 3 근거리 Active DR 센터

More information

Copyright 2012, Oracle and/or its affiliates. All rights reserved.,.,,,,,,,,,,,,.,...,. U.S. GOVERNMENT END USERS. Oracle programs, including any oper

Copyright 2012, Oracle and/or its affiliates. All rights reserved.,.,,,,,,,,,,,,.,...,. U.S. GOVERNMENT END USERS. Oracle programs, including any oper Windows Netra Blade X3-2B( Sun Netra X6270 M3 Blade) : E37790 01 2012 9 Copyright 2012, Oracle and/or its affiliates. All rights reserved.,.,,,,,,,,,,,,.,...,. U.S. GOVERNMENT END USERS. Oracle programs,

More information

SANsymphony-V

SANsymphony-V 국내대표적인구축사례 (KR) XXXX공사(공공) 2013년 12월 도입 센터 이전에 따른 스토리지가상화 통합 및 이기종통합 이기종 스토리지 (무중단이중하) 무중단 서비스 확보 24시간 운영 체계의 고가용 확보 스토리지 인프라의 유연한 구성 및 통합 환경 구축 업무서버 Unix 20대 업무서버 V 58대 CIe SSD(Fusion IO 3.2TB) ㅇㅇㅇㅇㅇㅇ

More information

Oracle Regular Expression

Oracle Regular Expression Installing Oracle Cloud Control 12c on Oracle Linux 6.1 SEUNGCHEOL HAN 설치에앞서 현재설치과정은 Oracle Linux Enterprise 6.1 (64bit) 에서진행됩니다. Oracle Cloud Control 12c 설치를위해 Repository DB 로사용할 Oracle 11g R2 (11.2.0.3)

More information

Spring Boot/JDBC JdbcTemplate/CRUD 예제

Spring Boot/JDBC JdbcTemplate/CRUD 예제 Spring Boot/JDBC JdbcTemplate/CRUD 예제 오라클자바커뮤니티 (ojc.asia, ojcedu.com) Spring Boot, Gradle 과오픈소스인 MariaDB 를이용해서 EMP 테이블을만들고 JdbcTemplate, SimpleJdbcTemplate 을이용하여 CRUD 기능을구현해보자. 마리아 DB 설치는다음 URL 에서확인하자.

More information

Windows Storage Services Adoption And Futures

Windows Storage Services Adoption And Futures VSS Exchange/SQL Server / Shadow Copy? Snapshots point-in in-time copy. Write some data Data is written to the disk t 0 t 1 t 2 Create a shadow copy Backup the static shadow copy while 2 Shadow Copy Methods

More information

Mars OS 1.0.2 System Administration Guide

Mars OS 1.0.2 System Administration Guide Mars OS 1.0.2 시스템 관리 가이드 NetApp, Inc. www.netapp.com/kr 부품 번호:215-09731_A0 2015년 2월 4일 수요일 2 목차 목차 Mars OS 정보 12 Mars OS의 기능 13 고성능 13 업계 최고의 스토리지 효율성 13 시스템 모니터링 13 비휘발성 메모리를 사용하여 안정성 및 성능 향상 13 클러스터링

More information

단계

단계 본문서에서는 Tibero RDBMS 에서제공하는 Oracle DB Link 를위한 gateway 설치및설정방법과 Oracle DB Link 사용법을소개한다. Contents 1. TIBERO TO ORACLE DB LINK 개요... 3 1.1. GATEWAY 란... 3 1.2. ORACLE GATEWAY... 3 1.3. GATEWAY 디렉터리구조...

More information

K7VT2_QIG_v3

K7VT2_QIG_v3 1......... 2 3..\ 4 5 [R] : Enter Raid setup utility 6 Press[A]keytocreateRAID RAID Type: JBOD RAID 0 RAID 1: 2 7 " RAID 0 Auto Create Manual Create: 2 RAID 0 Block Size: 16K 32K

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 Spider For MySQL 실전사용기 피망플러스유닛최윤묵 Spider For MySQL Data Sharding By Spider Storage Engine http://spiderformysql.com/ 성능 8 만 / 분 X 4 대 32 만 / 분 많은 DB 중에왜 spider 를? Source: 클라우드컴퓨팅구 선택의기로 Consistency RDBMS

More information

Integ

Integ HP Integrity HP Chipset Itanium 2(Processor 9100) HP Integrity HP, Itanium. HP Integrity Blade BL860c HP Integrity Blade BL870c HP Integrity rx2660 HP Integrity rx3600 HP Integrity rx6600 2 HP Integrity

More information

Splentec V-WORM Quick Installation Guide Version: 1.0 Contact Information 올리브텍 주소 : 경기도성남시분당구구미로 11 ( 포인트타운 701호 ) URL: E-M

Splentec V-WORM Quick Installation Guide Version: 1.0 Contact Information 올리브텍 주소 : 경기도성남시분당구구미로 11 ( 포인트타운 701호 ) URL:   E-M Splentec V-WORM Quick Installation Guide Version: 1.0 Contact Information 올리브텍 주소 : 경기도성남시분당구구미로 11 ( 포인트타운 701호 ) URL: http://www.olivetech.co.kr E-Mail: tech@olivetech.co.kr TEL: 031-726-4217 FAX: 031-726-4219

More information

PRO1_02E [읽기 전용]

PRO1_02E [읽기 전용] Siemens AG 1999 All rights reserved File: PRO1_02E1 Information and 2 STEP 7 3 4 5 6 STEP 7 7 / 8 9 10 S7 11 IS7 12 STEP 7 13 STEP 7 14 15 : 16 : S7 17 : S7 18 : CPU 19 1 OB1 FB21 I10 I11 Q40 Siemens AG

More information

OPCTalk for Hitachi Ethernet 1 2. Path. DCOMwindow NT/2000 network server. Winsock update win95. . . 3 Excel CSV. Update Background Thread Client Command Queue Size Client Dynamic Scan Block Block

More information

금오공대 컴퓨터공학전공 강의자료

금오공대 컴퓨터공학전공 강의자료 데이터베이스및설계 Chap 1. 데이터베이스환경 (#2/2) 2013.03.04. 오병우 컴퓨터공학과 Database 용어 " 데이타베이스 용어의기원 1963.6 제 1 차 SDC 심포지움 컴퓨터중심의데이타베이스개발과관리 Development and Management of a Computer-centered Data Base 자기테이프장치에저장된데이터파일을의미

More information

8 장데이터베이스 8.1 기본개념 - 데이터베이스 : 데이터를조직적으로구조화한집합 (cf. 엑셀파일 ) - 테이블 : 데이터의기록형식 (cf. 엑셀시트의첫줄 ) - 필드 : 같은종류의데이터 (cf. 엑셀시트의각칸 ) - 레코드 : 데이터내용 (cf. 엑셀시트의한줄 )

8 장데이터베이스 8.1 기본개념 - 데이터베이스 : 데이터를조직적으로구조화한집합 (cf. 엑셀파일 ) - 테이블 : 데이터의기록형식 (cf. 엑셀시트의첫줄 ) - 필드 : 같은종류의데이터 (cf. 엑셀시트의각칸 ) - 레코드 : 데이터내용 (cf. 엑셀시트의한줄 ) 8 장데이터베이스 8.1 기본개념 - 데이터베이스 : 데이터를조직적으로구조화한집합 (cf. 엑셀파일 ) - 테이블 : 데이터의기록형식 (cf. 엑셀시트의첫줄 ) - 필드 : 같은종류의데이터 (cf. 엑셀시트의각칸 ) - 레코드 : 데이터내용 (cf. 엑셀시트의한줄 ) - DDL(Data Definition Language) : show, create, drop

More information

NFS 설정 가이드

NFS 설정 가이드 ucloud server NFS 설정가이드 v1.1 2013. 6 목차 1. 개요... 4 1.1. Linux NFS 개요... 4 1.2. ucloud NFS 구성... 5 2. NFS 서버구성... 6 2.1. NFS 서버 VM 생성... 6 2.1.1. VM 생성... 6 ucloud Marketplace 의상품신청기능을이용하여신규 NFS Server

More information

Microsoft Word - zfs-storage-family_ko.doc

Microsoft Word - zfs-storage-family_ko.doc 데이터 관리 용이성과 스토리지 효율성을 하나로 결합 주요 기능 및 이점 획기적인 가격 대비 성능과 혁신적인 단순성을 하나로 결합 특징 문제를 손쉽게 발견 및 수정하고 성능을 최적화할 수 있는 탁월한 관리 툴 포괄적이고 통합된 데이터 서비스 및 프로토콜 액티브-액티브 클러스터 옵션 데이터 압축 및 인라인 중복 제거 지속적인 데이터 증가로 인해 오늘날 IT 인프라는

More information

ODS-FM1

ODS-FM1 OPTICAL DISC ARCHIVE FILE MANAGER ODS-FM1 INSTALLATION GUIDE [Korean] 1st Edition (Revised 4) 상표 Microsoft, Windows 및 Internet Explorer는 미국 및 / 또는 다른 국가에서 Microsoft Corporation 의 등록 상표입 Intel 및 Intel Core

More information

이도경, 최덕재 Dokyeong Lee, Deokjai Choi 1. 서론

이도경, 최덕재 Dokyeong Lee, Deokjai Choi 1. 서론 이도경, 최덕재 Dokyeong Lee, Deokjai Choi 1. 서론 2. 관련연구 2.1 MQTT 프로토콜 Fig. 1. Topic-based Publish/Subscribe Communication Model. Table 1. Delivery and Guarantee by MQTT QoS Level 2.1 MQTT-SN 프로토콜 Fig. 2. MQTT-SN

More information

MS-SQL SERVER 대비 기능

MS-SQL SERVER 대비 기능 Business! ORACLE MS - SQL ORACLE MS - SQL Clustering A-Z A-F G-L M-R S-Z T-Z Microsoft EE : Works for benchmarks only CREATE VIEW Customers AS SELECT * FROM Server1.TableOwner.Customers_33 UNION ALL SELECT

More information

Linux Server 리눅스왕초보실무를익혀라! 리눅스서버 20 fedora 김영훈ㆍ정거룡지음

Linux Server 리눅스왕초보실무를익혀라! 리눅스서버 20 fedora 김영훈ㆍ정거룡지음 Linux Server 리눅스왕초보실무를익혀라! 리눅스서버 20 fedora 김영훈ㆍ정거룡지음 190page 디스크관리 Chapter 5.1 새하드디스크추가 5.2 LVM(Logical Volume Management) 5.4 디스크쿼터 (Quota) 5.1 새하드디스크추가 실습전가상컴퓨터백업 5 장에서전용으로사용할가상컴퓨터필요 교재 30 페이지참조 3 5.1

More information

침입방지솔루션도입검토보고서

침입방지솔루션도입검토보고서 IT 2005. 06. 02. IT IT Windows 3503 4463 4178 64% Solaris 142 56 36 Digital UX 37 24 9 Tru64 30 20 26 Server & DeskTop UNIX HP-UX 27 IRIX 19 FreeBSD 12 7 15 8 5 17 9 2% AIX 5 3 3 Linux 348 400 516 8% Apple

More information

Connection 8 22 UniSQLConnection / / 9 3 UniSQL OID SET

Connection 8 22 UniSQLConnection / / 9 3 UniSQL OID SET 135-080 679-4 13 02-3430-1200 1 2 11 2 12 2 2 8 21 Connection 8 22 UniSQLConnection 8 23 8 24 / / 9 3 UniSQL 11 31 OID 11 311 11 312 14 313 16 314 17 32 SET 19 321 20 322 23 323 24 33 GLO 26 331 GLO 26

More information

vm-웨어-앞부속

vm-웨어-앞부속 VMware vsphere 4 This document was created using the official VMware icon and diagram library. Copyright 2009 VMware, Inc. All rights reserved. This product is protected by U.S. and international copyright

More information

Microsoft Word - RMAN 스터디자료_공개용_ doc

Microsoft Word - RMAN 스터디자료_공개용_ doc RMAN 의특징및기능에대한내부기술자료 발표일 : 2004 년 9 월 3 일 작성자 : LG 카드중형서버운영파트민연홍 작성일 : 2004 년 9 월 3 일 업데이트 : 2006 년 2 월 23 일 목 차 1. rman 의특징... 2 2. rman catalog... 2 3. 컨트롤파일을사용한 rman repository... 2 4. CHANNEL 할당...

More information

Microsoft Word _LT_리눅스 마운트강좌 mount 1편.doc

Microsoft Word _LT_리눅스 마운트강좌 mount  1편.doc 리눅스마운트강좌 mount 편 ---------------- 목차 ----------------------- 1 : 마운트 (mount) 란무엇을의미하며왜사용하는가? 그, 실질적인의미 2 : 리눅스에장착된 CD-ROM 데이터사용하기실무 3 : 실제로마운트하지않고마운트가능여부만을확인하기 4 : 특정파일시스템을읽기만가능하도록마운트하기 ( 쓰기금지마운트 ) 5 :

More information

디지털포렌식학회 논문양식

디지털포렌식학회 논문양식 ISSN : 1976-5304 http://www.kdfs.or.kr Virtual Online Game(VOG) 환경에서의 디지털 증거수집 방법 연구 이 흥 복, 정 관 모, 김 선 영 * 대전지방경찰청 Evidence Collection Process According to the Way VOG Configuration Heung-Bok Lee, Kwan-Mo

More information

untitled

untitled PowerBuilder 連 Microsoft SQL Server database PB10.0 PB9.0 若 Microsoft SQL Server 料 database Profile MSS 料 (Microsoft SQL Server database interface) 行了 PB10.0 了 Sybase 不 Microsoft 料 了 SQL Server 料 PB10.0

More information

<목 차 > 제 1장 일반사항 4 I.사업의 개요 4 1.사업명 4 2.사업의 목적 4 3.입찰 방식 4 4.입찰 참가 자격 4 5.사업 및 계약 기간 5 6.추진 일정 6 7.사업 범위 및 내용 6 II.사업시행 주요 요건 8 1.사업시행 조건 8 2.계약보증 9 3

<목 차 > 제 1장 일반사항 4 I.사업의 개요 4 1.사업명 4 2.사업의 목적 4 3.입찰 방식 4 4.입찰 참가 자격 4 5.사업 및 계약 기간 5 6.추진 일정 6 7.사업 범위 및 내용 6 II.사업시행 주요 요건 8 1.사업시행 조건 8 2.계약보증 9 3 열차운행정보 승무원 확인시스템 구축 제 안 요 청 서 2014.6. 제 1장 일반사항 4 I.사업의 개요 4 1.사업명 4 2.사업의 목적 4 3.입찰 방식 4 4.입찰 참가 자격 4 5.사업 및 계약 기간 5 6.추진 일정 6 7.사업 범위 및 내용 6 II.사업시행 주요 요건 8 1.사업시행 조건 8 2.계약보증 9 3.시운전 및 하자보증 10

More information

Windows Server 2012

Windows Server  2012 Windows Server 2012 Shared Nothing Live Migration Shared Nothing Live Migration 은 SMB Live Migration 방식과다른점은 VM 데이터파일의위치입니다. Shared Nothing Live Migration 방식은 Hyper-V 호스트의로컬디스크에 VM 데이터파일이위치합니다. 반면에, SMB

More information

TTA Journal No.157_서체변경.indd

TTA Journal No.157_서체변경.indd 표준 시험인증 기술 동향 FIDO(Fast IDentity Online) 생체 인증 기술 표준화 동향 이동기 TTA 모바일응용서비스 프로젝트그룹(PG910) 의장 SK텔레콤 NIC 담당 매니저 76 l 2015 01/02 PASSWORDLESS EXPERIENCE (UAF standards) ONLINE AUTH REQUEST LOCAL DEVICE AUTH

More information

Microsoft Word - 기술노트36_11g R1 Clusterware를 이용한 Oracle HA 구성 _최종본_.doc

Microsoft Word - 기술노트36_11g R1 Clusterware를 이용한 Oracle HA 구성 _최종본_.doc Goodus 기술노트 [36 회 ] 11g R1 Clusterware 를이용한 Oracle H/A 구성 Author 유광복, 조연철, 백순성 Creation Date 2008-11-31 Last Updated 2008-12-03 Version 1.0 Copyright(C) 2004 Goodus Inc. All Rights Reserved Version 변경일자

More information