-
I am geting the following error while taking an export of certain tables.
EXP-00015: error on row 4529454 of table CUST_STATUS_HISTORY, column INSERT_DT, datatype 12
EXP-00002: error in writing to export file
EXP-00002: error in writing to export fileerror closing export file
EXP-00000: Export terminated unsuccessfully
~
~
can anybody provide a solution.
-
do :
select insert_dt
from cust_status_history
where rowid = (
select rowid from cust_status_history
where rownum <= 4529454
minus
select rowid from cust_status_history
where rownum < 4529454)
and you'll get the data which caused a problem ...
note that the error might be caused by the OS, not exp. was the filesystem (or HD) full ???
-
maybe you just hit the maximum file size allowed, and that you can no longer continue such task if your O.S. doesn't allow to enable large file system.
What is the actual size of the exp dump file?