dba_bat,

You can try this IF:

1) You have DBA privs
and 2) You have exlusive control over the DB account into which you
are importing. ie. temporarily change the password.

Set the default tablespace to wherever you want the objects for the
user to which you are connecting and also give a tablespace quota for it (using ALTER USER ...). When you are done with the import, simply change the default tablespace back to the original value and you will probably want to leave the quota that you gave. Then you can allow access to the account again.

This is the simplest method I can think of. You could also edit the dumpfile itself with a binary editor and do a global search and replace on the tablespace name. If you were more comfortable with doing that, then you don't have to limit access to the account while you do your import which would be a bonus.

Saundman2000