1.一般导入
imp 用户名/密码@172.16.5.36/orcl file=E:\t02 fromuser=xyjj touser=dbcenter grants=n FEEDBACK=100 ignore=y
2.较大的sql文件采用 CMD 登陆SQLplus导入sql文件
start c:/emp.sql
3.指定导入过程日志路径,缓存空间大小
imp 用户名/密码@172.16.2.33/orcl buffer=50000000 full=n STATISTICS=none file=E:\comb_stock log=E:\comb_stock.log ignore=y rows=y commit=n compile=n fromuser=导出的用户名 touser=要导入的用户名
4.导入数据指定表空间
IMP USER2/USER2 log=C:\plsimp.log file=D:\database\USER1.dmp fromuser=USER1 touser=USER2 ignore=yes tablespaces=TS2
5.一般导出
exp 用户名/密码@172.16.3.52/orcl file=E:\文件名 FEEDBACK=100 tables=表名
6.导出xx 开头的表
exp 用户名/密码@172.16.3.52/orcl file=E:\T02 tables=(数据库名.T02%) LOG=E:\t02.log
7.exp导出带where 条件
exp 用户名/密码@172.16.3.52/orcl file=d:\文件名 tables=(表名) query=\"WHERE 字段名 = '07'\"