Chinaunix首页 | 论坛 | 博客
  • 博客访问: 142585
  • 博文数量: 39
  • 博客积分: 1550
  • 博客等级: 上尉
  • 技术积分: 456
  • 用 户 组: 普通用户
  • 注册时间: 2010-10-14 11:06
文章分类

全部博文(39)

文章存档

2014年(1)

2013年(2)

2011年(21)

2010年(15)

我的朋友

分类: Oracle

2010-11-02 11:25:25

将一个数据库的非默认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) |
给主人留下些什么吧!~~

chinaunix网友2010-11-02 16:59:32

很好的, 收藏了 推荐一个博客,提供很多免费软件编程电子书下载: http://free-ebooks.appspot.com