Tina Admin

Size: px
Start display at page:

Download "Tina Admin"

Transcription

1 유니원아이앤씨 DB 기술지원팀 2015 년 09 월 09 일 문서정보 프로젝트명 TTS (Transportable Tablespace) 서브시스템명 버전 1.0 문서명 TTS (Transportable Tablespace) 작성일 작성자 김성한 최종수정일 문서번호 UNIONE KSH 재개정이력 일자내용수정인버전 문서배포이력 발신자수신자배포목적일자비고.

2 Table of Contents 1 TTS (Transportable Tablespace) 란 TTS 제약사항 TEST 1- 동기종 platform TEST 환경 TEST Source DB 설정 Export Target DB 설정 Import TEST 확인 TEST 2 - 이기종 Platform TEST 환경 TEST Source DB 확인 Source DB 설정 Export Target DB 정보확인 RMAN - dumpfile convert Target DB 설정 Import TEST 확인...23.

3 1 TTS (Transportable Tablespace) 란 Transportable Tablespace 는서로다른 DB 간에대량의데이터를 Tablespace 단위로 datafile 를이동하여 옮기는가장빠르고효율적인기능이다. migration 할 tablespace의 metadata만 export 한후 datafile를 source db에서 target db로복사한후 medata만 import 하면바로사용이가능하다. 2 TTS 제약사항 source 와 target db 간의 character set 이동일해야한다 system, sysaux, undo, temp tablespace 는지원불가능 10g 이전버전은 source 와 target db 가같은플랫폼일때만지원 10g 이후버전은 rman 변환작업을통하여지원가능 Standard Edition 은지원불가능 Target db 는 Source db 버전과같거나더높아야한다 같은이름을갖는테이블스페이스가이미존재하는타겟데이타베이스에테이블스페이스를이전할수없다. 그러나, 트랜스포트수행전에트랜스포트될테이블스페이스나 destination 테이블스페이스를 rename할수있다. 만일테이블스페이스객체의 owner가타겟데이타베이스에존재하지않으면, 트랜스포터블테이블스페이스 import 전에 username은수동으로생성해야한다. 3/23

4 3 TEST 1- 동기종 platform 3.1 TEST 환경 동일한 platform, character : KO16MSWIN949 동일 source db oracle EE on linux 6.3 target db oracle EE on linux TEST Source DB 설정 ## transport 할 tablespace 생성 SQL> create tablespace tts_ts datafile '/oradata/orcl/tts_ts01.dbf' size 10m; SQL> select tablespace_name, bytes/1024/1024, file_name from dba_data_files; TABLESPACE_NAME BYTES/1024/1024 FILE_NAME USERS 5 /oradata/orcl/users01.dbf UNDOTBS1 75 /oradata/orcl/undotbs01.dbf SYSAUX 710 /oradata/orcl/sysaux01.dbf SYSTEM 720 /oradata/orcl/system01.dbf TTS_TS 10 /oradata/orcl/tts_ts01.dbf ## user 생성 SQL> create user tts_user 2 identified by tts 3 default tablespace tts_ts ; User created. SQL> grant resource, connect to tts_user; 4/23

5 ## table 생성및 Data inset SQL> create table tts_user.tts_table (no number); Table created. SQL> insert into tts_user.tts_table values (1); 1 row created. SQL> insert into tts_user.tts_table values (2); 1 row created. SQL> commit; Commit complete. SQL> select * from tts_user.tts_table; NO Export ## Datapump 설정 ## export 할 directory 생성 root@source~]# mkdir -p /data/pump root@ source ~]# chown -R oracle.dba /data/pump root@ source ~]# su - oracle oracle@ source ~]$ sqlplus "/as sysdba" SQL> create directory tts_dir as '/data/pump' ; SQL> grant read,write on directory tts_dir to public; 5/23

6 ## TTS check - tablespace 가이동가능한지체크 Transport tablespace set 이 self-contained 인지점검한다. Transport 하고자하는 tablespace set은 self-contained 이어야만한다. 대상이되는 tablespace set 내에 partitioned table이존재한다면해당 table의모든 partition들이이들 tablespace 내에존재해야하며, 비슷하게 LOB column의 data들과함께이들 tablespace 내에존재해야하는데, 이렇게서로관련된 object들이 tablespace set 내에모두존재하는것을 self-contained라고한다. tablespace set이 self-contained하지않다면 transport 할수없다. SQL> exec dbms_tts.transport_set_check('tts_ts',true); PL/SQL procedure successfully completed. ## 관련 view 확인 transport tablespace set이 self-contained 인지에대한정보를 TRANSPORT_SET_VIOLATIONS view에기록해준다. SQL > select * from tranport_set_violations; no rows selected ## export 전에 tablespace 를 read only mode 로변경 SQL> alter tablespace tts_ts read only ; Tablespace altered. SQL> select tablespace_name,status from dba_tablespaces; TABLESPACE_NAME STATUS SYSTEM SYSAUX UNDOTBS1 TEMP USERS TTS_TS READ ONLY ## datapump export 실행 [oracle@source~]$ expdp system/oracle directory=tts_dir transport_tablespaces=tts_ts dumpfile=tts.dmp 6/23

