DBA Data[Home] [Help]

PACKAGE: CTXSYS.DRIRIO

Source


1 package dririo as
2 
3   LOCK_WAIT     constant number := null;
4   LOCK_NOWAIT   constant number := 0;
5   IGNORE_ERRORS constant boolean := TRUE;
6 
7 /*------------------------------ lock_rio --------------------------------*/
8 
9 procedure lock_rio(
10   cid        in number,
11   pid        in number,
12   timeout    in number
13 );
14 
15 /*----------------------------- unlock_rio ------------------------------*/
16 
17 procedure unlock_rio(
18   ignore_errors in boolean default false
19 );
20 
21 /*----------------------------- shadow_name ------------------------------*/
22 /* return the name of the shadow policy, given source policy id */
23 
24 function shadow_name(
25   idx_id in number,
26   ixp_id in number default null
27 ) return varchar2;
28 
29 /*------------------------- lock_rio_all_part ----------------------------*/
30 
31 procedure lock_rio_all_part(
32   cid        in number
33 );
34 
35 /*------------------------ unlock_rio_all_part ---------------------------*/
36 
37 procedure unlock_rio_all_part(
38   ignore_errors in boolean default false
39 );
40 
41 procedure create_shadow(
42   idx        dr_def.idx_rec,
43   idx_shadow in out nocopy dr_def.idx_rec
44 );
45 
46 procedure create_shadow_partMD(
47    idx         dr_def.idx_rec,
48    ixp_id      number
49 );
50 
51 end dririo;