Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> index rebuild out of space
I am running out of space trying to rebuild an index under v8174, and I
don't know why. My alert log error:
What I am doing:
INSERT /*+APPEND */ INTO eim_org_ext_xm NOLOGGING (SELECT /*+FULL(EOM) */ xm.par_row_id
,xm.x_amp_prod_id
,xm.x_amp_busns_plan_plant
,xm.x_amp_mkt_code
,xm.x_amp_strtgy_code
,xm.x_amp_sub_strtgy_code
,xm.x_amp_scorecard_date
,xm.name
,xm.x_amp_bcklg_wgt
,xm.x_amp_bcklg_rev
,xm.x_amp_bkngs_wgt
,xm.x_amp_bkngs_rev
,xm.x_amp_rmang_ship_wgt
,xm.x_amp_rmang_ship_rev
,xm.x_amp_shipmt_wgt
,xm.x_amp_shipmt_rev
,xm.x_amp_shipmt_total_rev
,xm.x_amp_retrn_wgt
,xm.x_amp_retrn_rev
,xm.x_amp_cust_demnd_wgt
,xm.x_amp_frcst_wgt
,xm.x_amp_frcst_rev
,xm.x_amp_frcst_svcwgt
,xm.x_amp_frcst_svcrev
,xm.TYPE,attrib_22
,xm.x_amp_mkt_seg_id
FROM s_org_ext_xm XM, eim_order_metrics EOM
WHERE XM.par_row_id = EOM.accnt_id
AND XM.x_amp_prod_id = EOM.prod_id
AND nvl(XM.x_amp_busns_plan_plant,'xX') =nvl(EOM.x_amp_busns_plan_plant,'xX')
AND nvl(XM.x_amp_mkt_code,'xX') = nvl(EOM.x_amp_mkt_code,'xX') AND nvl(XM.x_amp_strtgy_code,'xX') = nvl(EOM.x_amp_strtgy_code,'xX') AND nvl(XM.x_amp_sub_strtgy_code,'xX') =nvl(EOM.x_amp_sub_strtgy_code,'xX')AND XM.x_amp_scorecard_date = EOM.scorecard_date AND XM.TYPE in ('Orders','Non-AMP Orders'));
alter index cf_eim_org_ext_xm rebuild;
INDEX1M is an LMT uniform size 1M. The index is 9M.
I seem to have plenty of space:
BYTES
1048576
1048576
1048576
1048576
1048576
1048576
1048576
1048576
1048576
52428800
12582912
3145728
12 rows selected.
And here is the size of the index:
TABLESPACE_NAME BYTES ------------------------------ ---------- INDEX1M 1048576 INDEX1M 1048576 INDEX1M 1048576 INDEX1M 1048576 INDEX1M 1048576 INDEX1M 1048576 INDEX1M 1048576 INDEX1M 1048576 INDEX1M 1048576
9 rows selected.
Questions:
I'm probably just being profoundly stupid, but I am perplexed.
/ Charles J. Fisher | "Four hostile newspapers are more to be feared / / cfisher_at_rhadmin.org | than a thousand bayonets." / / http://rhadmin.org | --Napoleon / ---------------------------------------------------------------------------Received on Fri Dec 17 2004 - 15:24:19 CST
![]() |
![]() |