exp file=d:\daochu.dmp log=d:\test.log full=y
2 将数据库中system用户与sys用户的表导出
exp file=d:\daochu.dmp log=d:\test.log owner=(system,sys)
3 将数据库中的表inner_notify、notify_staff_relat导出
exp file= d:\data\newsmgnt.dmp log=d:\test.log tables=(inner_notify,notify_staff_relat)
4 将数据库中的表table1中的字段filed1以"00"打头的数据导出
exp file=d:\daochu.dmp tables=(table1) log=d:\test.log query=\" where filed1 like '00%'\"
1 将D:\daochu.dmp 中的数据导入 TEST数据库中。
imp file=d:\daochu.dmp
imp file= d:\data\newsmgnt.dmp log=d:\test.log ignore=y full=y
上面可能有点问题,因为有的表已经存在,然后它就报错,对该表就不进行导入。在后面加上 ignore=y 就可以了。
2 将d:\daochu.dmp中的表table1 导入
imp file=d:\daochu.dmp tables=(table1)
--导出数据库
exp U_EBCMNS/U_EBCMNS@NSEPB file=D:\U_EBCMNS.dmp log=D:\U_EBCMNS.log full=y
exp U_EBCMNS/U_EBCMNS@NSEPB file=D:\jbxx-glsx.dmp tables=(T_WRY_JBXX,T_WRY_GLSX)
--导入数据库
imp U_EBCMNS/U_EBCMNS@NSEPB file = D:\U_EBCMNS.dmp log=D:\log.log full=y ignore=y
imp U_EBCMNS/U_EBCMNS@NSEPB file = D:\wry_zrr.dmp tables=(T_WRY_WRYZRR)
1.导出命令
在命令提示符下输入 -> D:\>exp help=y
关键字 说明(默认)
-----------------------------------
file 输出文件 (expdat.dmp)
tables 表名列表
rows 导出数据行,是否带表结构 (y)
full 导出整个文件 (n)
grants 导出权限 (y)
log 屏幕输出的日志文件
owner 所有者用户名列表
userid 用户名/口令
buffer 数据缓冲区的大小
compress 导入一个范围 (y)
recordlength io 记录的长度
inctype 增量导出类型
indexes 导出索引 (y)
record 跟踪增量导出 (y)
parfile 参数文件名
constraints 导出限制 (y)
consistent 交叉表一致性
statistics 分析对象 (estimate)
direct 直接路径 (n)
triggers 导出触发器 (y)
feedback 显示每 x 行 (0) 的进度
filesize 各转储文件的最大尺寸
query 选定导出表子集的子句
2.导入命令
在命令提示符下输入 -> D:\>imp help=y
关键字 说明(默认)
------------------------------------
tables 表名列表
rows 导入数据行,是否带表结构 (y)
ignore 忽略创建错误 (n)
file 输入文件 (expdat.dmp)
full 导入整个文件 (n)
fromuser 所有人用户名列表
touser 用户名列表
log 屏幕输出的日志文件
grants 导入权限 (y)
userid 用户名/口令
buffer 数据缓冲区大小
show 只列出文件内容 (n)
recordlength io 记录的长度
inctype 增量导入类型
indexes 导入索引 (y)
commit 提交数组插入 (n)
parfile 参数文件名
constraints 导入限制 (y)
destroy 覆盖表空间数据文件 (n)
indexfile 将表/索引信息写入指定的文件
skip_unusable_indexes 跳过不可用索引的维护 (n)
analyze 执行转储文件中的 analyze 语句 (y)
feedback 显示每 x 行 (0) 的进度
toid_novalidate 跳过指定类型 id 的校验
filesize 各转储文件的最大尺寸
recalculate_statistics 重新计算统计值 (n)