如果数据库中有非常多张表,而我们又只想导出需要的那几张可以使用如下命令
--只导出test1、test2表 exp myname/[email protected] file = d:\my.dmp tables=(test1,test2);
也可以使用正则,如下:
exp myname/[email protected] file = d:\my.dmp tables=(table_name like ‘SYS%‘);
作者:itmyhome
时间: 2024-09-28 21:24:39