복사되었습니다!
OS 환경 : Oracle Linux 8.7 (64bit)
DB 환경 : Oracle Database 19.31.0.0
방법 : 오라클 19c datapump 상세 로그 확인 METRICS, LOGTIME 옵션
본문에서는 datapump시 상세 로그를 확인할 수 있는 METRICS, LOGTIME 옵션을 테스트해봄
참고로 이 기능은 11gR2부터 사용가능하다고 함
테스트
METRICS, LOGTIME 옵션 없이 impdp 수행
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
$ impdp system/oracle \
DIRECTORY=dp_test_dir \
DUMPFILE=expdp_validate_test.dmp \
LOGFILE=impdp_user2_normal.log \
REMAP_SCHEMA=user1:user2 \
TABLES=user1.emp_test \
METRICS=Y \
LOGTIME=ALL \
TABLE_EXISTS_ACTION=TRUNCATE
Import: Release 19.0.0.0.0 - Production on Fri May 29 23:54:48 2026
Version 19.31.0.0.0
Copyright (c) 1982, 2019, Oracle and/or its affiliates. All rights reserved.
Connected to: Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production
Master table "SYSTEM"."SYS_IMPORT_TABLE_01" successfully loaded/unloaded
Starting "SYSTEM"."SYS_IMPORT_TABLE_01": system/******** DIRECTORY=dp_test_dir DUMPFILE=expdp_validate_test.dmp LOGFILE=impdp_user2_normal.log REMAP_SCHEMA=user1:user2 TABLES=user1.emp_test TABLE_EXISTS_ACTION=TRUNCATE
Processing object type SCHEMA_EXPORT/TABLE/TABLE
Table "USER2"."EMP_TEST" exists and has been truncated. Data will be loaded but all dependent metadata will be skipped due to table_exists_action of truncate
Processing object type SCHEMA_EXPORT/TABLE/TABLE_DATA
. . imported "USER2"."EMP_TEST" 660.7 MB 5000000 rows
Processing object type SCHEMA_EXPORT/TABLE/INDEX/INDEX
Processing object type SCHEMA_EXPORT/TABLE/CONSTRAINT/CONSTRAINT
Processing object type SCHEMA_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
Processing object type SCHEMA_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT
Processing object type SCHEMA_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
Processing object type SCHEMA_EXPORT/STATISTICS/MARKER
Job "SYSTEM"."SYS_IMPORT_TABLE_01" successfully completed at Fri May 29 23:55:56 2026 elapsed 0 00:01:07
|
일반적인 impdp 로그는 간단하게 표시됨
METRICS, LOGTIME 옵션 사용하여 impdp 수행
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
$ impdp system/oracle \
DIRECTORY=dp_test_dir \
DUMPFILE=expdp_validate_test.dmp \
LOGFILE=impdp_user2_normal.log \
REMAP_SCHEMA=user1:user2 \
TABLES=user1.emp_test \
METRICS=Y \
LOGTIME=ALL \
TABLE_EXISTS_ACTION=TRUNCATE
Import: Release 19.0.0.0.0 - Production on Sat May 30 00:27:06 2026
Version 19.31.0.0.0
Copyright (c) 1982, 2019, Oracle and/or its affiliates. All rights reserved.
Connected to: Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production
30-MAY-26 00:27:08.024: W-1 Startup took 1 seconds
30-MAY-26 00:27:08.299: W-1 Master table "SYSTEM"."SYS_IMPORT_TABLE_01" successfully loaded/unloaded
30-MAY-26 00:27:08.478: Starting "SYSTEM"."SYS_IMPORT_TABLE_01": system/******** DIRECTORY=dp_test_dir DUMPFILE=expdp_validate_test.dmp LOGFILE=impdp_user2_normal.log REMAP_SCHEMA=user1:user2 TABLES=user1.emp_test METRICS=Y LOGTIME=ALL TABLE_EXISTS_ACTION=TRUNCATE
30-MAY-26 00:27:08.546: W-1 Processing object type SCHEMA_EXPORT/TABLE/TABLE
30-MAY-26 00:27:08.803: W-1 Table "USER2"."EMP_TEST" exists and has been truncated. Data will be loaded but all dependent metadata will be skipped due to table_exists_action of truncate
30-MAY-26 00:27:08.824: W-1 Completed 1 TABLE objects in 0 seconds
30-MAY-26 00:27:08.834: W-1 Processing object type SCHEMA_EXPORT/TABLE/TABLE_DATA
30-MAY-26 00:28:15.609: W-1 . . imported "USER2"."EMP_TEST" 660.7 MB 5000000 rows in 67 seconds using external_table <<--!!
30-MAY-26 00:28:15.623: W-1 Processing object type SCHEMA_EXPORT/TABLE/INDEX/INDEX
30-MAY-26 00:28:15.660: W-1 Completed 2 INDEX objects in 0 seconds
30-MAY-26 00:28:15.660: W-1 Processing object type SCHEMA_EXPORT/TABLE/CONSTRAINT/CONSTRAINT
30-MAY-26 00:28:15.687: W-1 Completed 1 CONSTRAINT objects in 0 seconds
30-MAY-26 00:28:15.687: W-1 Processing object type SCHEMA_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
30-MAY-26 00:28:15.724: W-1 Completed 3 INDEX_STATISTICS objects in 0 seconds
30-MAY-26 00:28:15.724: W-1 Processing object type SCHEMA_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT
30-MAY-26 00:28:15.753: W-1 Completed 1 REF_CONSTRAINT objects in 0 seconds
30-MAY-26 00:28:15.753: W-1 Processing object type SCHEMA_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
30-MAY-26 00:28:15.774: W-1 Completed 1 TABLE_STATISTICS objects in 0 seconds
30-MAY-26 00:28:15.774: W-1 Processing object type SCHEMA_EXPORT/STATISTICS/MARKER
30-MAY-26 00:28:15.797: W-1 Completed 1 MARKER objects in 0 seconds
30-MAY-26 00:28:15.816: W-1 Completed 1 SCHEMA_EXPORT/TABLE/TABLE_DATA objects in 67 seconds
30-MAY-26 00:28:15.823: Job "SYSTEM"."SYS_IMPORT_TABLE_01" successfully completed at Sat May 30 00:28:15 2026 elapsed 0 00:01:08
|
기존 로그보다 상세하게 표시됨, 각 단계별로 몇초가 소요되었는지 표시됨
그리고 datapump시 direct path로 동작했는지 external table로 동작했는지도 표시됨
참고용1. direct path로 동작했을때의 로그
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
Import: Release 19.0.0.0.0 - Production on Sat May 30 00:31:01 2026
Version 19.31.0.0.0
Copyright (c) 1982, 2019, Oracle and/or its affiliates. All rights reserved.
Connected to: Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production
30-MAY-26 00:31:03.568: W-1 Startup took 0 seconds
30-MAY-26 00:31:03.789: W-1 Master table "SYSTEM"."SYS_IMPORT_TABLE_01" successfully loaded/unloaded
30-MAY-26 00:31:03.958: Starting "SYSTEM"."SYS_IMPORT_TABLE_01": system/******** DIRECTORY=dp_test_dir DUMPFILE=expdp_validate_test.dmp LOGFILE=impdp_user3_manual.log REMAP_SCHEMA=user1:user3 TABLES=user1.emp_test METRICS=Y LOGTIME=ALL TABLE_EXISTS_ACTION=TRUNCATE
30-MAY-26 00:31:04.030: W-1 Processing object type SCHEMA_EXPORT/TABLE/TABLE
30-MAY-26 00:31:04.282: W-1 Table "USER3"."EMP_TEST" exists and has been truncated. Data will be loaded but all dependent metadata will be skipped due to table_exists_action of truncate
30-MAY-26 00:31:04.302: W-1 Completed 1 TABLE objects in 0 seconds
30-MAY-26 00:31:04.321: W-1 Processing object type SCHEMA_EXPORT/TABLE/TABLE_DATA
30-MAY-26 00:31:20.206: W-1 . . imported "USER3"."EMP_TEST" 660.7 MB 5000000 rows in 13 seconds using direct_path <<--!!
30-MAY-26 00:31:20.221: W-1 Processing object type SCHEMA_EXPORT/TABLE/INDEX/INDEX
30-MAY-26 00:31:20.255: W-1 Completed 2 INDEX objects in 0 seconds
30-MAY-26 00:31:20.255: W-1 Processing object type SCHEMA_EXPORT/TABLE/CONSTRAINT/CONSTRAINT
30-MAY-26 00:31:20.286: W-1 Completed 1 CONSTRAINT objects in 0 seconds
30-MAY-26 00:31:20.286: W-1 Processing object type SCHEMA_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
30-MAY-26 00:31:20.306: W-1 Completed 3 INDEX_STATISTICS objects in 0 seconds
30-MAY-26 00:31:20.306: W-1 Processing object type SCHEMA_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT
30-MAY-26 00:31:20.335: W-1 Completed 1 REF_CONSTRAINT objects in 0 seconds
30-MAY-26 00:31:20.335: W-1 Processing object type SCHEMA_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
30-MAY-26 00:31:20.354: W-1 Completed 1 TABLE_STATISTICS objects in 0 seconds
30-MAY-26 00:31:20.354: W-1 Processing object type SCHEMA_EXPORT/STATISTICS/MARKER
30-MAY-26 00:31:20.375: W-1 Completed 1 MARKER objects in 0 seconds
30-MAY-26 00:31:20.395: W-1 Completed 1 SCHEMA_EXPORT/TABLE/TABLE_DATA objects in 13 seconds
30-MAY-26 00:31:20.405: Job "SYSTEM"."SYS_IMPORT_TABLE_01" successfully completed at Sat May 30 00:31:20 2026 elapsed 0 00:00:17
|
imported 부분에 660.7 MB 5000000 rows in 13 seconds using direct_path라고 표시됨
참고용2. full expdp시 로그
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
|
$ expdp system/oracle \
DIRECTORY=dp_test_dir \
DUMPFILE=expdp_full_test.dmp \
LOGFILE=expdp_full_test.log \
METRICS=Y \
LOGTIME=ALL \
FULL=Y
Export: Release 19.0.0.0.0 - Production on Sat May 30 00:39:30 2026
Version 19.31.0.0.0
Copyright (c) 1982, 2019, Oracle and/or its affiliates. All rights reserved.
Connected to: Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production
30-MAY-26 00:39:33.496: Starting "SYSTEM"."SYS_EXPORT_FULL_01": system/******** DIRECTORY=dp_test_dir DUMPFILE=expdp_full_test.dmp LOGFILE=expdp_full_test.log METRICS=Y LOGTIME=ALL FULL=Y
30-MAY-26 00:39:33.929: W-1 Startup took 0 seconds
30-MAY-26 00:39:38.011: W-1 Processing object type DATABASE_EXPORT/EARLY_OPTIONS/VIEWS_AS_TABLES/TABLE_DATA
30-MAY-26 00:39:39.323: W-1 Processing object type DATABASE_EXPORT/NORMAL_OPTIONS/TABLE_DATA
30-MAY-26 00:39:40.569: W-1 Processing object type DATABASE_EXPORT/NORMAL_OPTIONS/VIEWS_AS_TABLES/TABLE_DATA
30-MAY-26 00:39:41.783: W-1 Processing object type DATABASE_EXPORT/SCHEMA/TABLE/TABLE_DATA
30-MAY-26 00:39:41.993: W-1 Processing object type DATABASE_EXPORT/SCHEMA/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
30-MAY-26 00:39:42.040: W-1 Completed 16 INDEX_STATISTICS objects in 1 seconds
30-MAY-26 00:39:42.246: W-1 Processing object type DATABASE_EXPORT/SCHEMA/TABLE/STATISTICS/TABLE_STATISTICS
30-MAY-26 00:39:42.254: W-1 Completed 8 TABLE_STATISTICS objects in 0 seconds
30-MAY-26 00:39:49.044: W-1 Processing object type DATABASE_EXPORT/STATISTICS/MARKER
30-MAY-26 00:39:49.250: W-1 Completed 1 MARKER objects in 7 seconds
30-MAY-26 00:39:49.262: W-1 Processing object type DATABASE_EXPORT/PRE_SYSTEM_IMPCALLOUT/MARKER
30-MAY-26 00:39:49.265: W-1 Completed 1 MARKER objects in 7 seconds
30-MAY-26 00:39:49.275: W-1 Processing object type DATABASE_EXPORT/PRE_INSTANCE_IMPCALLOUT/MARKER
30-MAY-26 00:39:49.278: W-1 Completed 1 MARKER objects in 7 seconds
30-MAY-26 00:39:49.342: W-1 Processing object type DATABASE_EXPORT/TABLESPACE
30-MAY-26 00:39:49.354: W-1 Completed 3 TABLESPACE objects in 0 seconds
30-MAY-26 00:39:49.552: W-1 Processing object type DATABASE_EXPORT/PROFILE
30-MAY-26 00:39:49.557: W-1 Completed 1 PROFILE objects in 0 seconds
30-MAY-26 00:39:49.667: W-1 Processing object type DATABASE_EXPORT/SCHEMA/USER
30-MAY-26 00:39:49.673: W-1 Completed 4 USER objects in 0 seconds
30-MAY-26 00:39:49.738: W-1 Processing object type DATABASE_EXPORT/RADM_FPTM
30-MAY-26 00:39:49.743: W-1 Completed 1 RADM_FPTM objects in 0 seconds
30-MAY-26 00:39:50.302: W-1 Processing object type DATABASE_EXPORT/GRANT/SYSTEM_GRANT/PROC_SYSTEM_GRANT
30-MAY-26 00:39:50.308: W-1 Completed 6 PROC_SYSTEM_GRANT objects in 1 seconds
30-MAY-26 00:39:50.413: W-1 Processing object type DATABASE_EXPORT/SCHEMA/GRANT/SYSTEM_GRANT
30-MAY-26 00:39:50.443: W-1 Completed 74 SYSTEM_GRANT objects in 0 seconds
30-MAY-26 00:39:50.478: W-1 Processing object type DATABASE_EXPORT/SCHEMA/ROLE_GRANT
30-MAY-26 00:39:50.499: W-1 Completed 52 ROLE_GRANT objects in 0 seconds
30-MAY-26 00:39:50.526: W-1 Processing object type DATABASE_EXPORT/SCHEMA/DEFAULT_ROLE
30-MAY-26 00:39:50.532: W-1 Completed 4 DEFAULT_ROLE objects in 0 seconds
30-MAY-26 00:39:50.560: W-1 Processing object type DATABASE_EXPORT/SCHEMA/ON_USER_GRANT
30-MAY-26 00:39:50.565: W-1 Completed 4 ON_USER_GRANT objects in 0 seconds
30-MAY-26 00:39:50.632: W-1 Processing object type DATABASE_EXPORT/SCHEMA/TABLESPACE_QUOTA
30-MAY-26 00:39:50.639: W-1 Completed 4 TABLESPACE_QUOTA objects in 0 seconds
30-MAY-26 00:39:50.660: W-1 Processing object type DATABASE_EXPORT/RESOURCE_COST
30-MAY-26 00:39:50.666: W-1 Completed 1 RESOURCE_COST objects in 0 seconds
30-MAY-26 00:39:50.803: W-1 Processing object type DATABASE_EXPORT/TRUSTED_DB_LINK
30-MAY-26 00:39:50.808: W-1 Completed 1 TRUSTED_DB_LINK objects in 0 seconds
30-MAY-26 00:39:50.897: W-1 Processing object type DATABASE_EXPORT/DIRECTORY/DIRECTORY
30-MAY-26 00:39:50.903: W-1 Completed 1 DIRECTORY objects in 0 seconds
30-MAY-26 00:39:52.720: W-1 Processing object type DATABASE_EXPORT/SYSTEM_PROCOBJACT/PRE_SYSTEM_ACTIONS/PROCACT_SYSTEM
30-MAY-26 00:39:53.012: W-1 Completed 2 PROCACT_SYSTEM objects in 1 seconds
30-MAY-26 00:39:53.316: W-1 Processing object type DATABASE_EXPORT/SYSTEM_PROCOBJACT/PROCOBJ
30-MAY-26 00:39:53.328: W-1 Completed 23 PROCOBJ objects in 0 seconds
30-MAY-26 00:39:54.114: W-1 Processing object type DATABASE_EXPORT/SYSTEM_PROCOBJACT/POST_SYSTEM_ACTIONS/PROCACT_SYSTEM
30-MAY-26 00:39:54.172: W-1 Completed 3 PROCACT_SYSTEM objects in 1 seconds
30-MAY-26 00:39:54.733: W-1 Processing object type DATABASE_EXPORT/SCHEMA/PROCACT_SCHEMA
30-MAY-26 00:39:54.740: W-1 Completed 7 PROCACT_SCHEMA objects in 0 seconds
30-MAY-26 00:40:03.032: W-1 Processing object type DATABASE_EXPORT/EARLY_OPTIONS/VIEWS_AS_TABLES/TABLE
30-MAY-26 00:40:03.039: W-1 Completed 1 TABLE objects in 6 seconds
30-MAY-26 00:40:03.049: W-1 Processing object type DATABASE_EXPORT/EARLY_POST_INSTANCE_IMPCALLOUT/MARKER
30-MAY-26 00:40:03.053: W-1 Completed 1 MARKER objects in 0 seconds
30-MAY-26 00:40:20.078: W-1 Processing object type DATABASE_EXPORT/NORMAL_OPTIONS/TABLE
30-MAY-26 00:40:41.317: W-1 Completed 41 TABLE objects in 38 seconds
30-MAY-26 00:40:46.223: W-1 Processing object type DATABASE_EXPORT/NORMAL_OPTIONS/VIEWS_AS_TABLES/TABLE
30-MAY-26 00:41:02.066: W-1 Completed 17 TABLE objects in 21 seconds
30-MAY-26 00:41:02.079: W-1 Processing object type DATABASE_EXPORT/NORMAL_POST_INSTANCE_IMPCALLOUT/MARKER
30-MAY-26 00:41:02.082: W-1 Completed 1 MARKER objects in 0 seconds
30-MAY-26 00:41:03.686: W-1 Processing object type DATABASE_EXPORT/SCHEMA/TABLE/TABLE
30-MAY-26 00:41:16.814: W-1 Completed 8 TABLE objects in 14 seconds
30-MAY-26 00:41:17.900: W-1 Processing object type DATABASE_EXPORT/SCHEMA/TABLE/COMMENT
30-MAY-26 00:41:20.678: W-1 Processing object type DATABASE_EXPORT/SCHEMA/TABLE/INDEX/INDEX
30-MAY-26 00:41:20.716: W-1 Completed 8 INDEX objects in 1 seconds
30-MAY-26 00:41:23.073: W-1 Processing object type DATABASE_EXPORT/SCHEMA/TABLE/CONSTRAINT/CONSTRAINT
30-MAY-26 00:41:23.082: W-1 Completed 8 CONSTRAINT objects in 3 seconds
30-MAY-26 00:41:23.633: W-1 Processing object type DATABASE_EXPORT/SCHEMA/TABLE/CONSTRAINT/REF_CONSTRAINT
30-MAY-26 00:41:23.640: W-1 Completed 4 REF_CONSTRAINT objects in 0 seconds
30-MAY-26 00:41:24.932: W-1 Processing object type DATABASE_EXPORT/FINAL_POST_INSTANCE_IMPCALLOUT/MARKER
30-MAY-26 00:41:24.935: W-1 Completed 1 MARKER objects in 0 seconds
30-MAY-26 00:41:27.919: W-1 Processing object type DATABASE_EXPORT/SCHEMA/POST_SCHEMA/PROCACT_SCHEMA
30-MAY-26 00:41:27.924: W-1 Completed 1 PROCACT_SCHEMA objects in 2 seconds
30-MAY-26 00:41:29.280: W-1 Processing object type DATABASE_EXPORT/AUDIT_UNIFIED/AUDIT_POLICY_ENABLE
30-MAY-26 00:41:29.286: W-1 Completed 2 AUDIT_POLICY_ENABLE objects in 0 seconds
30-MAY-26 00:41:29.427: W-1 Processing object type DATABASE_EXPORT/POST_SYSTEM_IMPCALLOUT/MARKER
30-MAY-26 00:41:29.430: W-1 Completed 1 MARKER objects in 0 seconds
30-MAY-26 00:41:31.411: W-1 . . exported "SYS"."KU$_USER_MAPPING_VIEW" 5.906 KB 27 rows in 2 seconds using external_table
30-MAY-26 00:41:32.000: W-1 . . exported "AUDSYS"."AUD$UNIFIED":"SYS_P181" 16.74 MB 6450 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.075: W-1 . . exported "WMSYS"."WM$CONSTRAINTS_TABLE$" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.095: W-1 . . exported "SYS"."AUD$" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.117: W-1 . . exported "WMSYS"."WM$LOCKROWS_INFO$" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.123: W-1 . . exported "WMSYS"."WM$UDTRIG_INFO$" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.201: W-1 . . exported "SYSTEM"."REDO_DB" 25.59 KB 1 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.252: W-1 . . exported "WMSYS"."WM$WORKSPACES_TABLE$" 12.10 KB 1 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.286: W-1 . . exported "WMSYS"."WM$HINT_TABLE$" 9.992 KB 97 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.354: W-1 . . exported "WMSYS"."WM$WORKSPACE_PRIV_TABLE$" 7.085 KB 11 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.392: W-1 . . exported "SYS"."DAM_CONFIG_PARAM$" 6.531 KB 14 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.437: W-1 . . exported "SYS"."TSDP_SUBPOL$" 6.328 KB 1 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.501: W-1 . . exported "WMSYS"."WM$NEXTVER_TABLE$" 6.382 KB 1 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.550: W-1 . . exported "WMSYS"."WM$ENV_VARS$" 6.023 KB 3 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.602: W-1 . . exported "SYS"."TSDP_PARAMETER$" 5.953 KB 1 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.649: W-1 . . exported "SYS"."TSDP_POLICY$" 5.921 KB 1 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.681: W-1 . . exported "WMSYS"."WM$VERSION_HIERARCHY_TABLE$" 5.984 KB 1 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.740: W-1 . . exported "WMSYS"."WM$EVENTS_INFO$" 5.820 KB 12 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.743: W-1 . . exported "AUDSYS"."AUD$UNIFIED":"AUD_UNIFIED_P0" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.760: W-1 . . exported "SYS"."DAM_CLEANUP_EVENTS$" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.767: W-1 . . exported "SYS"."DAM_CLEANUP_JOBS$" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.772: W-1 . . exported "SYS"."TSDP_ASSOCIATION$" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.790: W-1 . . exported "SYS"."TSDP_CONDITION$" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.801: W-1 . . exported "SYS"."TSDP_FEATURE_POLICY$" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.809: W-1 . . exported "SYS"."TSDP_PROTECTION$" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.825: W-1 . . exported "SYS"."TSDP_SENSITIVE_DATA$" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.834: W-1 . . exported "SYS"."TSDP_SENSITIVE_TYPE$" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.854: W-1 . . exported "SYS"."TSDP_SOURCE$" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.859: W-1 . . exported "SYSTEM"."REDO_LOG" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.864: W-1 . . exported "WMSYS"."WM$BATCH_COMPRESSIBLE_TABLES$" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.874: W-1 . . exported "WMSYS"."WM$CONS_COLUMNS$" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.879: W-1 . . exported "WMSYS"."WM$MODIFIED_TABLES$" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.888: W-1 . . exported "WMSYS"."WM$MP_GRAPH_WORKSPACES_TABLE$" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.895: W-1 . . exported "WMSYS"."WM$MP_PARENT_WORKSPACES_TABLE$" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.906: W-1 . . exported "WMSYS"."WM$NESTED_COLUMNS_TABLE$" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.928: W-1 . . exported "WMSYS"."WM$RESOLVE_WORKSPACES_TABLE$" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.933: W-1 . . exported "WMSYS"."WM$RIC_LOCKING_TABLE$" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.937: W-1 . . exported "WMSYS"."WM$RIC_TABLE$" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.942: W-1 . . exported "WMSYS"."WM$RIC_TRIGGERS_TABLE$" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.947: W-1 . . exported "WMSYS"."WM$UDTRIG_DISPATCH_PROCS$" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.952: W-1 . . exported "WMSYS"."WM$VERSION_TABLE$" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.956: W-1 . . exported "WMSYS"."WM$VT_ERRORS_TABLE$" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:32.961: W-1 . . exported "WMSYS"."WM$WORKSPACE_SAVEPOINTS_TABLE$" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:33.017: W-1 . . exported "SYS"."FGA_LOG$FOR_EXPORT" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:33.044: W-1 . . exported "SYS"."SQL$TEXT_DATAPUMP" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:33.060: W-1 . . exported "SYS"."SQLOBJ$DATA_DATAPUMP" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:33.077: W-1 . . exported "SYS"."SQL$_DATAPUMP" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:33.085: W-1 . . exported "SYS"."SQLOBJ$AUXDATA_DATAPUMP" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:33.092: W-1 . . exported "SYS"."SQLOBJ$PLAN_DATAPUMP" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:33.099: W-1 . . exported "SYS"."SQLOBJ$_DATAPUMP" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:33.167: W-1 . . exported "SYSTEM"."SCHEDULER_JOB_ARGS" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:33.211: W-1 . . exported "SYSTEM"."SCHEDULER_PROGRAM_ARGS" 0 KB 0 rows in 0 seconds using direct_path
30-MAY-26 00:41:47.936: W-1 . . exported "WMSYS"."WM$EXP_MAP" 7.718 KB 3 rows in 13 seconds using external_table
30-MAY-26 00:41:47.947: W-1 . . exported "WMSYS"."WM$METADATA_MAP" 0 KB 0 rows in 0 seconds using external_table
30-MAY-26 00:41:48.241: W-1 . . exported "SYS"."AUDTAB$TBS$FOR_EXPORT" 5.960 KB 2 rows in 1 seconds using external_table
30-MAY-26 00:41:48.262: W-1 . . exported "SYS"."DBA_SENSITIVE_DATA" 0 KB 0 rows in 0 seconds using external_table
30-MAY-26 00:41:48.277: W-1 . . exported "SYS"."DBA_TSDP_POLICY_PROTECTION" 0 KB 0 rows in 0 seconds using external_table
30-MAY-26 00:41:48.462: W-1 . . exported "SYS"."NACL$_ACE_EXP" 0 KB 0 rows in 0 seconds using external_table
30-MAY-26 00:41:48.682: W-1 . . exported "SYS"."NACL$_HOST_EXP" 6.984 KB 2 rows in 0 seconds using external_table
30-MAY-26 00:41:48.688: W-1 . . exported "SYS"."NACL$_WALLET_EXP" 0 KB 0 rows in 0 seconds using external_table
30-MAY-26 00:41:51.314: W-1 . . exported "USER1"."EMP_TEST" 660.7 MB 5000000 rows in 3 seconds using direct_path
30-MAY-26 00:41:51.390: W-1 . . exported "USER1"."DEPT_TEST" 6.937 KB 100 rows in 0 seconds using direct_path
30-MAY-26 00:41:51.427: W-1 . . exported "USER2"."DEPT_TEST" 6.937 KB 100 rows in 0 seconds using direct_path
30-MAY-26 00:41:53.953: W-1 . . exported "USER2"."EMP_TEST" 660.7 MB 5000000 rows in 1 seconds using direct_path
30-MAY-26 00:41:54.016: W-1 . . exported "USER3"."DEPT_TEST" 6.937 KB 100 rows in 1 seconds using direct_path
30-MAY-26 00:41:55.353: W-1 . . exported "USER3"."EMP_TEST" 660.7 MB 5000000 rows in 1 seconds using direct_path
30-MAY-26 00:41:55.390: W-1 . . exported "USER4"."DEPT_TEST" 6.937 KB 100 rows in 0 seconds using direct_path
30-MAY-26 00:41:57.302: W-1 . . exported "USER4"."EMP_TEST" 660.7 MB 5000000 rows in 2 seconds using direct_path
30-MAY-26 00:41:58.610: W-1 Completed 1 DATABASE_EXPORT/EARLY_OPTIONS/VIEWS_AS_TABLES/TABLE_DATA objects in 2 seconds
30-MAY-26 00:41:58.614: W-1 Completed 42 DATABASE_EXPORT/NORMAL_OPTIONS/TABLE_DATA objects in 1 seconds
30-MAY-26 00:41:58.618: W-1 Completed 17 DATABASE_EXPORT/NORMAL_OPTIONS/VIEWS_AS_TABLES/TABLE_DATA objects in 15 seconds
30-MAY-26 00:41:58.622: W-1 Completed 8 DATABASE_EXPORT/SCHEMA/TABLE/TABLE_DATA objects in 9 seconds
30-MAY-26 00:41:59.920: W-1 Master table "SYSTEM"."SYS_EXPORT_FULL_01" successfully loaded/unloaded
30-MAY-26 00:41:59.927: ******************************************************************************
30-MAY-26 00:41:59.928: Dump file set for SYSTEM.SYS_EXPORT_FULL_01 is:
30-MAY-26 00:41:59.932: /app/oracle/datapump/expdp_full_test.dmp
30-MAY-26 00:41:59.947: Job "SYSTEM"."SYS_EXPORT_FULL_01" successfully completed at Sat May 30 00:41:59 2026 elapsed 0 00:02:28
|
결론 :
datapump 사용시 METRICS, LOGTIME 옵션을 사용하면 상세 로그를 확인 할 수 있음
참조 :
https://docs.oracle.com/en/database/oracle/oracle-database/19/sutil/datapump-import-utility.html#GUID-02545263-7E0B-4314-AC93-80D3F28DF6AA
https://docs.oracle.com/en/database/oracle/oracle-database/19/sutil/datapump-import-utility.html#GUID-602BF900-AFB3-43D6-BE86-06BFB5BAD0FE
'ORACLE > Admin' 카테고리의 다른 글
| 오라클 19c ACFS 경로 변경 테스트 (0) | 2026.06.06 |
|---|---|
| 오라클 19c ACFS 구성 테스트 (0) | 2026.06.06 |
| 오라클 19c DCN(Database Change Notification) 기능 테스트 (0) | 2026.05.29 |
| 오라클 19c OPatch 이용 비활성 패치 제거 (0) | 2026.05.28 |
| 오라클 19c AutoUpgrade를 이용해 패치 다운로드 방법 (0) | 2026.05.10 |
