【数据导出】
- 导出orcl中所有的表空间
exp system/manager@orcl file=d:\daochu.dmp full=y
- 导出system数据库中指定的表空间
exp system/manager@orcl file=d:\daochu.dmp owner=(system,sys)
3. 导出数据库中制定的表数据
exp system/manager@orcl file=d:\daochu.dmp tables=(table1,table2)
- 导出数据库中table1中字段field1以“00”开头的数据
exp system/manager@orcl file=d:\daochu.dmp tables=(table1)query=" where filed1 like ‘00%‘"
注:如果要压缩,则在最后面加上compress=y即可
【数据导入】
- 将D:\daochu.dmp 中的数据导入 orcl数据库中。
imp system/manager@orcl file=d:\daochu.dmp
注:如果有的表已经存在,会提示报错,这个时候,在后面加上ignore=y,即已存在的表不导入
- 将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 用户名字