输入banner图图片脚本导航/分类

Oracle exp使用正则表达式导出部分表

--只导出test1、test2表 
exp myname/mypassword@orcl file = d:\my.dmp tables=(test1,test2);

也可以使用正则,如下:

exp myname/mypassword@orcl file = d:\my.dmp tables=(table_name like ‘SYS%‘);

作者:itmyhome

Oracle exp使用正则表达式导出部分表

标签:oracle   exp   正则表达式