如果数据库中有非常多张表,而我们又只想导出需要的那几张可以使用如下命令
--只导出test1、test2表
exp [email protected] file = d:/my.dmp tables=(test1,test2);
也可以使用正则,如下:
exp [email protected] file = d:/my.dmp tables=(table_name like 'SYS%');
作者:itmyhome
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/4148.html