登陆了PLSQL Developer之后,如何将这个用户的oracle里所有的数据导出?

如题所述

该命令在“开始菜单>>运行>>CMD”中执行
一、数据导出(exp.exe)
1、将指定用户的数据全部导出:
将数据库orcl中scott用户的数据全部对象导出
exp scott/accp@orcl file=d:\daochu.dmp

2、将指定用户的指定表的数据导出:
将数据库orcl中的scott用户的表emp、dept导出
exp scott/accp@orcl file= d:\daochu.dmptables=(emp,dept)

3、将指定用户的指定表空间的数据导出:
将数据库orcl中的表空间testSpace导出
exp scott/accp@orcl file=d:\daochu.dmptablespaces=(testSpace)

exp 用户名/用户密码即刻@orcl file=d:\daochu.dmp

上面举例
温馨提示:答案为网友推荐,仅供参考
第1个回答  2013-07-24
select * from all_tables;--查看目前库中所有的表,然后在指定一下用户即可!
相似回答