7 logfile=tts.log Export: Release Production on Wed Apr 30 10:28: Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved. Connected to: Oracle Database 11g Enterprise Edition Release bit Production With the Partitioning, OLAP, Data Mining and Real Application Testing options Legacy Mode Active due to the following parameters: Legacy Mode Parameter: "file=tts.dmp" Location: Command Line, Replaced with: "dumpfile=tts.dmp" Legacy Mode has set reuse_dumpfiles=true parameter. Starting "SYSTEM"."SYS_EXPORT_TRANSPORTABLE_01": system/******** directory=tts_dir transport_tablespaces=tts_ts dumpfile=tts.dmp logfile=tts.log reuse_dumpfiles=true Processing object type TRANSPORTABLE_EXPORT/PLUGTS_BLK Processing object type TRANSPORTABLE_EXPORT/TABLE Processing object type TRANSPORTABLE_EXPORT/POST_INSTANCE/PLUGTS_BLK Master table "SYSTEM"."SYS_EXPORT_TRANSPORTABLE_01" successfully loaded/unloaded ****************************************************************************** Dump file set for SYSTEM.SYS_EXPORT_TRANSPORTABLE_01 is: /data/pump/tts.dmp ****************************************************************************** Datafiles required for transportable tablespace TTS_TS: /oradata/orcl/tts_ts01.dbf Job "SYSTEM"."SYS_EXPORT_TRANSPORTABLE_01" successfully completed at 10:28:51... [oracle@source~]$ pwd /data/pump [oracle@ source~]$ ls tts.dmp tts.log Target DB 설정 ## source DB에서사용하던계정을동일하게생성후 datapump 관련작업을수행 7/23

8 sqlplus "/as sysdba" SQL> create user tts_user identified by tts User created. SQL> grant resource, connect to tts_user; SQL> exit exit target ~]# mkdir -p /data/pump target ~]# chown -R oracle.dba /data/pump target ~]# su - oracle oracle@ target ~]$ sqlplus "/as sysdba" SQL> create directory tts_dir as '/data/pump' ; SQL> grant read,write on directory tts_dir to public; Import ## export 받은 dmp 파일을 target DB /data/pump 디렉토리로복사 oracle@ source~]# scp tts.dmp :/data/pump The authenticity of host ' ( )' can't be established. RSA key fingerprint is a3:64:78:86:1e:ff:dd:c8:b3:73:a8:9c:06:65:f0:38. Are you sure you want to continue connecting (yes/no)? yes Warning: Permanently added ' ' (RSA) to the list of known hosts. root@ 's password: tts.dmp 100% 88KB 88.0KB/s 00:00 ## tts_ts01.dbf 를 target DB로복사 ( 경로는 /oradata/target/ ) oracle@ source /oradata/ocrl]# scp tts_ts01.dbf :/oradata/TARGET/ The authenticity of host ' ( )' can't be established. RSA key fingerprint is a3:64:78:86:1e:ff:dd:c8:b3:73:a8:9c:06:65:f0:38. Are you sure you want to continue connecting (yes/no)? yes Warning: Permanently added ' ' (RSA) to the list of known hosts. oracle@ 's password: 8/23

9 tts_ts01.dbf 100% 10MB 10.0MB/s 00:00 ## target DB에서 import 수행 target ~]# cd /data/pump target ~]# ls /data/pump tts.dmp ~]$ impdp system/oracle directory=tts_dir dumpfile=tts.dmp logfile=tts.log transport_datafiles='/oradata/target/tts_ts01.dbf' Import: Release Production on Thu Apr 17 22:26: Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved. Connected to: Oracle Database 11g Enterprise Edition Release bit Production With the Partitioning, OLAP, Data Mining and Real Application Testing options Master table "SYSTEM"."SYS_IMPORT_TRANSPORTABLE_01" successfully loaded/unloaded Starting "SYSTEM"."SYS_IMPORT_TRANSPORTABLE_01": system/******** directory=tts_dir dumpfile=tts.dmp logfile=tts.log transport_datafiles=/oradata/target/tts_ts01.dbf Processing object type TRANSPORTABLE_EXPORT/PLUGTS_BLK Processing object type TRANSPORTABLE_EXPORT/TABLE Processing object type TRANSPORTABLE_EXPORT/POST_INSTANCE/PLUGTS_BLK Job "SYSTEM"."SYS_IMPORT_TRANSPORTABLE_01" successfully completed at 22:26: TEST 확인 ## Target DB 접속 [oracle@target ~]$ sqlplus "/as sysdba" SQL*Plus: Release Production on Thu Apr 17 22:30: Copyright (c) 1982, 2011, Oracle. All rights reserved. 9/23

10 Connected to: Oracle Database 11g Enterprise Edition Release bit Production With the Partitioning, OLAP, Data Mining and Real Application Testing options SQL> ## tablespace, datafile 확인 SQL> select file_name, tablespace_name from dba_data_files; FILE_NAME TABLESPACE_NAME /oradata/orcl/users01.dbf USERS /oradata/orcl/undotbs01.dbf UNDOTBS1 /oradata/orcl/sysaux01.dbf SYSAUX /oradata/orcl/system01.dbf SYSTEM /oradata/target/tts_ts01.dbf TTS_TS ## user 확인 SQL> select username from dba_users; USERNAME SYS SYSTEM TTS_USER OUTLN MGMT_VIEW FLOWS_FILES MDSYS ORDSYS EXFSYS DBSNMP WMSYS APPQOSSYS 10/23

11 ## table 확인 SQL> select * from tts_user.tts_table; NO ## ## TTS_TS 테이블스페이스 read write mode로변경 ( source,target 서버동일 ) SQL> alter tablespace tts_ts read write ; SQL> select tablespace_name, status from dba_tablespaces; TABLESPACE_NAME STATUS SYSTEM SYSAUX UNDOTBS1 TEMP USERS TTS_TS 11/23

12 4 TEST 2 - 이기종 Platform OS 나 Oracle 버젼이다를경우 RMAN의 convert 명령어를사용하여 Cross-Platform 데이터이전을할수있다 4.1 TEST 환경 이기종 platform, character : KO16MSWIN949 동일 source db oracle EE on linux 6.3 target db oracle EE on Window server 2003 지원가능한 Platform SQL>set pagesize 50 SQL >col PLATFORM_ID for SQL >col PLATFORM_NAME for a40 SQL >col ENDIAN_FORMAT for a10 SQL >select * from v$transportable_platform SQL> select * from v$transportable_platform order by 1; PLATFORM_ID PLATFORM_NAME ENDIAN_FORMAT Solaris[tm] OE (32-bit) Big 2 Solaris[tm] OE (64-bit) Big 3 HP-UX (64-bit) Big 4 HP-UX IA (64-bit) Big 5 HP Tru64 UNIX Little 6 AIX-Based Systems (64-bit) Big 7 Microsoft Windows IA (32-bit) Little 8 Microsoft Windows IA (64-bit) Little 9 IBM zseries Based Linux Big 10 Linux IA (32-bit) Little 11 Linux IA (64-bit) Little 12 Microsoft Windows x86 64-bit Little 13 Linux x86 64-bit Little 15 HP Open VMS Little 12/23

13 16 Apple Mac OS Big 17 Solaris Operating System (x86) Little 18 IBM Power Based Linux Big 19 HP IA Open VMS Little 20 Solaris Operating System (x86-64) Little 21 Apple Mac OS (x86-64) Little 4.2 TEST Source DB 확인 /]$ sqlplus "/as sysdba" SQL*Plus: Release Production on Thu May 15 10:21: Copyright (c) 1982, 2011, Oracle. All rights reserved. Connected to: Oracle Database 11g Enterprise Edition Release bit Production With the Partitioning, OLAP, Data Mining and Real Application Testing options SQL> col platform_name for a20 SQL> col endian_format for a20 SQL> select a.platfrom_name,endian_format SQL> select d.platform_name, endian_format 2 from v$transportable_platform tp, v$database d 3 where tp.platform_name = d.platform_name ; PLATFORM_NAME Linux x86 64-bit Little ENDIAN_FORMAT Source DB 설정 ## 현재 datafile 조회 SQL> select file_name, tablespace_name, bytes/1024/1024 MB from dba_data_files; 13/23

14 FILE_NAME TABLESPACE_NAME MB /oradata/orcl/users01.dbf USERS 5 /oradata/orcl/undotbs01.dbf UNDOTBS1 75 /oradata/orcl/sysaux01.dbf SYSAUX 790 /oradata/orcl/system01.dbf SYSTEM 720 /oradata/orcl/tts_ts01.dbf TTS_TS 10 ## TEST tablespace 생성 SQL> create tablespace tts_ts2 datafile '/oradata/orcl/tts_ts02.dbf' size 10m; Tablespace created. ## TEST 유저생성 SQL> create user tts_user 2 identified by tts 3 default tablespace tts_ts2 ; User created. ## TEST Table 생성 SQL> create table tts_user.test02(no number) ; Table created. ## data insert SQL> insert into tts_user.test02 values(1); 1 row created. SQL> insert into tts_user.test02 values(22); 1 row created. SQL> commit; Commit complete. ## Table 조회 SQL> select * from tts_user.test02 ; 14/23

15 NO Export ## datapump 설정 ## export 할 directory 생성 root@source~]# mkdir -p /data/pump root@ source ~]# chown -R oracle.dba /data/pump root@ source ~]# su - oracle oracle@ source ~]$ sqlplus "/as sysdba" SQL> create directory tts_dir as '/data/pump' ; SQL> grant read,write on directory tts_dir to public; ## TTS check - tablespace 가이동가능한지체크 SQL> exec dbms_tts.transport_set_check('tts_ts2',true); PL/SQL procedure successfully completed. SQL> select * from transport_set_violations; no rows selected ## 이관할 Tablespace 를 read only 로변경 SQL> alter tablespace TTS_TS2 read only ; SQL> select tablespace_name, status from dba_tablespaces; TABLESPACE_NAME STATUS SYSTEM 15/23

16 SYSAUX UNDOTBS1 TEMP USERS TEMP2 TTS_TS2 READ ONLY ## Export 수행 1. meta data 먼저 export 실행 pump]$ expdp system/oracle dumpfile=tts_meta.dmp directory=tts_dir full=y include=user,role,role_grant,profile content=metadata_only Export: Release Production on Thu May 15 12:37: Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved. Connected to: Oracle Database 11g Enterprise Edition Release bit Production With the Partitioning, OLAP, Data Mining and Real Application Testing options Starting "SYSTEM"."SYS_EXPORT_FULL_01": system/******** dumpfile=tts_meta.dmp directory=tts_dir full=y include=user,role,role_grant,profile content=metadata_only Processing object type DATABASE_EXPORT/PROFILE Processing object type DATABASE_EXPORT/SYS_USER/USER Processing object type DATABASE_EXPORT/SCHEMA/USER Processing object type DATABASE_EXPORT/ROLE Processing object type DATABASE_EXPORT/SCHEMA/ROLE_GRANT Master table "SYSTEM"."SYS_EXPORT_FULL_01" successfully loaded/unloaded ****************************************************************************** Dump file set for SYSTEM.SYS_EXPORT_FULL_01 is: /data/pump/tts_meta.dmp Job "SYSTEM"."SYS_EXPORT_FULL_01" successfully completed at 12:37:54 2. 이관할 data를 Export 실행 [oracle@source pump]$ expdp system/oracle dumpfile=tts_test2.dmp directory=tts_dir transport_tablespaces=tts_ts2 logfile=test02.log 16/23

17 Export: Release Production on Thu May 15 11:20: Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved. Connected to: Oracle Database 11g Enterprise Edition Release bit Production With the Partitioning, OLAP, Data Mining and Real Application Testing options Starting "SYSTEM"."SYS_EXPORT_TRANSPORTABLE_01": system/******** dumpfile=tts_test2.dmp directory=tts_dir transport_tablespaces=tts_ts2 logfile=test02.log Processing object type TRANSPORTABLE_EXPORT/PLUGTS_BLK Processing object type TRANSPORTABLE_EXPORT/TABLE Processing object type TRANSPORTABLE_EXPORT/POST_INSTANCE/PLUGTS_BLK Master table "SYSTEM"."SYS_EXPORT_TRANSPORTABLE_01" successfully loaded/unloaded ****************************************************************************** Dump file set for SYSTEM.SYS_EXPORT_TRANSPORTABLE_01 is: /data/pump/tts_test2.dmp ****************************************************************************** Datafiles required for transportable tablespace TTS_TS2: /oradata/orcl/tts_ts02.dbf Job "SYSTEM"."SYS_EXPORT_TRANSPORTABLE_01" successfully completed at 11:21:07 [oracle@source pump]$ ls -lrt 합계 96 -rw-r oracle dba :21 tts_test2.dmp -rw-r--r--. 1 oracle dba :21 test02.log Target DB 정보확인 rman으로 convert 하기전 target db의오라클버전과 os를체크 ## Target 오라클버젼과 os 확인 C:\Documents and Settings\Administrator>sqlplus "/as sysdba" SQL*Plus: Release Production on 수 9월 3 15:38: Copyright (c) 1982, 2010, Oracle. All rights reserved. 17/23

18 다음에접속됨 : Oracle Database 11g Enterprise Edition Release bit Production With the Partitioning, OLAP, Data Mining and Real Application Testing options SQL> select d.platform_name, endian_format from v$transportable_platform tp, v$ database d where tp.platform_name = d.platform_name ; PLATFORM_NAME ENDIAN_FOR Microsoft Windows x86 64-bit Little RMAN - dumpfile convert ## source DB 에서 RMAN 접속하여 TTS_TS2 테이블스페이스 convert 작업수행 [oracle@source pump]$ rman target / Recovery Manager: Release Production on Thu May 15 11:35: Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved. connected to target database: ORCL (DBID= ) RMAN> convert tablespace 'TTS_TS2' to platform 'Microsoft Windows x86 64-bit' 2> format '/data/pump/%u'; -- TTS_TS2 테이블스페이스를 'Microsoft Windows x86 64-bit' platform 에서사용할수있게 convert 작업 Starting conversion at source at 15-MAY-14 using target database control file instead of recovery catalog allocated channel: ORA_DISK_1 channel ORA_DISK_1: SID=42 device type=disk channel ORA_DISK_1: starting datafile conversion input datafile file number=00006 name=/oradata/orcl/tts_ts02.dbf converted datafile=/data/pump/data_d-orcl_i _ts-tts_ts2_fno-6_01p8bfie channel ORA_DISK_1: datafile conversion complete, elapsed time: 00:00:01 Finished conversion at source at 15-MAY-14 18/23

19 pump]$ ls -lrt 합계 rw-r oracle dba 6_01p8bfie :36 data_d-orcl_i _ts-tts_ts2_fno Target DB 설정 ## datapump 디렉토리생성및권한부여 C:\ >sqlplus "/as sysdba" SQL> create directory tts_dir as 'C:\oracle\datapump'; 디렉토리가생성되었습니다. SQL> grant read,write on directory tts_dir to public; 권한이부여되었습니다. ## TEST 유저생성 ( source 서버와동일하게생성 ) SQL> create user tts_user identified by tts ; SQL> grant resource, connect to tts_user ## 변환된파일과 export 받은 dump 을 target으로이동 xftp 로 3개의파일을 target 서버의 c:\oracle\datatpump 디렉토리로옮김. tts_meta.dmp ---- meta data만 export 받은 dumpfile tts_test2.dmp ---- 이관할 tablespace를 transportalbe 옵션을주어 export 받은 dumpfile data_d-orcl_i _ts-tts_ts2_fno-6_01p8bfie rman convert platform 변환 ## 변환된파일을 target 에서한번더 convert 작업수행 - 이작업으로 Source DB에서사용하던파일을 Target DB 파일로변환및재생성함 C:\ > rman target / 복구관리자 : Release Production on 수 9월 3 16:20: Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved. 대상데이터베이스에접속합니다 : UNIONE (DBID= ) 19/23

20 RMAN> convert datafile 'C:\oracle\datapump/data_D-ORCL_I _TS-TTS_TS2_FNO-6_01p8bfie' format 'C:\ORACLE\ORADATA\TTS_TS02.DBF' ; conversion at target을 ( 를 ) 14/09/03에서시작중복구카탈로그대신대상데이터베이스제어파일을사용하고있습니다. 채널을할당했습니다 : ORA_DISK_1 ORA_DISK_1 채널 : SID=73 장치유형 =DISK ORA_DISK_1 채널 : 데이터파일변환시작중입력파일이름 =C:\ORACLE\DATAPUMP\DATA_D-ORCL_I _TS-TTS_TS2_FNO-6_01P8 BFIE 변환된데이터파일 =C:\ORACLE\ORADATA\TTS_TS02.DBF ORA_DISK_1 채널 : 데이터파일변환완료. 경과시간 : 00:00:01 conversion at target을 ( 를 ) 14/09/03에서완료 Import ## Target 서버에서 meta data 및실제 data를 import 실행 1. meta data import 실행 C:\>impdp system/oracle directory=tts_dir dumpfile=tts_meta.dmp full=y Import: Release Production on 수 9 월 3 17:07: Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights rese 접속대상 : Oracle Database 11g Enterprise Edition Release duction With the Partitioning, OLAP, Data Mining and Real Application Testing op 마스터테이블 "SYSTEM"."SYS_IMPORT_FULL_01" 이 ( 가 ) 성공적으로로드됨 / 로드 "SYSTEM"."SYS_IMPORT_FULL_01" 시작중 : system/******** directory=tts_dir e=tts_meta.dmp full=y 객체유형 DATABASE_EXPORT/PROFILE 처리중 ORA-31684: 객체유형 PROFILE:"MONITORING_PROFILE" 이 ( 가 ) 존재함객체유형 DATABASE_EXPORT/SYS_USER/USER 처리중객체유형 DATABASE_EXPORT/SCHEMA/USER 처리중 20/23

21 ORA-31684: 객체유형 USER:"OUTLN" 이 ( 가 ) 존재함 ORA-31684: 객체유형 USER:"ORDDATA" 이 ( 가 ) 존재함 ORA-31684: 객체유형 USER:"OLAPSYS" 이 ( 가 ) 존재함 ORA-31684: 객체유형 USER:"MDDATA" 이 ( 가 ) 존재함 ORA-31684: 객체유형 USER:"SPATIAL_WFS_ADMIN_USR" 이 ( 가 ) 존재함 ORA-31684: 객체유형 USER:"SPATIAL_CSW_ADMIN_USR" 이 ( 가 ) 존재함 ORA-31684: 객체유형 USER:"SYSMAN" 이 ( 가 ) 존재함 ORA-31684: 객체유형 USER:"MGMT_VIEW" 이 ( 가 ) 존재함 ORA-31684: 객체유형 USER:"FLOWS_FILES" 이 ( 가 ) 존재함 ORA-31684: 객체유형 USER:"APEX_PUBLIC_USER" 이 ( 가 ) 존재함 ORA-31684: 객체유형 USER:"APEX_030200" 이 ( 가 ) 존재함 ORA-31684: 객체유형 USER:"OWBSYS" 이 ( 가 ) 존재함 ORA-31684: 객체유형 USER:"OWBSYS_AUDIT" 이 ( 가 ) 존재함 ORA-31684: 객체유형 USER:"SCOTT" 이 ( 가 ) 존재함 ORA-31684: 객체유형 USER:"TTS_USER" 이 ( 가 ) 존재함객체유형 DATABASE_EXPORT/ROLE 처리중 ORA-31684: 객체유형 ROLE:"SELECT_CATALOG_ROLE" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"EXECUTE_CATALOG_ROLE" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"DELETE_CATALOG_ROLE" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"DBFS_ROLE" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"AQ_ADMINISTRATOR_ROLE" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"AQ_USER_ROLE" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"ADM_PARALLEL_EXECUTE_TASK" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"GATHER_SYSTEM_STATISTICS" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"RECOVERY_CATALOG_OWNER" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"SCHEDULER_ADMIN" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"HS_ADMIN_SELECT_ROLE" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"HS_ADMIN_EXECUTE_ROLE" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"HS_ADMIN_ROLE" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"GLOBAL_AQ_USER_ROLE" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"OEM_ADVISOR" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"OEM_MONITOR" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"WM_ADMIN_ROLE" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"JAVAUSERPRIV" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"JAVAIDPRIV" 이 ( 가 ) 존재함 21/23

22 ORA-31684: 객체유형 ROLE:"JAVASYSPRIV" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"JAVADEBUGPRIV" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"EJBCLIENT" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"JMXSERVER" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"JAVA_ADMIN" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"JAVA_DEPLOY" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"CTXAPP" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"XDBADMIN" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"XDB_SET_INVOKER" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"AUTHENTICATEDUSER" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"XDB_WEBSERVICES" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"XDB_WEBSERVICES_WITH_PUBLIC" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"XDB_WEBSERVICES_OVER_HTTP" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"ORDADMIN" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"OLAP_XS_ADMIN" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"OLAP_DBA" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"CWM_USER" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"OLAP_USER" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"SPATIAL_WFS_ADMIN" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"WFS_USR_ROLE" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"SPATIAL_CSW_ADMIN" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"CSW_USR_ROLE" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"MGMT_USER" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"APEX_ADMINISTRATOR_ROLE" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"OWB$CLIENT" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"OWB_DESIGNCENTER_VIEW" 이 ( 가 ) 존재함 ORA-31684: 객체유형 ROLE:"OWB_USER" 이 ( 가 ) 존재함객체유형 DATABASE_EXPORT/SCHEMA/ROLE_GRANT 처리중 "SYSTEM"."SYS_IMPORT_FULL_01" 작업이 62 오류와함께 17:07:52에서완료됨 ## 데이터 import 실행 C:\> impdp system/oracle directory=tts_dir dumpfile=tts_test2.dmp transport_dataf iles='c:\oracle\oradata\tts_ts02.dbf' Import: Release Production on 수 9 월 3 17:16: /23

23 Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved. 접속대상 : Oracle Database 11g Enterprise Edition Release bit Pro duction With the Partitioning, OLAP, Data Mining and Real Application Testing options 마스터테이블 "SYSTEM"."SYS_IMPORT_TRANSPORTABLE_01" 이 ( 가 ) 성공적으로로드됨 / 로드취소됨 "SYSTEM"."SYS_IMPORT_TRANSPORTABLE_01" 시작중 : system/******** directory=tts_di r dumpfile=tts_test2.dmp transport_datafiles='c:\oracle\oradata\tts_ts02.dbf' 객체유형 TRANSPORTABLE_EXPORT/PLUGTS_BLK 처리중객체유형 TRANSPORTABLE_EXPORT/TABLE 처리중객체유형 TRANSPORTABLE_EXPORT/POST_INSTANCE/PLUGTS_BLK 처리중 "SYSTEM"."SYS_IMPORT_TRANSPORTABLE_01" 작업이 17:16:15에서성공적으로완료됨 TEST 확인 ## Tablespace 확인 FILE_NAME TABLESPACE_NAME C:\ORACLE\ORADATA\UNIONE\SYSTEM01.DBF SYSTEM C:\ORACLE\ORADATA\UNIONE\SYSAUX01.DBF SYSAUX C:\ORACLE\ORADATA\UNIONE\UNDOTBS01.DBF UNDOTBS1 C:\ORACLE\ORADATA\UNIONE\USERS01.DBF USERS C:\ORACLE\ORADATA\TTS_TS02.DBF TTS_TS2 SQL> select * from tts_user.test02; NO ## TTS_TS2 read write mode 로변경 ( source,target 서버동일 ) SQL> alter tablespace tts_ts2 read write ; 23/23

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

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

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

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

목차 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

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

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

오라클 데이터베이스 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

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

본문서는 초급자들을 대상으로 최대한 쉽게 작성하였습니다. 본문서에서는 설치방법만 기술했으며 자세한 설정방법은 검색을 통하시기 바랍니다. 1. 설치개요 워드프레스는 블로그 형태의 홈페이지를 빠르게 만들수 있게 해 주는 프로그램입니다. 다양한 기능을 하는 플러그인과 디자인

본문서는 초급자들을 대상으로 최대한 쉽게 작성하였습니다. 본문서에서는 설치방법만 기술했으며 자세한 설정방법은 검색을 통하시기 바랍니다. 1. 설치개요 워드프레스는 블로그 형태의 홈페이지를 빠르게 만들수 있게 해 주는 프로그램입니다. 다양한 기능을 하는 플러그인과 디자인 스마일서브 CLOUD_Virtual 워드프레스 설치 (WORDPRESS INSTALL) 스마일서브 가상화사업본부 Update. 2012. 09. 04. 본문서는 초급자들을 대상으로 최대한 쉽게 작성하였습니다. 본문서에서는 설치방법만 기술했으며 자세한 설정방법은 검색을 통하시기 바랍니다. 1. 설치개요 워드프레스는 블로그 형태의 홈페이지를 빠르게 만들수 있게

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

13주-14주proc.PDF

13주-14주proc.PDF 12 : Pro*C/C++ 1 2 Embeded SQL 3 PRO *C 31 C/C++ PRO *C NOT! NOT AND && AND OR OR EQUAL == = SQL,,, Embeded SQL SQL 32 Pro*C C SQL Pro*C C, C Pro*C, C C 321, C char : char[n] : n int, short, long : float

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

휠세미나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

Microsoft Word - [Unioneinc] 특정컬럼의 통계정보 갱신_ _ldh.doc

Microsoft Word - [Unioneinc] 특정컬럼의 통계정보 갱신_ _ldh.doc 특정 Column 통계정보갱신가이드 유니원아이앤씨 DB 사업부이대혁 2015 년 03 월 02 일 문서정보프로젝트명서브시스템명 버전 1.0 문서명 특정 Column 통계정보갱신가이드 작성일 2015-03-02 작성자 DB사업부이대혁사원 최종수정일 2015-03-02 문서번호 UNIONE-201503021500-LDH 재개정이력 일자내용수정인버전 문서배포이력

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

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

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

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

<4D F736F F D203033C6C4C6BCBCC72DB8AEBFC0B1D7B9E6B9FD2E646F63>

<4D F736F F D203033C6C4C6BCBCC72DB8AEBFC0B1D7B9E6B9FD2E646F63> Reviewed by Oracle Certified Master Korea Community ( http:www.ocmkorea.com http:cafe.daum.netoraclemanager ) 1.1.1 파티션테이블에서사용할수있는리오그방법파티션 level 의 importexport 방법을이용해파티션테이블중특정파티션 ( 혹은서브파티션 ) 만을선택적으로리오그할수있다.

More information

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

Oracle hacking 작성자 : 임동현 작성일 2008 년 10 월 11 일 ~ 2008 년 10 월 19 일 신규작성 작성내용

Oracle hacking 작성자 : 임동현 작성일 2008 년 10 월 11 일 ~ 2008 년 10 월 19 일 신규작성 작성내용 Oracle hacking 작성자 : 임동현 (ddongsbrk@naver.com) 작성일 2008 년 10 월 11 일 ~ 2008 년 10 월 19 일 신규작성 작성내용 Skill List 1. Oracle For Pentest 1. Find TNS Listener (Default 1521 port) (with nmap or amap) 2. Get the

More information

Assign an IP Address and Access the Video Stream - Installation Guide

Assign an IP Address and Access the Video Stream - Installation Guide 설치 안내서 IP 주소 할당 및 비디오 스트림에 액세스 책임 본 문서는 최대한 주의를 기울여 작성되었습니다. 잘못되거나 누락된 정보가 있는 경우 엑시스 지사로 알려 주시기 바랍니다. Axis Communications AB는 기술적 또는 인쇄상의 오류에 대해 책 임을 지지 않으며 사전 통지 없이 제품 및 설명서를 변경할 수 있습니다. Axis Communications

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

<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

Chapter 1

Chapter 1 3 Oracle 설치 Objectives Download Oracle 11g Release 2 Install Oracle 11g Release 2 Download Oracle SQL Developer 4.0.3 Install Oracle SQL Developer 4.0.3 Create a database connection 2 Download Oracle 11g

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

목 차

목      차 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

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

단계

단계 본문서에서는 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

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

슬라이드 1

슬라이드 1 Transparent Data Encryption(TDE) OS DB Author Email HomePage Linux 11g R2 윤현 sensyh@dbworks.co.kr http://www.dbworks.co.kr http://support.dbworks.co.kr Part I TDE 란? TDE 개요 TDE 이점 Part II TDE Column Encryption

More information

PRO1_09E [읽기 전용]

PRO1_09E [읽기 전용] Siemens AG 1999 All rights reserved File: PRO1_09E1 Information and - ( ) 2 3 4 5 Monitor/Modify Variables" 6 7 8 9 10 11 CPU 12 Stop 13 (Forcing) 14 (1) 15 (2) 16 : 17 : Stop 18 : 19 : (Forcing) 20 :

More information

Tina Admin

Tina Admin Oracle 데이터암호화 Crypto_Package 유니원아이앤씨 DB 사업부이대혁 2014 년 12 월 19 일 문서정보 프로젝트명 ORACLE 암호화 서브시스템명 버전 1.0 문서명 ORACLE 암호화 작성일 2014-12-19 작성자 DB사업부이대혁사원 최종수정일 2014-12-19 문서번호 UNIONE-201402060432-LDH. 재개정이력 일자내용수정인버전

More information

最即時的Sybase ASE Server資料庫診斷工具

最即時的Sybase ASE Server資料庫診斷工具 TOAD 9.5 Toad Oracle 料 SQL 料 行 理 SQLprofile Quest Software 了 Oracle -Toad Tools of Oracle Application Developers Toad 了 DBA DBA 理 易 度 Toad 料 SQL PL/SQL Toad Oracle PL/SQL Toad Schema Browser Schema Browser

More information

Oracle 보안 TDE Author 고요한 Creation Date Last Updated Version V2.0 Copyright(C) 2004 Goodus Inc. All Rights Reserved Version 변경일자

Oracle 보안 TDE Author 고요한 Creation Date Last Updated Version V2.0 Copyright(C) 2004 Goodus Inc. All Rights Reserved Version 변경일자 Oracle 보안 TDE Author 고요한 Creation Date 2011.12.05 Last Updated 2013-04-12 Version V2.0 Copyright(C) 2004 Goodus Inc. All Rights Reserved Version 변경일자 변경자 ( 작성자 ) 주요내용 1.0 2011.12.05 박제헌대리 문서최초작성 1.1 2012-02-02

More information

Intra_DW_Ch4.PDF

Intra_DW_Ch4.PDF The Intranet Data Warehouse Richard Tanler Ch4 : Online Analytic Processing: From Data To Information 2000. 4. 14 All rights reserved OLAP OLAP OLAP OLAP OLAP OLAP is a label, rather than a technology

More information

FD¾ØÅÍÇÁ¶óÀÌÁî(Àå¹Ù²Þ)-ÀÛ¾÷Áß

FD¾ØÅÍÇÁ¶óÀÌÁî(Àå¹Ù²Þ)-ÀÛ¾÷Áß Copyright (c) 1999-2002 FINAL DATA INC. All right reserved Table of Contents 6 Enterprise for Windows 7 8 Enterprise for Windows 10 Enterprise for Windows 11 12 Enterprise for Windows 13 14 Enterprise

More information

PowerPoint Presentation

PowerPoint Presentation Server I/O utilization System I/O utilization V$FILESTAT V$DATAFILE Data files Statspack Performance tools TABLESPACE FILE_NAME PHYRDS PHYBLKRD READTIM PHYWRTS PHYBLKWRT WRITETIM ------------- -----------------------

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

Chap7.PDF

Chap7.PDF Chapter 7 The SUN Intranet Data Warehouse: Architecture and Tools All rights reserved 1 Intranet Data Warehouse : Distributed Networking Computing Peer-to-peer Peer-to-peer:,. C/S Microsoft ActiveX DCOM(Distributed

More information

Solaris Express Developer Edition

Solaris Express Developer Edition Solaris Express Developer Edition : 2008 1 Solaris TM Express Developer Edition Solaris OS. Sun / Solaris, Java, Web 2.0,,. Developer Solaris Express Developer Edition System Requirements. 768MB. SPARC

More information

제목을 입력하세요.

제목을 입력하세요. 1. 4 1.1. SQLGate for Oracle? 4 1.2. 4 1.3. 5 1.4. 7 2. SQLGate for Oracle 9 2.1. 9 2.2. 10 2.3. 10 2.4. 13 3. SQLGate for Oracle 15 3.1. Connection 15 Connect 15 Multi Connect 17 Disconnect 18 3.2. Query

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

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

PowerChute Personal Edition v3.1.0 에이전트 사용 설명서

PowerChute Personal Edition v3.1.0 에이전트 사용 설명서 PowerChute Personal Edition v3.1.0 990-3772D-019 4/2019 Schneider Electric IT Corporation Schneider Electric IT Corporation.. Schneider Electric IT Corporation,,,.,. Schneider Electric IT Corporation..

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

본교재는수업용으로제작된게시물입니다. 영리목적으로사용할경우저작권법제 30 조항에의거법적처벌을받을수있습니다. [ 실습 ] 스위치장비초기화 1. NVRAM 에저장되어있는 'startup-config' 파일이있다면, 삭제를실시한다. SWx>enable SWx#erase sta

본교재는수업용으로제작된게시물입니다. 영리목적으로사용할경우저작권법제 30 조항에의거법적처벌을받을수있습니다. [ 실습 ] 스위치장비초기화 1. NVRAM 에저장되어있는 'startup-config' 파일이있다면, 삭제를실시한다. SWx>enable SWx#erase sta [ 실습 ] 스위치장비초기화 1. NVRAM 에저장되어있는 'startup-config' 파일이있다면, 삭제를실시한다. SWx>enable SWx#erase startup-config Erasing the nvram filesystem will remove all configuration files Continue? [confirm] ( 엔터 ) [OK] Erase

More information

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

Copyright 2012, Oracle and/or its affiliates. All rights reserved.,,,,,,,,,,,,,.,..., U.S. GOVERNMENT END USERS. Oracle programs, including any operat Sun Server X3-2( Sun Fire X4170 M3) Oracle Solaris : E35482 01 2012 9 Copyright 2012, Oracle and/or its affiliates. All rights reserved.,,,,,,,,,,,,,.,..., U.S. GOVERNMENT END USERS. Oracle programs, including

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

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

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

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

FMX M JPG 15MB 320x240 30fps, 160Kbps 11MB View operation,, seek seek Random Access Average Read Sequential Read 12 FMX () 2

FMX M JPG 15MB 320x240 30fps, 160Kbps 11MB View operation,, seek seek Random Access Average Read Sequential Read 12 FMX () 2 FMX FMX 20062 () wwwexellencom sales@exellencom () 1 FMX 1 11 5M JPG 15MB 320x240 30fps, 160Kbps 11MB View operation,, seek seek Random Access Average Read Sequential Read 12 FMX () 2 FMX FMX D E (one

More information

Orcad Capture 9.x

Orcad Capture 9.x OrCAD Capture Workbook (Ver 10.xx) 0 Capture 1 2 3 Capture for window 4.opj ( OrCAD Project file) Design file Programe link file..dsn (OrCAD Design file) Design file..olb (OrCAD Library file) file..upd

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

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

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

Microsoft PowerPoint - 10Àå.ppt

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

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

Business Agility () Dynamic ebusiness, RTE (Real-Time Enterprise) IT Web Services c c WE-SDS (Web Services Enabled SDS) SDS SDS Service-riented Architecture Web Services ( ) ( ) ( ) / c IT / Service- Service-

More information

<3035303432365FC8A8C6E4C0CCC1F620B0B3B9DF20BAB8BEC8B0A1C0CCB5E5C3D6C1BE28C0FAC0DBB1C7BBE8C1A6292E687770>

<3035303432365FC8A8C6E4C0CCC1F620B0B3B9DF20BAB8BEC8B0A1C0CCB5E5C3D6C1BE28C0FAC0DBB1C7BBE8C1A6292E687770> 개 요 홈페이지 해킹 현황 및 사례 홈페이지 개발시 보안 취약점 및 대책 주요 애플리케이션 보안 대책 결 론 참고자료 [부록1] 개발 언어별 로그인 인증 프로세스 예제 [부록2] 대규모 홈페이지 변조 예방을 위한 권고(안) [부록3] 개인정보의 기술적 관리적 보호조치 기준(안) [부록4] 웹 보안관련 주요 사이트 리스트 7000 6,478 6000 5000

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

SMB_ICMP_UDP(huichang).PDF

SMB_ICMP_UDP(huichang).PDF SMB(Server Message Block) UDP(User Datagram Protocol) ICMP(Internet Control Message Protocol) SMB (Server Message Block) SMB? : Microsoft IBM, Intel,. Unix NFS. SMB client/server. Client server request

More information

화판_미용성형시술 정보집.0305

화판_미용성형시술 정보집.0305 CONTENTS 05/ 07/ 09/ 12/ 12/ 13/ 15 30 36 45 55 59 61 62 64 check list 9 10 11 12 13 15 31 37 46 56 60 62 63 65 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43

More information

Interstage5 SOAP서비스 설정 가이드

Interstage5 SOAP서비스 설정 가이드 Interstage 5 Application Server ( Solaris ) SOAP Service Internet Sample Test SOAP Server Application SOAP Client Application CORBA/SOAP Server Gateway CORBA/SOAP Gateway Client INTERSTAGE SOAP Service

More information

Contents 1. Oracle Recovery Manager(RMAN) RMAN이란? RMAN의특징 RMAN의 Channel과 Media Management RMAN CONFIGURE COMMAND.

Contents 1. Oracle Recovery Manager(RMAN) RMAN이란? RMAN의특징 RMAN의 Channel과 Media Management RMAN CONFIGURE COMMAND. Goodus 기술노트 [40 회 ] Recovery Manager(RMAN) Author Author Job Title 김상국 차장 Creation Date 2009-04-30 Last Updated 2009-04-30 Version 1.0 Copyright(C) 2004 Goodus Inc. All Rights Reserved Contents 1. Oracle

More information

초보자를 위한 ADO 21일 완성

초보자를 위한 ADO 21일 완성 ADO 21, 21 Sams Teach Yourself ADO 2.5 in 21 Days., 21., 2 1 ADO., ADO.? ADO 21 (VB, VBA, VB ), ADO. 3 (Week). 1, 2, COM+ 3.. HTML,. 3 (week), ADO. 24 1 - ADO OLE DB SQL, UDA(Universal Data Access) ADO.,,

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

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

목차 BUG 문법에맞지않는질의문수행시, 에러메시지에질의문의일부만보여주는문제를수정합니다... 3 BUG ROUND, TRUNC 함수에서 DATE 포맷 IW 를추가지원합니다... 5 BUG ROLLUP/CUBE 절을포함하는질의는 SUBQUE

목차 BUG 문법에맞지않는질의문수행시, 에러메시지에질의문의일부만보여주는문제를수정합니다... 3 BUG ROUND, TRUNC 함수에서 DATE 포맷 IW 를추가지원합니다... 5 BUG ROLLUP/CUBE 절을포함하는질의는 SUBQUE ALTIBASE HDB 6.3.1.10.1 Patch Notes 목차 BUG-45710 문법에맞지않는질의문수행시, 에러메시지에질의문의일부만보여주는문제를수정합니다... 3 BUG-45730 ROUND, TRUNC 함수에서 DATE 포맷 IW 를추가지원합니다... 5 BUG-45760 ROLLUP/CUBE 절을포함하는질의는 SUBQUERY REMOVAL 변환을수행하지않도록수정합니다....

More information

VOL.76.2008/2 Technical SmartPlant Materials - Document Management SmartPlant Materials에서 기본적인 Document를 관리하고자 할 때 필요한 세팅, 파일 업로드 방법 그리고 Path Type인 Ph

VOL.76.2008/2 Technical SmartPlant Materials - Document Management SmartPlant Materials에서 기본적인 Document를 관리하고자 할 때 필요한 세팅, 파일 업로드 방법 그리고 Path Type인 Ph 인터그래프코리아(주)뉴스레터 통권 제76회 비매품 News Letters Information Systems for the plant Lifecycle Proccess Power & Marine Intergraph 2008 Contents Intergraph 2008 SmartPlant Materials Customer Status 인터그래프(주) 파트너사

More information

NoSQL

NoSQL MongoDB Daum Communications NoSQL Using Java Java VM, GC Low Scalability Using C Write speed Auto Sharding High Scalability Using Erlang Read/Update MapReduce R/U MR Cassandra Good Very Good MongoDB Good

More information

10X56_NWG_KOR.indd

10X56_NWG_KOR.indd 디지털 프로젝터 X56 네트워크 가이드 이 제품을 구입해 주셔서 감사합니다. 본 설명서는 네트워크 기능 만을 설명하기 위한 것입니다. 본 제품을 올바르게 사 용하려면 이 취급절명저와 본 제품의 다른 취급절명저를 참조하시기 바랍니다. 중요한 주의사항 이 제품을 사용하기 전에 먼저 이 제품에 대한 모든 설명서를 잘 읽어 보십시오. 읽은 뒤에는 나중에 필요할 때

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

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

スライド タイトルなし

スライド タイトルなし 2 3 회사 소개 60%출자 40%출자 주식회사 NTT데이타 아이테크 NTT DATA의 영업협력이나 첨단기술제공, 인재육성등 여러가지 지원을 통해서 SII 그룹을 대상으로 고도의 정보 서비스를 제공 함과 동시에 NTT DATA ITEC 가 보유하고 있는 높은 업무 노하우 와 SCM을 비롯한 ERP분야의 기술력을 살려서 조립가공계 및 제조업 등 새로운 시장에

More information

manual pdfÃÖÁ¾

manual pdfÃÖÁ¾ www.oracom.co.kr 1 2 Plug & Play Windows 98SE Windows, Linux, Mac 3 4 5 6 Quick Guide Windows 2000 / ME / XP USB USB MP3, WMA HOLD Windows 98SE "Windows 98SE device driver 7 8 9 10 EQ FM LCD SCN(SCAN)

More information

초보자를 위한 분산 캐시 활용 전략

초보자를 위한 분산 캐시 활용 전략 초보자를위한분산캐시활용전략 강대명 charsyam@naver.com 우리가꿈꾸는서비스 우리가꿈꾸는서비스 우리가꿈꾸는서비스 우리가꿈꾸는서비스 그러나현실은? 서비스에필요한것은? 서비스에필요한것은? 핵심적인기능 서비스에필요한것은? 핵심적인기능 서비스에필요한것은? 핵심적인기능 서비스에필요한것은? 적절한기능 서비스안정성 트위터에매일고래만보이면? 트위터에매일고래만보이면?

More information

Analyst Briefing

Analyst Briefing . Improve your Outlook on Email and File Management iseminar.. 1544(or 6677)-3355 800x600. iseminar Chat... Improve your Outlook on Email and File Management :, 2003 1 29.. Collaboration Suite - Key Messages

More information

LCD Display

LCD Display LCD Display SyncMaster 460DRn, 460DR VCR DVD DTV HDMI DVI to HDMI LAN USB (MDC: Multiple Display Control) PC. PC RS-232C. PC (Serial port) (Serial port) RS-232C.. > > Multiple Display

More information

Oracle Database 10g DATA PUMP_ hwp

Oracle Database 10g DATA PUMP_ hwp > 개요 Data Pump 란? Architecture 와이해 Data Pump Export and Import Data Pump 이점 일반적인구현 파일타입및위치 Data Pump Direct Path 고려사항 Data Pump File

More information

슬라이드 1

슬라이드 1 / 유닉스시스템개요 / 파일 / 프로세스 01 File Descriptor file file descriptor file type unix 에서의파일은단지바이트들의나열임 operating system 은파일에어떤포맷도부과하지않음 파일의내용은바이트단위로주소를줄수있음 file descriptor 는 0 이나양수임 file 은 open 이나 creat 로 file

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

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

DR-M140 사용 설명서

DR-M140 사용 설명서 사용 설명서 본 스캐너를 사용하기 전에 이 설명서를 읽으십시 오. 이 설명서를 다 읽은 후에는 이후에 참조할 수 있 도록 안전한 곳에 보관하십시오. 보증과 A/S 이 제품에는 보증서가 있습니다. 보증서는 구매처에서 받을 수 있습니다. 구매한 날짜 구매처 등의 기 입을 확인한 후 내용을 정확히 읽고 잘 보관하십시오. 보증기간 보증기간은 구매한 날로부터 1년 입니다.

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

ETL_project_best_practice1.ppt

ETL_project_best_practice1.ppt ETL ETL Data,., Data Warehouse DataData Warehouse ETL tool/system: ETL, ETL Process Data Warehouse Platform Database, Access Method Data Source Data Operational Data Near Real-Time Data Modeling Refresh/Replication

More information

Microsoft Word - dataguard_세미나_v1.8.doc

Microsoft Word - dataguard_세미나_v1.8.doc Oracle9i Dataguard 기술서 작성일 : 2005년 3월 24일업데이트 : 2006년 1월 22일 v1.8 Final 작성자 : LG카드중형서버운영파트 DBA 민연홍 Phone : 016-744-0220 E-Mail : ses0124@hanmail.net 목 차 1. dataguard 개요및아키텍처...2 (1) dataguard 란무엇인가?...2

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

세미나(장애와복구-수강생용).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

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

Microsoft Word - s.doc

Microsoft Word - s.doc 오라클 백서 2010년 9월 WebLogic Suite를 위해 최적화된 오라클 솔루션 비즈니스 백서 개요...1 들어가는 글...2 통합 웹 서비스 솔루션을 통해 비즈니스 혁신 추구...3 단순화...4 기민한 환경 구축...5 탁월한 성능 경험...6 판도를 바꾸고 있는 플래시 기술...6 오라클 시스템은 세계 최고의 성능 제공...6 절감 효과 극대화...8

More information

LXR 설치 및 사용법.doc

LXR 설치 및 사용법.doc Installation of LXR (Linux Cross-Reference) for Source Code Reference Code Reference LXR : 2002512( ), : 1/1 1 3 2 LXR 3 21 LXR 3 22 LXR 221 LXR 3 222 LXR 3 3 23 LXR lxrconf 4 24 241 httpdconf 6 242 htaccess

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

다음 사항을 꼭 확인하세요! 도움말 안내 - 본 도움말에는 iodd2511 조작방법 및 활용법이 적혀 있습니다. - 본 제품 사용 전에 안전을 위한 주의사항 을 반드시 숙지하십시오. - 문제가 발생하면 문제해결 을 참조하십시오. 중요한 Data 는 항상 백업 하십시오.

다음 사항을 꼭 확인하세요! 도움말 안내 - 본 도움말에는 iodd2511 조작방법 및 활용법이 적혀 있습니다. - 본 제품 사용 전에 안전을 위한 주의사항 을 반드시 숙지하십시오. - 문제가 발생하면 문제해결 을 참조하십시오. 중요한 Data 는 항상 백업 하십시오. 메 뉴 다음 사항을 꼭 확인하세요! --------------------------------- 2p 안전을 위한 주의 사항 --------------------------------- 3p 구성품 --------------------------------- 4p 각 부분의 명칭 --------------------------------- 5p 제품의 규격

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

Microsoft Word - Automap3

Microsoft Word - Automap3 사 용 설 명 서 본 설명서는 뮤직메트로에서 제공합니다. 순 서 소개 -------------------------------------------------------------------------------------------------------------------------------------------- 3 제품 등록 --------------------------------------------------------------------------------------------------------------------------------------

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

초보자를 위한 C++

초보자를 위한 C++ C++. 24,,,,, C++ C++.,..,., ( ). /. ( 4 ) ( ).. C++., C++ C++. C++., 24 C++. C? C++ C C, C++ (Stroustrup) C++, C C++. C. C 24.,. C. C+ +?. X C++.. COBOL COBOL COBOL., C++. Java C# C++, C++. C++. Java C#

More information