导出用exp命令来完成,该命令常用的选项有:
userid:用于指定执行导出操作的用户名、口令、连接字符串。
tables:用于指定执行导出操作的表
owner:用于指定执行导出操作的方案
full=y:用于指定执行导出操作的数据库
inctype:用于指定执行导出操作的增量类型
rows:用于指定执行导出操作是否要导出表中的数据
file:用于指定导出文件名
1、导出自己的表:exp userid=scott/tiger@myoral tables=(emp,dept)
file=d:\el.dmp
2、导出其他方案的表
如果用户要导出替他方案的表,则需要dba的权限或是exp_full_database的权限:exp
userid=system/manager@myoral tables=(scott.emp) file=d:\el.dmp
3、导出表的结构:exp userid=scott/tiger@myoral tables=(emp)
file=d:\el.dmp rows=n
4、直接导出:这种方式比默认的常规方式速度快
exp userid=scott/tiger@myoral tables=(emp) file=d:\el.dmp
direct=y
导出方案
1、导出自己的方案:exp userid=scott/tiger@myoral owner=scott
file=d:\el.dmp
2、导出其他方案
如果用户要导出替他方案,则需要dba的权限或是exp_full_database的权限:exp
userid=system/manager@myoral owner=(scott) file=d:\el.dmp
导出数据库(用户必须具有dba的权限或是exp_full_database权限)
exp userid=system/manager@myoral full=y inctype=complete
file=d:\el.dmp
(full=y inctype=complete表示增量备份,这样下次备份时速度就快)