当前位置: 代码迷 >> Oracle管理 >> 关于整个数据库导入的有关问题
  详细解决方案

关于整个数据库导入的有关问题

热度:93   发布时间:2016-04-24 05:00:10.0
关于整个数据库导入的问题
想把一台旧数据库服务器中的数据库全部内容导入到新数据库服务器中的数据库中,
请问如何实现?

------解决方案--------------------
export from the old server:
exp "sys/pass@xxx as sysdba" full=y file=d:\full.dmp

copy the d:\full.dmp from the old server to the new server
then,import into the new server:
imp "sys/pass@xxx as sysdba" full=y file=d:\full.dmp

------解决方案--------------------
探讨
export from the old server:
exp  "sys/pass@xxx as sysdba"  full=y file=d:\full.dmp

copy the d:\full.dmp from the old server to the new server
then,import into the new server:
imp  "sys/pass@xxx as sysdba"  full=y file=d:\full.dmp

  相关解决方案