看看数据库里面需要做整理的表有哪些,条件可以根据需求稍微改动一下
SQL> select * from (2 select a.owner,3 a.table_name,4 a.num_rows,5 a.avg_row_len * a.num_rows,6 sum(b.bytes),7 (a.avg_row_len * a.num_rows) / sum(b.bytes) frag8 from dba_tables a, dba_segments b9 where a.table_name = b.segment_name10 and a.owner= b.owner and a.owner='CMDS' and a.num_rows !=0 and a.num_rows >= 1000000011 and a.owner not in12 ('SYS', 'SYSTEM', 'OUTLN', 'DMSYS', 'TSMSYS', 'DBSNMP', 'WMSYS',13 'EXFSYS', 'CTXSYS', 'XDB', 'OLAPSYS', 'ORDSYS', 'MDSYS', 'SYSMAN','PATROL')14 group by a.owner,a.table_name,a.avg_row_len, a.num_rows15 having a.avg_row_len * a.num_rows / sum(b.bytes) < 0.716 order by sum(b.bytes) desc)17 where rownum <= 100;OWNER TABLE_NAME NUM_ROWS A.AVG_ROW_LEN*A.NUM_ROWS SUM(B.BYTES) FRAG------------------------------ ------------------------------ ---------- ------------------------ ------------ ----------CMDS CONTACT_LIST 3800662127 2.4704E+11 4.0227E+11 .61CMDS INSURED_BACKUP 2916523023 1.5458E+11 2.7488E+11 .56CMDS CONTACT_COMB 1249703629 5.7486E+10 8.4437E+10 .68CMDS CUST_RELATION_UPD 386995715 1.4706E+10 2.3089E+10 .64CMDS PARTY 1235330775 1.1118E+10 2.1475E+10 .52CMDS PSN_CUSTOMER_UPD_20160901 351127588 1.3343E+10 2.0420E+10 .65CMDS MOBILE_1 345051414 1.1387E+10 1.6300E+10 .70CMDS PSN_HLDR_UPD 219959628 8798385120 1.4997E+10 .59CMDS INSURED_UPD 224986718 9224455438 1.4346E+10 .64CMDS GRP_CUSTOMER 13639704 1473088032 5638127616 .26CMDS APPL_STATE 57276612 3780256392 5552209920 .68CMDS GRP_CNTR_HLDR 49157672 3096933336 4894752768 .63CMDS PSN_CUSTOMER_DEL 66607272 3130541784 4728029184 .66CMDS TMP_PSN_REL_1_END 182973898 2561634572 3892314112 .66CMDS APPL_INSURED 29878010 2001826670 3116367872 .64CMDS GRP_PARTY_RELATION 13545920 690841920 2264924160 .31CMDS GRP_PERSON 10076783 433301669 2087714816 .21CMDS PSN_CNTR_HOLDER_UBPS_BAK 17219039 1256989847 1857945600 .68CMDS HTEL_ERROR_N 19520444 995542644 1677721600 .59CMDS BACK_PERSON_REP 24107652 916090776 1326448640 .69CMDS TEMP_PERSON_REP_3_ALLFIELDS 24020055 912762090 1326448640 .69CMDS PID_RELATION_1 64767526 777210312 1282408448 .61CMDS PERSON_DELETED 20662170 805824630 1210056704 .67CMDS SUSPECT_3_0 47021762 799369954 1207959552 .66CMDS PID_RELATION_2 53957397 647488764 1044381696 .62CMDS TEMP_CUSTIDTOMERG_MISS_0225 12511777 412888641 751828992 .55CMDS TEMP_PERSON_DEFAULT_1 29635442 444531630 705691648 .63CMDS ZB_DUP_PARTY_RELATION_12_A 35121535 351215350 603979776 .58CMDS T_CUST_INFO_1512 44795595 313569165 594542592 .53CMDS PURVIEWINFO 12383109 383876379 571473920 .67CMDS TEMP_PERSON_DEL 24904280 174329960 344981504 .51CMDS TEMP_PERSON_DEL_1 24100913 168706391 335544320 .50CMDS SUSPECT_1_0 11442724 217411756 318767104 .68CMDS MOBILE_3 10994502 164917530 252706816 .65CMDS TEMP_PERSON_REP 12172895 121728950 208666624 .58CMDS TEMP_PERSON_REP_3 11103556 111035560 192937984 .58CMDS TEMP_PERSON_REP_1 11103556 111035560 190840832 .58CMDS TEMP_PERSON_REP_12 11099995 110999950 187695104 .59CMDS PARTYID_DISTINCT 10882249 76175743 147849216 .52
SQL> select * from (2 select a.owner,3 a.table_name,4 a.num_rows,5 a.last_analyzed,6 a.avg_row_len * a.num_rows,7 sum(b.bytes),8 ROUND((a.avg_row_len * a.num_rows) / sum(b.bytes),2) frag9 from dba_tables a, dba_segments b10 where a.table_name = b.segment_name11 and a.owner='CMDS' and a.num_rows !=0 and a.num_rows >= 1000000 and a.table_name not in(select table_name from dba_tables where table_name like '%TEMP%' or a.table_name like '%BAK%' or a.table_name like '%TMP%' and owner='CMDS')12 group by a.owner,a.table_name,a.avg_row_len, a.num_rows,a.last_analyzed13 having a.avg_row_len * a.num_rows / sum(b.bytes) <= 0.714 order by a.table_name,sum(b.bytes) desc)15 where rownum <= 100;OWNER TABLE_NAME NUM_ROWS LAST_ANAL A.AVG_ROW_LEN*A.NUM_ROWS SUM(B.BYTES) FRAG------------------------------ ------------------------------ ---------- --------- ------------------------ ------------ ----------CMDS APPL_BNFR 1656401 23-JAN-17 159014496 821035008 .19CMDS APPL_INSURED 29878010 23-JAN-17 2001826670 3116367872 .64CMDS APPL_STATE 57276612 23-JAN-17 3780256392 5560598528 .68CMDS BACK_PERSON_REP 24107652 17-DEC-14 916090776 1326448640 .69CMDS BINDPOLINFO_L_1 8278592 08-OCT-16 82785920 142606336 .58CMDS BINDPOLOPTION 3407344 04-JAN-17 61332192 100663296 .61CMDS CONTACT_COMB 1249703629 30-JUN-16 5.7486E+10 8.4437E+10 .68CMDS CONTACT_LIST 3800662127 15-JAN-17 2.4704E+11 4.0227E+11 .61CMDS CUSTOMINFO_E_SINGLE_CNTR 2923310 23-JAN-17 464806290 1083179008 .43CMDS CUST_RELATION_UPD 386995715 25-NOV-16 1.4706E+10 2.3089E+10 .64CMDS C_CUST_RELATION_UPD 1034538 01-SEP-16 42416058 94371840 .45CMDS C_INSURED_UPD 2598511 01-SEP-16 93546396 152043520 .62CMDS C_PSN_CNTR_HOLDER_SINCR_SR1 1392097 23-OCT-14 26449843 38797312 .68CMDS C_PSN_CNTR_HOLDER_SINCR_SR2 1083707 04-MAY-15 20590433 30408704 .68CMDS C_PSN_HLDR_UPD 1229821 01-SEP-16 50422661 75497472 .67CMDS GRP_CNTR_HLDR 49157672 09-JAN-17 3096933336 4894752768 .63CMDS GRP_CUSTOMER 13639704 09-JAN-17 1473088032 5638127616 .26CMDS GRP_PARTY_RELATION 13545920 09-JAN-17 690841920 2264924160 .31CMDS GRP_PERSON 10076783 09-JAN-17 433301669 2087714816 .21CMDS HTEL_ERROR_N 19520444 13-JUL-14 995542644 1677721600 .59CMDS INSURED_BACKUP 2916523023 18-OCT-15 1.5458E+11 2.7488E+11 .56CMDS INSURED_UPD 224986718 08-DEC-16 9224455438 1.4346E+10 .64CMDS JIEGUO20161227 1108122 27-DEC-16 15513708 24117248 .64CMDS MOBILE_1 345051414 18-MAR-15 1.1387E+10 1.6300E+10 .7CMDS MOBILE_3 10994502 01-APR-15 164917530 252706816 .65CMDS OTEL_ERROR_N 8937206 11-JUL-14 455797506 756023296 .6CMDS PARTY 1235330775 20-JAN-17 1.1118E+10 2.1475E+10 .52CMDS PARTYID_DISTINCT 10882249 12-MAY-15 76175743 147849216 .52CMDS PASSWORDSTAT 9357346 27-DEC-16 215218958 313524224 .69CMDS PERSON_DELETED 20662170 12-MAY-15 805824630 1210056704 .67CMDS PID_RELATION_1 64767526 09-SEP-14 777210312 1282408448 .61CMDS PID_RELATION_2 53957397 09-SEP-14 647488764 1044381696 .62CMDS PSN_CUSTOMER_DEL 66607272 21-JAN-17 3130541784 4728029184 .66CMDS PSN_CUSTOMER_UPD_20160901 351127588 11-AUG-16 1.3343E+10 2.0420E+10 .65CMDS PSN_HLDR_UPD 219959628 04-NOV-16 8798385120 1.4997E+10 .59CMDS PURVIEWINFO 12383109 13-JAN-17 383876379 571473920 .67CMDS STD_CONTRACT_NULL 1674265 16-JUN-15 112175755 166723584 .67CMDS SUSPECT_1_0 11442724 07-SEP-14 217411756 318767104 .68CMDS SUSPECT_3_0 47021762 07-SEP-14 799369954 1207959552 .66CMDS SUSPECT_4_0 2980964 08-SEP-14 56638316 83886080 .68CMDS SUSPECT_4_1 2980964 08-SEP-14 74524100 109051904 .68CMDS SUSPECT_5_0 4629724 08-SEP-14 101853928 150994944 .67CMDS TASKTRACE 1169349 23-FEB-15 56128752 83886080 .67CMDS TTEL_ERROR_N 6398147 11-JUL-14 326305497 545259520 .6CMDS TTT 3289563 15-JAN-15 65791260 100663296 .65CMDS T_CUST_INFO_1512 44795595 04-DEC-15 313569165 594542592 .53CMDS VIPINFO_3 3113050 01-APR-15 31130500 52428800 .59CMDS ZB_DUP_PARTY_RELATION 1238876 05-JAN-15 44599536 1708130304 .03CMDS ZB_DUP_PARTY_RELATION_12_A 35121535 15-JAN-15 351215350 603979776 .58CMDS ZB_MUL_BRANCH_PARTY_STAT 9914140 15-SEP-15 99141400 170917888 .58CMDS ZB_PERSON_PK_FLD_DUP_0529 1096878 29-MAY-15 10968780 18874368 .58CMDS ZB_TELREUSED_HLDR 1339541 19-MAY-15 25451279 36700160 .69CMDS ZB_TELREUSED_HLDR_2000 4508181 27-MAY-15 99179982 142606336 .7CMDS ZB_TELREUSED_STAT_INTER_PROV 3959576 04-JUN-15 59393640 94371840 .6354 rows selected.
最后整理结果:
| APPL_BNFR | 频繁delete insert |
| APPL_INSURED | 频繁delete insert |
| APPL_STATE | 频繁delete insert |
| BACK_PERSON_REP | 重复数据清理数据表 |
| BINDPOLINFO_L_1 | 备份数据表 |
| BINDPOLOPTION | 只insert |
| CONTACT_COMB | 频繁delete insert |
| CONTACT_LIST | 频繁delete insert |
| CUSTOMINFO_E_SINGLE_CNTR | 新表 |
| CUST_RELATION_UPD | 原归并用,现在已经停用 |
| C_CUST_RELATION_UPD | 原归并用,现在已经停用 |
| C_INSURED_UPD | 原归并用,现在已经停用 |
| C_PSN_CNTR_HOLDER_SINCR_SR1 | 备份数据表 |
| C_PSN_CNTR_HOLDER_SINCR_SR2 | 备份数据表 |
| C_PSN_HLDR_UPD | 原归并用,现在已经停用 |
| GRP_CNTR_HLDR | 频繁delete insert |
| GRP_CUSTOMER | 频繁delete insert |
| GRP_PARTY_RELATION | 频繁delete insert |
| GRP_PERSON | 频繁delete insert |
| HTEL_ERROR_N | 备份数据表 |
| INSURED_BACKUP | 备份数据表 |
| INSURED_UPD | 原归并用,现在已经停用 |
| JIEGUO20161227 | 数据提取数据表 |
| MOBILE_1 | 数据提取数据表 |
| MOBILE_3 | 数据提取数据表 |
| OTEL_ERROR_N | 数据提取数据表 |
| PARTY | 新表 |
| PARTYID_DISTINCT | 重复数据清理数据表 |
| PASSWORDSTAT | 只insert、update |
| PERSON_DELETED | 重复数据清理数据表 |
| PID_RELATION_1 | 备份数据表 |
| PID_RELATION_2 | 备份数据表 |
| PSN_CUSTOMER_DEL | 只insert |
| PSN_CUSTOMER_UPD_20160901 | 备份数据表 |
| PSN_HLDR_UPD | 原归并用,现在已经停用 |
| PURVIEWINFO | 只insert、update |
| STD_CONTRACT_NULL | 备份数据表 |
| SUSPECT_1_0 | 数据提取数据表 |
| SUSPECT_3_0 | 数据提取数据表 |
| SUSPECT_4_0 | 数据提取数据表 |
| SUSPECT_4_1 | 数据提取数据表 |
| SUSPECT_5_0 | 数据提取数据表 |
| TASKTRACE | 原抽取用,现在已经停用 |
| TTEL_ERROR_N | 数据提取数据表 |
| TTT | 数据提取数据表 |
| T_CUST_INFO_1512 | 数据提取数据表 |
| VIPINFO_3 | 数据提取数据表 |
| ZB_DUP_PARTY_RELATION | 重复数据清理数据表 |
| ZB_DUP_PARTY_RELATION_12_A | 重复数据清理数据表 |
| ZB_MUL_BRANCH_PARTY_STAT | 重复数据清理数据表 |
| ZB_PERSON_PK_FLD_DUP_0529 | 重复数据清理数据表 |
| ZB_TELREUSED_HLDR | 重复数据清理数据表 |
| ZB_TELREUSED_HLDR_2000 | 重复数据清理数据表 |
| ZB_TELREUSED_STAT_INTER_PROV | 重复数据清理数据表 |
| psn_cntr_holder | |
| insured | |
| std_CONTRACT | |
| beneficiary | |
| person | |
| party_relation | |
| CUST_RELATION |
整理之前的表空间使用情况:
TABLESPACE_NAME SUM_SPACE(M) SUM_BLOCKS USED_SPACE(M) USED_RATE(%) FREE_SPACE(M)------------------------------ ------------ ---------- ------------- ------------ -------------CUST 2097096.93 268428407 1982107.8 94.52 114989.13TBS210000 65534 8388352 59268.37 90.44 6265.63TBS140000 65534 8388352 58680.31 89.54 6853.69TBS320000 196602 25165056 170611.44 86.78 25990.56TBS440000 196602 25165056 166456.06 84.67 30145.94TBS650000 65534 8388352 54905.75 83.78 10628.25CMDSIDXTBS 2194843 280939904 1775170.37 80.88 419672.63TBS310000 98301 12582528 76889 78.22 21412TBS420000 98301 12582528 76621.62 77.95 21679.38TBS220000 32767 4194176 25470.69 77.73 7296.31TBS510000 196602 25165056 148146.69 75.35 48455.31TBS350000 98301 12582528 72193.31 73.44 26107.69TBS330000 98301 12582528 70315.31 71.53 27985.69TBS110000 49151 6291328 34597.12 70.39 14553.88TBS430000 163835 20970880 114531.06 69.91 49303.94SYSTEM 2048 262144 1413.19 69 634.81TBS530000 65534 8388352 44278.81 67.57 21255.19TBS150000 65534 8388352 43737.12 66.74 21796.88TBS620000 65534 8388352 43712.69 66.7 21821.31TBS340000 98301 12582528 64618.12 65.73 33682.88TBS610000 98301 12582528 62513.25 63.59 35787.75TBS520000 32767 4194176 20766.56 63.38 12000.44TBS410000 196602 25165056 123419.87 62.78 73182.13TBS230000 163835 20970880 101563.44 61.99 62271.56TBS370000 294903 37747584 182646.81 61.93 112256.19TBS660000 98301 12582528 59170.06 60.19 39130.94TBS130000 196602 25165056 117995.19 60.02 78606.81TBS450000 98301 12582528 55677.87 56.64 42623.13TBS360000 98301 12582528 52901.12 53.82 45399.88TBS640000 32767 4194176 15780 48.16 16987TBS120000 32767 4194176 15653.94 47.77 17113.06TBS000002 98301 12582528 44034.25 44.8 54266.75TBS210200 32767 4194176 13331.94 40.69 19435.06TBS370200 32767 4194176 12572.31 38.37 20194.69TBS330200 32767 4194176 11091.87 33.85 21675.13TBS440200 32767 4194176 9439 28.81 23328TBS350200 32767 4194176 9103.87 27.78 23663.13UNDOTBS1 553834.95 70890874 123857.39 22.36 429977.56TBS460000 32767 4194176 6132.94 18.72 26634.06SYSAUX 65534.98 8388478 11063.17 16.88 54471.81TBS630000 32767 4194176 3667.62 11.19 29099.38USERS 512 65536 39.75 7.76 472.25CMDSDATTBS 163835 20970880 8393 5.12 155442TBS850000 32767 4194176 794.69 2.43 31972.31UNDOTBS2 163837.95 20971258 3099.57 1.89 160738.38TBS_OGG 10240 1310720 1 .01 10239
表的大小:
TABLE_NAME ROW_MOVE NUM_ROWS------------------------------ -------- ----------BENEFICIARY ENABLED 0APPL_BNFR ENABLED 1617277GRP_PERSON ENABLED 10076783GRP_PARTY_RELATION ENABLED 13545920GRP_CUSTOMER ENABLED 13639704APPL_INSURED ENABLED 30180886GRP_CNTR_HLDR ENABLED 49157672APPL_STATE ENABLED 57509863PARTY_RELATION ENABLED 739262989PERSON ENABLED 1038646626CUST_RELATION ENABLED 1166641056TABLE_NAME ROW_MOVE NUM_ROWS------------------------------ -------- ----------CONTACT_COMB ENABLED 1249703629STD_CONTRACT ENABLED 1369860819PSN_CNTR_HOLDER ENABLED 1403102188INSURED ENABLED 1715030701CONTACT_LIST ENABLED 3800662127
整理脚本
echo `date +"%B %d %H:%M:%S"` `hostname` starting... >> $ORACLE_HOME/log/shrink_cmds_20170127.log$ORACLE_HOME/bin/sqlplus -S /nolog<<!connect / as sysdba;set timing on;alter session set sort_area_size=1024000000;alter session set sort_multiblock_read_count=128;alter session set db_file_multiblock_read_count=128;alter table CMDS.APPL_BNFR shrink space cascade;commit;alter table CMDS.APPL_INSURED shrink space cascade;commit;alter table CMDS.APPL_STATE shrink space cascade;commit;alter table CMDS.CONTACT_COMB shrink space cascade;commit;alter table CMDS.CONTACT_LIST shrink space cascade;commit;alter table CMDS.GRP_CNTR_HLDR shrink space cascade;commit;alter table CMDS.GRP_CUSTOMER shrink space cascade;commit;alter table CMDS.GRP_PARTY_RELATION shrink space cascade;commit;alter table CMDS.GRP_PERSON shrink space cascade;commit;alter table CMDS.PSN_CNTR_HOLDER shrink space cascade;commit;alter table CMDS.INSURED shrink space cascade;commit;alter table CMDS.STD_CONTRACT shrink space cascade;commit;alter table CMDS.BENEFICIARY shrink space cascade;commit;alter table CMDS.PERSON shrink space cascade;commit;alter table CMDS.PARTY_RELATION shrink space cascade;commit;alter table CMDS.CUST_RELATION shrink space cascade;commit;exec DBMS_STATS.GATHER_table_STATS ('CMDS','APPL_BNFR',estimate_percent => dbms_stats.auto_sample_size,method_opt => 'for all columns size auto',degree => 15,cascade => true);exec DBMS_STATS.GATHER_table_STATS ('CMDS','APPL_INSURED',estimate_percent => dbms_stats.auto_sample_size,method_opt => 'for all columns size auto',degree => 15,cascade => true);exec DBMS_STATS.GATHER_table_STATS ('CMDS','APPL_STATE',estimate_percent => dbms_stats.auto_sample_size,method_opt => 'for all columns size auto',degree => 15,cascade => true);exec DBMS_STATS.GATHER_table_STATS ('CMDS','CONTACT_COMB',estimate_percent => dbms_stats.auto_sample_size,method_opt => 'for all columns size auto',degree => 15,cascade => true);exec DBMS_STATS.GATHER_table_STATS ('CMDS','CONTACT_LIST',estimate_percent => dbms_stats.auto_sample_size,method_opt => 'for all columns size auto',degree => 15,cascade => true);exec DBMS_STATS.GATHER_table_STATS ('CMDS','GRP_CNTR_HLDR',estimate_percent => dbms_stats.auto_sample_size,method_opt => 'for all columns size auto',degree => 15,cascade => true);exec DBMS_STATS.GATHER_table_STATS ('CMDS','GRP_CUSTOMER',estimate_percent => dbms_stats.auto_sample_size,method_opt => 'for all columns size auto',degree => 15,cascade => true);exec DBMS_STATS.GATHER_table_STATS ('CMDS','PSN_CNTR_HOLDER',estimate_percent => dbms_stats.auto_sample_size,method_opt => 'for all columns size auto',degree => 15,cascade => true);exec DBMS_STATS.GATHER_table_STATS ('CMDS','STD_CONTRACT',estimate_percent => dbms_stats.auto_sample_size,method_opt => 'for all columns size auto',degree => 15,cascade => true);exec DBMS_STATS.GATHER_table_STATS ('CMDS','GRP_PARTY_RELATION',estimate_percent => dbms_stats.auto_sample_size,method_opt => 'for all columns size auto',degree => 15,cascade => true);exec DBMS_STATS.GATHER_table_STATS ('CMDS','GRP_PERSON',estimate_percent => dbms_stats.auto_sample_size,method_opt => 'for all columns size auto',degree => 15,cascade => true);exec DBMS_STATS.GATHER_table_STATS ('CMDS','INSURED',estimate_percent => dbms_stats.auto_sample_size,method_opt => 'for all columns size auto',degree => 15,cascade => true);exec DBMS_STATS.GATHER_table_STATS ('CMDS','BENEFICIARY',estimate_percent => dbms_stats.auto_sample_size,method_opt => 'for all columns size auto',degree => 15,cascade => true);exec DBMS_STATS.GATHER_table_STATS ('CMDS','PERSON',estimate_percent => dbms_stats.auto_sample_size,method_opt => 'for all columns size auto',degree => 15,cascade => true);exec DBMS_STATS.GATHER_table_STATS ('CMDS','PARTY_RELATION',estimate_percent => dbms_stats.auto_sample_size,method_opt => 'for all columns size auto',degree => 15,cascade => true);exec DBMS_STATS.GATHER_table_STATS ('CMDS','CUST_RELATION',estimate_percent => dbms_stats.auto_sample_size,method_opt => 'for all columns size auto',degree => 15,cascade => true);exit;!echo `date +"%B %d %H:%M:%S"` `hostname` end ... >> $ORACLE_HOME/log/shrink_cmds_20170127.log
完成之后的表空间情况:
TABLESPACE_NAME SUM_SPACE(M) SUM_BLOCKS USED_SPACE(M) USED_RATE(%) FREE_SPACE(M)------------------------------ ------------ ---------- ------------- ------------ -------------CUST 2097096.93 268428407 1983211.8 94.57 113885.13TBS210000 65534 8388352 58583.5 89.39 6950.5TBS140000 65534 8388352 57379.62 87.56 8154.38TBS320000 196602 25165056 166830.94 84.86 29771.06TBS650000 65534 8388352 52828.94 80.61 12705.06TBS440000 196602 25165056 153142.94 77.89 43459.06TBS420000 98301 12582528 74099.75 75.38 24201.25TBS510000 196602 25165056 147728 75.14 48874TBS220000 32767 4194176 24342.69 74.29 8424.31CMDSIDXTBS 2194843 280939904 1612798.56 73.48 582044.44TBS310000 98301 12582528 71163.25 72.39 27137.75TBS110000 49151 6291328 35264.31 71.75 13886.69TBS350000 98301 12582528 70178.06 71.39 28122.94TBS330000 98301 12582528 68109.81 69.29 30191.19SYSTEM 2048 262144 1413.19 69 634.81TBS430000 163835 20970880 112369.44 68.59 51465.56TBS530000 65534 8388352 44357.44 67.69 21176.56TBS620000 65534 8388352 42577.56 64.97 22956.44TBS340000 98301 12582528 63759.94 64.86 34541.06TBS150000 65534 8388352 42301.25 64.55 23232.75TBS520000 32767 4194176 20951.44 63.94 11815.56TBS610000 98301 12582528 62170.37 63.24 36130.63TBS230000 163835 20970880 100844.06 61.55 62990.94TBS410000 196602 25165056 120568.94 61.33 76033.06TBS370000 294903 37747584 178076.19 60.38 116826.81TBS130000 196602 25165056 116789.06 59.4 79812.94TBS660000 98301 12582528 57226.12 58.22 41074.88TBS450000 98301 12582528 54508 55.45 43793TBS360000 98301 12582528 52396.75 53.3 45904.25TBS120000 32767 4194176 15767.12 48.12 16999.88TBS640000 32767 4194176 15709.81 47.94 17057.19TBS000002 98301 12582528 44410.81 45.18 53890.19TBS210200 32767 4194176 12610.94 38.49 20156.06TBS370200 32767 4194176 12490.87 38.12 20276.13TBS330200 32767 4194176 10765.62 32.86 22001.38TBS440200 32767 4194176 9236.81 28.19 23530.19TBS350200 32767 4194176 8944.87 27.3 23822.13SYSAUX 65534.98 8388478 12071.92 18.42 53463.06TBS460000 32767 4194176 5505.87 16.8 27261.13TBS630000 32767 4194176 3513.56 10.72 29253.44USERS 512 65536 39.75 7.76 472.25CMDSDATTBS 163835 20970880 8457 5.16 155378UNDOTBS1 553834.95 70890874 16979.2 3.07 536855.75TBS850000 32767 4194176 721.19 2.2 32045.81UNDOTBS2 163837.95 20971258 3374.89 2.06 160463.06TBS_OGG 10240 1310720 1 .01 10239