Oracle9i Supplied PL/SQL Packages and Types Reference Release 2 (9.2) Part Number A96612-01 |
|
DBMS_PCLXUTIL , 2 of 2
DBMS_PCLXUTIL
contains just one procedure: BUILD_PART_INDEX
.
DBMS_PCLXUTIL.build_part_index ( procs_per_job IN NUMBER DEFAULT 1, tab_name IN VARCHAR2 DEFAULT NULL, idx_name IN VARCHAR2 DEFAULT NULL, force_opt IN BOOLEAN DEFAULT FALSE);
Suppose a table PROJECT
is created with two partitions PROJ001
and PROJ002
, along with a local index IDX
.
A call to the procedure BUILD_PART_INDEX
(2
,4
,'PROJECT
','IDX
',TRUE
) produces the following output:
SQLPLUS> EXECUTE dbms_pclxutil.build_part_index(2,4,'PROJECT','IDX',TRUE); Statement processed. INFO: Job #21 created for partition PROJ002 with 4 slaves INFO: Job #22 created for partition PROJ001 with 4 slaves
|
Copyright © 2000, 2002 Oracle Corporation. All Rights Reserved. |
|