Hi

I've got a problem with the import,I've got no error in the log except the messages skipping table in the log
and nothing is created at the end.

I've got two database :
Db1 oracle 8 NLS_CHARACTERSET WE8ISO8859P1
with Arcelowner has the _imp_full_database and exp_full_database rights

Db2 oracle 9 NLS_CHARACTERSET UTF8
I created a user Arcelowner with the imp_full_database right
I created a tablespace with the same name where are the table for the db1

***************************************************
script
******************************************************
I ran in the script

NLS_LANG=American_America.WE8ISO8859P1;
export NLS_LANG;
exp userid='arcelowner/arcelowner'
file=out/expdat8arcelowner-arcelowner
log=log/expdat8arcelowner-arcelowner.log owner=arcelowner buffer=100000000;

the first log is perfect.

After I ran The second script
NLS_LANG=American_America.WE8ISO8859P1;
export NLS_LANG;

imp USERID='arcelowner/arcelowner'
file=/home/ceres/test-svi/out/expdat8arcelowner-arcelowner.dmp show=Y ignore=Y fromuser=arcelowner buffer=10000000 log=/home/ceres/test-svi/log/import9arcelowner-arcelowner.log

**************************************
the imp log gives :

JServer Release 9.2.0.1.0 - Production
Export file created by EXPORT:V08.01.05 via conventional path
import done in WE8ISO8859P1 character set and UTF8 NCHAR character set
import server uses UTF8 character set (possible charset conversion)
export server uses WE8ISO8859P1 NCHAR character set (possible ncharset conversion)
..........
......name of table skipping........
...........
Import terminated successfully without warnings.
*********************************

I don't understand what's happened? who can help me ?

thanks for your help.