Resolving ORA-02374: conversion error loading table during impdp
error loading table “SCHEMA”.”TABLENAME”
for column MINE_TEXT (actual: 66, maximum: 64)
ORA-02372: data for row:
MINE_TEXT : 0X’45737061C3B16F6C2020202020202020202020202020202020′
expdp and created a dump for the table: SCHEMA.TABLENAME
doing a impdp on the target database :
error loading table “SCHEMA”.”TABLENAME”
for column MINE_TEXT (actual: 66, maximum: 64)
ORA-02372: data for row:
MINE_TEXT : 0X’45737061C3B16F6C2020202020202020202020202020202020′
table, you will see that the column MINE_TEXT is char(64):
——– —————————-
NULL NUMBER(5)
NULL NUMBER(5)
modify the column of the table:
modify MINE_TEXT CHAR(66);
using the below command:
impdp
directory=DATA_PUMP_DIR dumpfile=MINE_USR.dmp logfile=MINE_USR.log
tables=SCHEMA.TABLENAME table_exists_action=truncate