在虚拟机中打开运行输入cmd
在d出的命令行中输入:exp用户名/密码@远程oralce数据库的IP:端口号/实例file=存放位置:\文件名.dmpfull=y。
如果不是dba的话会有如下提示
root用户下首先切换到oracle用户命令: su-oracle
导出命令格式如下:expuser/pwd@SIDfile=path/sth.dmp其中:user/pwd是你要导出的表空间的oracle用户的用户名与密码;SID为oracle启动实例,一般为orcl。path是你导出的路径;请注意最后面的sth.dmp不能少。
导入dmp文件-在oracle用户下:两种方法[oracle@system~]impuser/passwdfileName=fielPathfull=y(full不能少)
导入导出在oracle用户下,文件file=路径+dmp的文件名,都不能少。
怎样使用 xshell 进行数据库 oracle 数据的导出导入例如将scott用户下所有表,导入到test用户下
1 exp scott/tiger file=scott.dmp owner=scott
2 (1) 如果test用户下有scott的表,哪些需要先删除在导入
conn test/test
select 'drop table '||table_name||' purge' from user_tables
imp test/test file=scott.dmp fromuser=scott touser=test
(2) 如果test用户下没有scott用户的表,可以直接导入
imp test/test file=scott.dmp fromuser=scott touser=test
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)