DBA Data[Home] [Help]

SYS.DBMS_DATAPUMP dependencies on KU$_DUMPFILE_INFO

Line 65: -- Items codes for entry in a dump file info table (of type ku$_dumpfile_info).

61: KU$_JOB_STOPPED CONSTANT NUMBER := 3;
62: KU$_JOB_ABORTED CONSTANT NUMBER := 4;
63:
64: --
65: -- Items codes for entry in a dump file info table (of type ku$_dumpfile_info).
66: --
67: -- NOTE: For each constant defined here there is a corresponding constant
68: -- defined in kupf.h named KUPF_DFINFO_xxx_IDX where xxx is VERSION,
69: -- MASTER_PRESENT, GUID, etc. Any changes to the constants defined

Line 519: -- info_table - (OUT) The ku$_dumpfile_info table to be

515: -- filename - Name of the file being added. This must be a simple
516: -- filename with no directory path information.
517: -- directory - Name of the directory object within the database that is
518: -- used to locate the filename.
519: -- info_table - (OUT) The ku$_dumpfile_info table to be
520: -- populated with dumpfile header information.
521: -- filetype - (OUT) 0 => Unknown file type
522: -- 1 => Data Pump dumpfile
523: -- 2 => Classic Export dumpfile

Line 533: info_table OUT ku$_dumpfile_info,

529:
530: PROCEDURE get_dumpfile_info (
531: filename IN VARCHAR2,
532: directory IN VARCHAR2,
533: info_table OUT ku$_dumpfile_info,
534: filetype OUT NUMBER
535: );
536:
537: