Oracle8i Supplied PL/SQL Packages Reference Release 2 (8.1.6) Part Number A76936-01 |
|
DBMS_PCLXUTIL , 2 of 2
DBMS_PCLXUTIL
contains just one procedure: BUILD_PART_INDEX
.
DBMS_PCLXUTIL.build_part_index ( jobs_per_batch IN NUMBER DEFAULT 1, 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 © 1996-2000, Oracle Corporation. All Rights Reserved. |
|