Oracle exp使用正则表达式导出部分表
时间:2015-06-23 23:11:06
收藏:0
阅读:763
如果数据库中有非常多张表,而我们又只想导出需要的那几张可以使用如下命令
--只导出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
原文:http://blog.csdn.net/itmyhome1990/article/details/46611105
评论(0)