oracle数据库备份的cmd命令
1、全库导出:
exp 用户名/密码@数据库名 full=y file=c:xxxx.dmp owner=数据库用户
2、导入:
imp 用户名/密码@数据库名 full=y file=c:xxxx.dmp owner=数据库用户
3、单表导出:
exp 用户名/密码@数据库名 grants=y tables=table_name file=c:xxx.dmp owner=数据库用户
4、导入:
imp 用户名/密码@数据库名 ignore=y tables=table_name file=c:xxx.dmp owner=数据库用户