DBA Data[Home] [Help]

PACKAGE: CTXSYS.DRIREC

Source


1 package drirec as
2 
3 /*--------------------------------- recover --------------------------------*/
4 /*
5   NAME
6   DESCRIPTION
7 
8   ARGUMENTS
9 
10 
11   NOTES
12 
13 
14   EXCEPTIONS
15 
16   RETURNS
17     none
18 */
19 PROCEDURE recover(component IN varchar2 default 'ALL');
20 
21 /*------------------------------ recover_dict ------------------------------*/
22 /*
23   NAME
24     recover_dict - RECOVER textile DICTionary
25   DESCRIPTION
26     Remove policies and indexes that belong to an invalid user (i.e. one
27     that has been dropped)
28 
29     Also removes indexes, or any other database objects created that are
30     connected specifically to the policy
31 
32     Remove obsolete entries in dr$contains
33 
34     Remove thesaurus and sections groups that belongs to an invalid user
35 
36     If user_name is null, entries for all dropped users are removed.
37   ARGUMENTS
38 
39   RETURNS
40 
41   NOTES
42 */
43 PROCEDURE recover_dict(user_name in varchar2 := null);
44 
45 end drirec;