【数据导出】
1. 导出orcl中所有的表空间
exp system/manager@orcl file=d:\daochu.dmp full=y
2. 导出system数据库中指定的表空间
exp system/manager@orcl file=d:\daochu.dmp owner=(system,sys)
3. 导出数据库中制定的表数据
exp system/manager@orcl file=d:\daochu.dmp tables=(table1,table2)
4. 导出数据库中table1中字段field1以“00”开头的数据
exp system/manager@orcl file=d:\daochu.dmp tables=(table1)query=\" where filed1 like '00%'\"
注:如果要压缩,则在最后面加上compress=y即可
【数据导入】
1. 将D:\daochu.dmp 中的数据导入 orcl数据库中。
imp system/manager@orcl file=d:\daochu.dmp
注:如果有的表已经存在,会提示报错,这个时候,在后面加上ignore=y,即已存在的表不导入
2. 将d:\daochu.dmp中的表table1 导入
imp system/manager@orcl file=d:\daochu.dmp tables=(table1)
注:导入导出时,有时候会出现权限不足的情况
这时,需要登录plus进行授权,首先登录管理员账号,然后:
GRANT CREATE USER,DROP USER,ALTER USER ,CREATE ANY VIEW ,
DROP ANY VIEW,EXP_FULL_DATABASE,IMP_FULL_DATABASE,
DBA,CONNECT,RESOURCE,CREATE SESSION TO 用户名字
以上即是经常用的备份和还原命令,分享给大家
最后,附上引用的帖子:https://www.2cto.com/database/201305/210262.html