Oracle数据导入导出imp/exp
数据导出:
exp wlj/[email protected] file=d:exportoracle.dmp full=y
exp wlj/
[email protected] file=d:exportoracle.dmp owner=(system,sys)
3 将数据库中的表inner_notify、notify_staff_relat导出
exp wlj/
[email protected] file= d:exportoracle.dmp tables=(inner_notify,notify_staff_relat)
4 将数据库中的表table1中的字段filed1以"00"打头的数据导出
exp wlj/
[email protected] file=d:exportoracle.dmp tables=(table1) query=" where filed1 like ‘00%‘"
也可以在上面命令后面 加上
compress=y 来实现。
数据的导入
1 将d:exportoracle.dmp 中的数据导入 TEST数据库中。
imp wlj/
[email protected] file=d:exportoracle.dmp
imp wlj/
[email protected] full=y file=d:exportoracle.dmp ignore=y
如果出现问题,可能是因为有的表已经存在,然后它就报错,对该表就不进行导入。
在后面加上
ignore=y 就可以了。
2 将d:exportoracle.dmp中的表table1 导入
imp wlj/
[email protected] file=d:exportoracle.dmp tables=(table1)
注意:基本上上面的导入导出够用了。不少情况
要先是将表彻底删除,然后导入。
注意:1、操作者要有足够的权限,权限不够它会提示。
数据库备份
建议系统过渡后,每周进行一次备份。或者在数据表发生重大改变前,对要改变的数据表进行备份。
执行以下步骤,进行备份。
在命令行里,敲入“cmd”,回车,进入命令行窗口。
在窗口中,输入:
exp mas/
[email protected]
可以直接回车;
www.2cto.com
输入内容如:e:\work\mas_db_090925v1.dmp 回车
此处可以输入u,也可以直接回车,因为系统此时默认的是U
系统提示:导出权限(yes/no):yes>回车
系统提示:导出表数据(yes/no):yes>回车
系统提示:压缩区(yes/no):yes>回车
此时系统会自动进行备份.