从oracle中的一些表中导出数据

Export data from some tables in oracle

Oracle 11g 快捷版:

我的架构名为 ConData,我只想导出表 SGSI_proyectosSGSI_controles,并仅将此表导入另一个架构。这可能吗?我查看了 expdp 和导出,但只看到完整的、只有模式等...但没有关于某些选定表的信息。

Table Mode

A table mode export is specified using the TABLES parameter. In table mode, only a specified set of tables, partitions, and their dependent objects are unloaded.

Data Pump Export

示例:

导出:

expdp hr TABLES=employees,jobs DUMPFILE=dpump_dir1:table.dmp NOLOGFILE=y

导入:

impdp hr TABLES=employees,job DUMPFILE=dpump_dir1:table.dmp NOLOGFILE=y