Index
For example: ORA-01659
#> oerr ora 1659
For example: IMP-00032
#> oerr imp 32
Ans:
#> imp system/oracle buffer=1000000 .....
If it's still not working, try to find out the value of the SQL_LENGTH with the following command:
In the source DB you need to run
SQL> select dbms_lob.getlength (dbms_metadata.get_ddl('TABLE','<table-name>','<owner-name>')) "SQL_LENGTH" from dual; SQL_LENGTH ---------- 71203
NOTE: the table name can be one of the tables failed on import.
Ans: Solution