不行。
一般的做法是:先建好表空间,再建用户,再imp数据库

解决方案 »

  1.   

    IMP命令不能实现你的想法,所以只能辛苦点,把表空间和用户先建立好。
    其实也不麻烦呀,例如:在SQLPLUS里
     建立表空间
     create tablespace test datafile 'c:\orawin95\database\test.dat' size 200M  online
    default storage ( pctincrease 2 ); 建立用户
    create user test identified by test default tablespace test temporary tablespace test;
     授权用户
    grant dba, connect, resource, create table to test;