日期:2014-05-16  浏览次数:20374 次

Oralce 导入导出命令

导出命令

-全表导出

exp sbacs/acs@orcl file=d:\1.dmp full=y

-指定用户导出

exp sbacs/acs@orcl file=d:\1.dmp owner=(system,sys)

-指定表导出

exp sbacs/acs@orcl file=d:\1.dmp tables=(table1,table2)

-导出某行

exp sbacs/acs@orcl file=d:\1.dmp tables=(table1) query=\" where filed1 like '00%'\"

?

导入命令

-全表导入

imp sbacs/acs@orcl file=d:\1.dmp full=y ignore=y

-用户转换导入

imp sbacs/acs@orcl romuser=bzkk touser=tlmis file=d:\1.dmp

?

?