首页 > 其他 > 详细

导出某个view

时间:2016-01-21 10:42:14      阅读:233      评论:0      收藏:0      [点我收藏+]

今天同事问我,如何导出某一个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'

意料之中,我一点都不失望,因为看help的时候,根本没有view这个参数。继续:


[oracle@rac1 log]$ vi par.par 
INCLUDE = VIEW: "in ( 'V_TEST' ) ";


<pre name="code" class="html">[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!




导出某个view

原文:http://blog.csdn.net/ghostliming/article/details/50553223

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!