top of page
Search

INCLUDE parameter of expdp

-- Export all public database links

expdp user/password full=y \

include=db_link:"in (select db_link from dba_db_links where owner = 'PUBLIC')"


-- Export one table

expdp user/password include=table:"in ('<TABLE_NAME>')"


-- Valid values for "INCLUDE" statement

select * from DATABASE_EXPORT_OBJECTS;

select * from SCHEMA_EXPORT_OBJECTS;

select * from TABLE_EXPORT_OBJECTS;

19 views0 comments

Recent Posts

See All

Get DDL for Oracle object

set feed off set long 1000000 set longchunksize 1000000 set pages 0 set lines 32767 set trimspool on set feed off set wrap on set serveroutput on format wrapped set def off set tab off exec dbms_metad

Cancelled scheduled concurrent requests

This SQL query returns all concurrent requests that were scheduled in the past and are not scheduled currently. It can be used for identifying scheduled requests that failed to be resubmitted. select

Foreign key constraint violation

/* This PL/SQL script checks violations of foreign key constraints Example of the tables: CREATE TABLE temp_supplier ( supplier_id numeric(10) not null, supplier_name varchar2(50) not null, contact_na

bottom of page