Oracle数据库导入导出

1.在DOS窗口中导出Oracle数据。
exp username/password@database statistics=none file=d:/datafilename.dmp
例如:
exp crm110/110@orcl statistics=none file=d:/crm110.dmp
2.在DOS窗口中导入Oracle数据。
imp username/password@database full=y file=d:/datafilename.dmp
例如:
imp crm110/110@orcl full=y file=d:/crm110.dmp

你可能感兴趣的:(oracle,database,exp,imp)