DBA Data[Home] [Help]

PACKAGE: SYS.DBMS_REPCAT_MIG

Source


1 PACKAGE dbms_repcat_mig AS
2   --
3   -- Definitions
4   --
5 
6   --- ==================================================================
7   ---   procedures/functions will be called by others
8   --- ==================================================================
9   ----------------------------------------------------------------------
10   --- NOTE: The following procedure is used by import/export to preserve
11   ---       correctness of replication log information. If these
12   ---       procedures are moved the following rules must be observed:
13   ---       1) The new package must be publicly executable
14   ---       2) Import/Export source code is modified to refresh change
15   ----------------------------------------------------------------------
16   --- After a V8 import, this procedure is called to clean up any V7
17   --- replication objects (mlog$_%, triggers) that are needed to be
18   --- modified
19   PROCEDURE cleanup_import(dump_version IN NUMBER);
20 
21   ----------------------------------------------------------------------
22   --- After a full replicated db import, this routine is invoked to
23   --- do any necessary cleanup
24   PROCEDURE cleanup_import(expseal IN VARCHAR2);
25 
26   ----------------------------------------------------------------------
27   --- This routine is called before doing a full import of a database
28   --- with replicated data
29   PROCEDURE pre_import;
30 
31   ----------------------------------------------------------------------
32   --- This routine is called after doing a full import of a database
33   --- with replicated data
34   PROCEDURE post_import;
35 
36 END dbms_repcat_mig;