- 最后登录
- 2023-8-16
- 在线时间
- 1686 小时
- 威望
- 2135
- 金钱
- 50532
- 注册时间
- 2011-10-12
- 阅读权限
- 200
- 帖子
- 5207
- 精华
- 39
- 积分
- 2135
- UID
- 2
|
2#
发表于 2013-4-23 20:19:14
用
include=TABLE:\" in \(select table_name from user_tables where table_name like \'MACLEAN_T1\%\' or table_name like \'MACLEAN_T2\%\' \) \"
这种方法即可
SQL> create table maclean_t1abc(t1 int);
Table created.
SQL> create table maclean_t2abc(t1 int);
Table created.
[oracle@vrh8 ~]$ expdp maclean/oracle dumpfile=temp:mac.dmp schemas=maclean include=TABLE:\" in \(select table_name from user_tables where table_name like \'MACLEAN_T1\%\' or table_name like \'MACLEAN_T2\%\' \) \"
Export: Release 10.2.0.5.0 - 64bit Production on Tuesday, 23 April, 2013 8:16:44
Copyright (c) 2003, 2007, Oracle. All rights reserved.
Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
Starting "MACLEAN"."SYS_EXPORT_SCHEMA_01": maclean/******** dumpfile=temp:mac.dmp schemas=maclean include=TABLE:" in (select table_name from user_tables where table_name like 'MACLEAN_T1%' or table_name like 'MACLEAN_T2%' ) "
Estimate in progress using BLOCKS method...
Processing object type SCHEMA_EXPORT/TABLE/TABLE_DATA
Total estimation using BLOCKS method: 0 KB
Processing object type SCHEMA_EXPORT/TABLE/TABLE
. . exported "MACLEAN"."MACLEAN_T1ABC" 0 KB 0 rows
. . exported "MACLEAN"."MACLEAN_T2ABC" 0 KB 0 rows
Master table "MACLEAN"."SYS_EXPORT_SCHEMA_01" successfully loaded/unloaded
******************************************************************************
Dump file set for MACLEAN.SYS_EXPORT_SCHEMA_01 is:
/tmp/mac.dmp
Job "MACLEAN"."SYS_EXPORT_SCHEMA_01" successfully completed at 08:16:49 |
|