sqlplus登录远程数据库与数据导出

一、登录

1、cmd中输入sqlplus /nolog

2、链接数据库,root是用户名,root123是密码,ORCL是数据库名。conn root/root123@192.168.1.27:1521/ORCL

二、导出

exp root/root123@ORCL file=d:all.dmp full=y

三、参考

http://blog.csdn.net/yangpeng201203/article/details/39636903

https://zhidao.baidu.com/question/2053071179149386427.html

原文地址:https://www.cnblogs.com/sigm/p/6343651.html