今天同事問我,如何導出某一個view,我較少見這麼細粒度的需求,果斷測試一下:
[oracle@rac1 log]$ expdp xxx/xxx directory=DATA_PUMP_DIR dumpfile=view.dmp logfile=view_exp.log views=V_TEST LRM-00101: unknown parameter name 'views'
[oracle@rac1 log]$ vi par.par INCLUDE = VIEW: "in ( 'V_TEST' ) ";
[oracle@rac1 log]$ expdp lm/lm directory=DATA_PUMP_DIR dumpfile=view.dmp logfile=view_exp.log parfile=par.par Export: Release 11.2.0.1.0 - Production on Thu Jan 21 02:07:04 2016 Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved. Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP, Data Mining and Real Application Testing options Starting "LM"."SYS_EXPORT_SCHEMA_04": lm/******** directory=DATA_PUMP_DIR dumpfile=view.dmp logfile=view_exp.log parfile=par.par 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/VIEW/VIEW Master table "LM"."SYS_EXPORT_SCHEMA_04" successfully loaded/unloaded ****************************************************************************** Dump file set for LM.SYS_EXPORT_SCHEMA_04 is: /u02/app/oracle/product/11.2.0/dbhome_1/rdbms/log/view.dmp Job "LM"."SYS_EXPORT_SCHEMA_04" successfully completed at 02:07:15 OK!