Imp to the table specified table space

     Colleagues to take the dmp file into their database,

C:\> imp newsale / newsale@orcl file = d: \ ds . dmp fromuser = BZ1103 touser = newsale

SQL > select  table_name, tablespace_name  from  user_tables;
   Discovery table space SYSTEM, this is not what I want (there are specified default tablespace newtbs when create user ).
     Deleted redirected to specify when the imp the Tablespaces = newtbs or not, want not make sense ......

     After several tests to find information +, finalized,

SQL >   revoke  unlimited tablespace  from  newsale;
SQL
>   alter   user  newsale quota unlimited  on  newtbs;

    And then re-imp, the import was successful discovery table space is indeed a newtbs.

   

Reproduced in: https: //www.cnblogs.com/dengqiang/archive/2009/10/14/1583264.html

Guess you like

Origin blog.csdn.net/weixin_34236497/article/details/93240796