본문 바로가기

datapump4

DATAPUMP 암호화 DATAPUMP 사용시 ENCRYPTION 옵션 사용을 통하여 암호화를 진행 할 수 있다. ENCRYPTION 의 옵션은 ALL, DATA_ONLY, ENCRYPTED_COLUMNS_ONLY, METADATA_ONLY and NONE 이 있으며, ENCRYPTION_ALGORITHM 은 AES128(기본 값), AES192 and AES256 이 있다. 아래는 test_20170119 테이블을 ENCRYPTION 옵션으로 export 하는 예제이다. expdp \" / as sysdba\" dumpfile=MST_1st.dmp logfile=MST_1st.log directory=EXP_HOON tables=\(hoon.test_20170119\) ENCRYPTION=DATA_ONLY ENCRYPTION.. 2017. 1. 19.
datapump ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Datapump ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ - 10g 이전 버전에서 export/import는 열악한 속도를 불구하고 마이그레이션을 위해 사용한유틸리티였다. (일반적으로 insert into 명령을 사용해 대상 테이블에 삽입하기 때문에 import process는 속도가 느렸다.) - Datapump는 Oracle 10g 유틸리티로 데이터의 이동 기능이 크게 향상되었다. - Datapump는 일반적인 SQL을 사용하는 대신 API로 load, unload를 한다. - export/import와 Datapump는 서로 호환되지 않는다. ━━━.. 2012. 6. 20.
DataPump * DataPump * - Oracle Database data와 metadata의 이동을 위한 Tool Oracle 9i까지 사용되던 export, import 유틸리티보다 더욱더 향상된 성능을 가지고 있다. DataPump 준비 단계 -- DBA 권한 이상으로 로그인 CONNECT /as sysdba -- DataPump를 위한 Directory 생성 CREATE OR REPLACE DIRECTORY dpump_dir AS '/oracle/app/oracle/product/10.2.0/datapump'; -- 생성한 Directory에 Read, Write 권한 할당 GRANT READ, WRITE ON DIRECTORY dpump_dir TO system; -- Directory 확인 set lines.. 2008. 10. 17.
Transportable Tablespaces Transportable Tablespaces by Jeff Hunter, Sr. Database Administrator Contents Overview Introduction to Transportable Tablespaces Using Transportable Tablespaces Overview Oracle's Transportable Tablespace is one of those much awaited features that was introduced in Oracle8i (8.1.5) and is commonly used in Data Warehouses (DW). Using transportable tablespaces is much faster than using other utilit.. 2008. 10. 17.