1.新建用户

1 sqlplus /no log
2 conn /as sysdba
3 create user tkjj identified by tkjj2017
4 grant dba to tkjj
5 conn tkjj/tkjj2017

2.导出bmp文件

1) 将数据库TEST完全导出,用户名system 密码manager 导出到D:\daochu.dmp中
     exp system/manager@TEST file=d:\daochu.dmp full=y
2 )将数据库中system用户与sys用户的表导出
  exp system/manager@TEST file=d:\daochu.dmp owner=(system,sys)
3) 将数据库中的表table1 、table2导出
  exp system/manager@TEST file=d:\daochu.dmp tables=(table1,table2) 

相关文章:

  • 2022-03-03
  • 2021-10-14
  • 2022-01-01
  • 2021-06-01
  • 2021-08-20
  • 2021-04-26
  • 2022-12-23
  • 2021-08-01
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-28
  • 2022-12-23
  • 2021-08-27
  • 2022-12-23
相关资源
相似解决方案