Similarly, if you are using Oracle 10g +, you should do this work with Data Pump:
expdp user1/ pass1@db1 directory=dp_out schemas=user1 dumpfile=user1.dmp logfile=user1.log
And for import:
impdp user2/ pass2@db2 directory=dp_out remap_schema=user1:user2 dumpfile=user1.dmp logfile=user2.log
Aaron source share