1、从服务器导出Oracle(CMD)
导出test的方案 exp test/t123 file=d:\test-2017-06-11-08-14-13.DMP full=y;
2、在另一台服务器创建test用户分配相关权限(splplus)
create user test identified by t123;
grant connect to test;
grant resource to test;
grant dba to test;(测试)
3、导出DMP文件到新的服务器(CMD)
导入test的方案imp test/t123 file=d:\test-2017-06-11-08-14-13.DMP full=y;