数据导入/导出模式:整个数据库、表空间、用户、表

导入:imp

数据库:imp 数据库登陆名/登陆密码 file=item_back.dmp ignore=y full=y

表空间:imp 数据库登陆名/登陆密码 file=item_back.dmp tablespaces=(users)

用户:imp 数据库登陆名/登陆密码 file=item_back.dmp fromuser=scott touser=martin tables=(emp,dept)

表:imp 数据库登陆名/登陆密码 file=item_back.dmp tables=(emp, dept)

 

导出:exp

数据库:exp 数据库登陆名/登陆密码 file=scott_back full

表空间:exp 数据库登陆名/登陆密码 file=scott_back tablespaces=(users)

用户:exp 数据库登陆名/登陆密码 file=scott_back owner=scott

表:exp 数据库登陆名/登陆密码 file=scott_back tables=(emp, dept)

 

查看归档日志信息

select * from v$archived_log;

相关文章:

  • 2021-08-09
  • 2021-08-27
  • 2021-08-28
  • 2021-08-31
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-12-22
  • 2021-06-18
  • 2022-12-23
  • 2022-12-23
  • 2021-12-22
  • 2021-04-17
相关资源
相似解决方案