将一个数据库的非默认schema移植到另一台机器上。所做步骤如下:
1.首先需要将原有数据库上的所有非默认schema的数据用一个命令导出
exp system/passwd owner=(imp1,imp2) file=/database/exp.dmp
log=/database/exp.log
在目标数据库上操作以下步骤
2. create the special tablespace for the moving schema.(要移植的schema有自己专门的tablespace)
3. create the user and grant the right to the user.
4. 将数据导入到新的数据库中:
imp system/passwd file=/database/exp.dmp full=y log=/database/imp.txt
如果有的表已经存在,还要加上 ignore=y
阅读(1364) | 评论(1) | 转发(0) |