[MCOL-685] support dropping extents in addition to partitions Created: 2017-04-25  Updated: 2022-11-05  Resolved: 2022-11-05

Status: Closed
Project: MariaDB ColumnStore
Component/s: MariaDB Server
Affects Version/s: 1.0.8
Fix Version/s: Icebox

Type: New Feature Priority: Major
Reporter: Allan Assignee: Todd Stoffel (Inactive)
Resolution: Won't Do Votes: 1
Labels: Performance
Environment:

centos 7; XFS


Attachments: Text File mcsinfo.txt    
Issue Links:
PartOf
includes MCOL-680 cpimport not creating clean (new) par... Closed
is part of MCOL-700 Failure of clientrotator.cpp causes D... Closed
Epic Link: ColumnStore Compatibility Improvements

 Description   

CalShowPartitions is not working properly to show partitions

{{MariaDB [lkqd_stats]> select theDate,count(theDate) from lkqd_daily group by 1 order by 1;
--------------------------+

theDate count(theDate)

--------------------------+

2017-04-13 30646909
2017-04-14 25754602

--------------------------+
2 rows in set (1.02 sec)

MariaDB [lkqd_stats]> select calShowPartitionsByValue('lkqd_daily','theDate','2017-04-13','2017-04-13');
ERROR 1815 (HY000): Internal error: IDB-2040: No partition found for the given value range.
MariaDB [lkqd_stats]> select calShowPartitionsByValue('lkqd_daily','theDate','2017-04-14','2017-04-14');
ERROR 1815 (HY000): Internal error: IDB-2040: No partition found for the given value range.
MariaDB [lkqd_stats]> select calShowPartitions('lkqd_daily','theDate');
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

calShowPartitions('lkqd_daily','theDate')

--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Part# Min Max Status
0.0.1 2017-04-13 2017-04-14 Enabled
0.1.2 2017-04-13 2017-04-14 Enabled
0.2.1 2017-04-13 2017-04-14 Enabled
0.3.2 2017-04-13 2017-04-14 Enabled

--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
1 row in set (0.00 sec)}}



 Comments   
Comment by David Hall (Inactive) [ 2017-04-25 ]

This may be caused by milli-seconds not matching the way they should.

Comment by Andrew Hutchings (Inactive) [ 2017-04-26 ]

David.Hall:
Milliseconds shouldn't count because this is a date column and the input is also being parsed as a date. It should convert this into an int range of 132203390 to 132203454 (the 64 difference due to reserved values in the date struct). I don't believe any of that code is TZ dependent either which rules out a potential related problem I thought of.

allan.wax:
I've tried to reproduce this problem without success. Can you please run the following and attach the output so I can get a clearer picture of your extents and figure out where my test differs?:

From the MariaDB command prompt:

SELECT * FROM INFORMATION_SCHEMA.COLUMNSTORE_COLUMNS WHERE TABLE_NAME='lkqd_daily'\G

From the shell:

editem -d

If it isn't in your path you can find it in /usr/local/mariadb/columnstore/bin/

Comment by Allan [ 2017-04-26 ]

MariaDB [lkqd_stats]> SELECT * FROM INFORMATION_SCHEMA.COLUMNSTORE_COLUMNS WHERE TABLE_NAME='lkqd_daily'\G
*************************** 1. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: thedate
           OBJECT_ID: 3001
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: date
       COLUMN_LENGTH: 4
     COLUMN_POSITION: 0
      COLUMN_DEFAULT: 1400-01-01
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 0
    COMPRESSION_TYPE: Snappy
*************************** 2. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: supply_source_id
           OBJECT_ID: 3002
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: int
       COLUMN_LENGTH: 4
     COLUMN_POSITION: 1
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 0
    COMPRESSION_TYPE: Snappy
*************************** 3. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: supply_source_name
           OBJECT_ID: 3003
DICTIONARY_OBJECT_ID: 3067
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: varchar
       COLUMN_LENGTH: 255
     COLUMN_POSITION: 2
      COLUMN_DEFAULT: NULL
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 0
    COMPRESSION_TYPE: Snappy
*************************** 4. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: supply_partner_id
           OBJECT_ID: 3004
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: int
       COLUMN_LENGTH: 4
     COLUMN_POSITION: 3
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 0
    COMPRESSION_TYPE: Snappy
*************************** 5. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: supply_partner_name
           OBJECT_ID: 3005
DICTIONARY_OBJECT_ID: 3068
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: varchar
       COLUMN_LENGTH: 255
     COLUMN_POSITION: 4
      COLUMN_DEFAULT: NULL
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 0
    COMPRESSION_TYPE: Snappy
*************************** 6. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: domain_id
           OBJECT_ID: 3006
DICTIONARY_OBJECT_ID: 3069
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: varchar
       COLUMN_LENGTH: 255
     COLUMN_POSITION: 5
      COLUMN_DEFAULT: NULL
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 7. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: domain_name
           OBJECT_ID: 3007
DICTIONARY_OBJECT_ID: 3070
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: varchar
       COLUMN_LENGTH: 255
     COLUMN_POSITION: 6
      COLUMN_DEFAULT: NULL
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 8. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: appname_id
           OBJECT_ID: 3008
DICTIONARY_OBJECT_ID: 3071
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: varchar
       COLUMN_LENGTH: 511
     COLUMN_POSITION: 7
      COLUMN_DEFAULT: NULL
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 9. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: appname_name
           OBJECT_ID: 3009
DICTIONARY_OBJECT_ID: 3072
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: varchar
       COLUMN_LENGTH: 511
     COLUMN_POSITION: 8
      COLUMN_DEFAULT: NULL
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 10. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: demand_partner_id
           OBJECT_ID: 3010
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: int
       COLUMN_LENGTH: 4
     COLUMN_POSITION: 9
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 0
    COMPRESSION_TYPE: Snappy
*************************** 11. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: demand_partner_name
           OBJECT_ID: 3011
DICTIONARY_OBJECT_ID: 3073
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: varchar
       COLUMN_LENGTH: 255
     COLUMN_POSITION: 10
      COLUMN_DEFAULT: NULL
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 0
    COMPRESSION_TYPE: Snappy
*************************** 12. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: demand_deal_id
           OBJECT_ID: 3012
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: int
       COLUMN_LENGTH: 4
     COLUMN_POSITION: 11
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 0
    COMPRESSION_TYPE: Snappy
*************************** 13. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: demand_deal_name
           OBJECT_ID: 3013
DICTIONARY_OBJECT_ID: 3074
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: varchar
       COLUMN_LENGTH: 255
     COLUMN_POSITION: 12
      COLUMN_DEFAULT: NULL
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 0
    COMPRESSION_TYPE: Snappy
*************************** 14. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: demand_tag_id
           OBJECT_ID: 3014
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: int
       COLUMN_LENGTH: 4
     COLUMN_POSITION: 13
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 15. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: demand_tag_name
           OBJECT_ID: 3015
DICTIONARY_OBJECT_ID: 3075
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: varchar
       COLUMN_LENGTH: 255
     COLUMN_POSITION: 14
      COLUMN_DEFAULT: NULL
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 0
    COMPRESSION_TYPE: Snappy
*************************** 16. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: demand_tag_type
           OBJECT_ID: 3016
DICTIONARY_OBJECT_ID: 3076
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: varchar
       COLUMN_LENGTH: 255
     COLUMN_POSITION: 15
      COLUMN_DEFAULT: NULL
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 0
    COMPRESSION_TYPE: Snappy
*************************** 17. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: device_id
           OBJECT_ID: 3017
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: int
       COLUMN_LENGTH: 4
     COLUMN_POSITION: 16
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 18. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: device_name
           OBJECT_ID: 3018
DICTIONARY_OBJECT_ID: 3077
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: varchar
       COLUMN_LENGTH: 255
     COLUMN_POSITION: 17
      COLUMN_DEFAULT: NULL
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 19. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: country_id
           OBJECT_ID: 3019
DICTIONARY_OBJECT_ID: 3078
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: varchar
       COLUMN_LENGTH: 15
     COLUMN_POSITION: 18
      COLUMN_DEFAULT: NULL
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 20. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: country_name
           OBJECT_ID: 3020
DICTIONARY_OBJECT_ID: 3079
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: varchar
       COLUMN_LENGTH: 255
     COLUMN_POSITION: 19
      COLUMN_DEFAULT: NULL
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 21. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: ad_requests
           OBJECT_ID: 3021
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: int
       COLUMN_LENGTH: 4
     COLUMN_POSITION: 20
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 22. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: vast_ads
           OBJECT_ID: 3022
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: int
       COLUMN_LENGTH: 4
     COLUMN_POSITION: 21
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 23. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: vpaid_ads
           OBJECT_ID: 3023
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: int
       COLUMN_LENGTH: 4
     COLUMN_POSITION: 22
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 24. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: ad_responses
           OBJECT_ID: 3024
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: int
       COLUMN_LENGTH: 4
     COLUMN_POSITION: 23
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 25. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: ad_impressions
           OBJECT_ID: 3025
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: int
       COLUMN_LENGTH: 4
     COLUMN_POSITION: 24
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 26. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: vast_ad_rate
           OBJECT_ID: 3026
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: double
       COLUMN_LENGTH: 8
     COLUMN_POSITION: 25
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 27. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: vpaid_ad_rate
           OBJECT_ID: 3027
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: double
       COLUMN_LENGTH: 8
     COLUMN_POSITION: 26
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 28. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: ad_clicks
           OBJECT_ID: 3028
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: int
       COLUMN_LENGTH: 4
     COLUMN_POSITION: 27
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 29. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: ad_completed_views
           OBJECT_ID: 3029
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: int
       COLUMN_LENGTH: 4
     COLUMN_POSITION: 28
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 30. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: ad_wins
           OBJECT_ID: 3030
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: int
       COLUMN_LENGTH: 4
     COLUMN_POSITION: 29
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 31. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: ad_first_quartiles
           OBJECT_ID: 3031
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: int
       COLUMN_LENGTH: 4
     COLUMN_POSITION: 30
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 32. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: ad_mid_points
           OBJECT_ID: 3032
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: int
       COLUMN_LENGTH: 4
     COLUMN_POSITION: 31
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 33. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: ad_third_quartiles
           OBJECT_ID: 3033
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: int
       COLUMN_LENGTH: 4
     COLUMN_POSITION: 32
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 34. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: revenue
           OBJECT_ID: 3034
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: double
       COLUMN_LENGTH: 8
     COLUMN_POSITION: 33
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 35. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: site_cost
           OBJECT_ID: 3035
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: double
       COLUMN_LENGTH: 8
     COLUMN_POSITION: 34
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 36. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: profit
           OBJECT_ID: 3036
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: double
       COLUMN_LENGTH: 8
     COLUMN_POSITION: 35
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 37. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: profit_margin
           OBJECT_ID: 3037
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: double
       COLUMN_LENGTH: 8
     COLUMN_POSITION: 36
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 38. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: ad_viewability_measured_imps
           OBJECT_ID: 3038
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: int
       COLUMN_LENGTH: 4
     COLUMN_POSITION: 37
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 39. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: ad_viewable_imps
           OBJECT_ID: 3039
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: int
       COLUMN_LENGTH: 4
     COLUMN_POSITION: 38
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 40. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: request_fill_rate
           OBJECT_ID: 3040
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: double
       COLUMN_LENGTH: 8
     COLUMN_POSITION: 39
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 41. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: fill_rate
           OBJECT_ID: 3041
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: double
       COLUMN_LENGTH: 8
     COLUMN_POSITION: 40
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 42. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: win_rate
           OBJECT_ID: 3042
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: double
       COLUMN_LENGTH: 8
     COLUMN_POSITION: 41
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 43. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: efficiency_rate
           OBJECT_ID: 3043
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: double
       COLUMN_LENGTH: 8
     COLUMN_POSITION: 42
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 44. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: cpm
           OBJECT_ID: 3044
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: double
       COLUMN_LENGTH: 8
     COLUMN_POSITION: 43
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 45. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: ctr
           OBJECT_ID: 3045
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: double
       COLUMN_LENGTH: 8
     COLUMN_POSITION: 44
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 46. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: ad_first_quartile_rate
           OBJECT_ID: 3046
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: double
       COLUMN_LENGTH: 8
     COLUMN_POSITION: 45
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 47. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: ad_midpoint_rate
           OBJECT_ID: 3047
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: double
       COLUMN_LENGTH: 8
     COLUMN_POSITION: 46
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 48. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: ad_third_quartile_rate
           OBJECT_ID: 3048
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: double
       COLUMN_LENGTH: 8
     COLUMN_POSITION: 47
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 49. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: vtr
           OBJECT_ID: 3049
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: double
       COLUMN_LENGTH: 8
     COLUMN_POSITION: 48
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 50. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: ad_viewability_measured_rate
           OBJECT_ID: 3050
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: double
       COLUMN_LENGTH: 8
     COLUMN_POSITION: 49
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 51. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: adv_paid_responses
           OBJECT_ID: 3051
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: int
       COLUMN_LENGTH: 4
     COLUMN_POSITION: 50
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 52. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: adv_paid_attempts
           OBJECT_ID: 3052
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: int
       COLUMN_LENGTH: 4
     COLUMN_POSITION: 51
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 53. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: adv_paid_successes
           OBJECT_ID: 3053
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: int
       COLUMN_LENGTH: 4
     COLUMN_POSITION: 52
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 54. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: adv_paid_opt_outs
           OBJECT_ID: 3054
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: int
       COLUMN_LENGTH: 4
     COLUMN_POSITION: 53
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 55. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: adv_paid_timeouts
           OBJECT_ID: 3055
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: int
       COLUMN_LENGTH: 4
     COLUMN_POSITION: 54
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 56. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: adv_paid_errors
           OBJECT_ID: 3056
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: int
       COLUMN_LENGTH: 4
     COLUMN_POSITION: 55
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 57. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: adv_paid_success_rate
           OBJECT_ID: 3057
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: double
       COLUMN_LENGTH: 8
     COLUMN_POSITION: 56
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 58. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: adv_paid_opt_out_rate
           OBJECT_ID: 3058
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: double
       COLUMN_LENGTH: 8
     COLUMN_POSITION: 57
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 59. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: adv_paid_timeout_rate
           OBJECT_ID: 3059
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: double
       COLUMN_LENGTH: 8
     COLUMN_POSITION: 58
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 60. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: adv_paid_error_rate
           OBJECT_ID: 3060
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: double
       COLUMN_LENGTH: 8
     COLUMN_POSITION: 59
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 61. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: ad_timeouts
           OBJECT_ID: 3061
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: int
       COLUMN_LENGTH: 4
     COLUMN_POSITION: 60
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 62. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: ad_timeout_rate
           OBJECT_ID: 3062
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: double
       COLUMN_LENGTH: 8
     COLUMN_POSITION: 61
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 63. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: ad_errors
           OBJECT_ID: 3063
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: int
       COLUMN_LENGTH: 4
     COLUMN_POSITION: 62
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 64. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: ad_error_rate
           OBJECT_ID: 3064
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: double
       COLUMN_LENGTH: 8
     COLUMN_POSITION: 63
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 65. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: ad_playback_errors
           OBJECT_ID: 3065
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: int
       COLUMN_LENGTH: 4
     COLUMN_POSITION: 64
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
*************************** 66. row ***************************
        TABLE_SCHEMA: lkqd_stats
          TABLE_NAME: lkqd_daily
         COLUMN_NAME: ad_playback_error_rate
           OBJECT_ID: 3066
DICTIONARY_OBJECT_ID: NULL
      LIST_OBJECT_ID: NULL
      TREE_OBJECT_ID: NULL
           DATA_TYPE: double
       COLUMN_LENGTH: 8
     COLUMN_POSITION: 65
      COLUMN_DEFAULT: 0
         IS_NULLABLE: 0
   NUMERIC_PRECISION: 10
       NUMERIC_SCALE: 0
    IS_AUTOINCREMENT: 1
    COMPRESSION_TYPE: Snappy
66 rows in set (0.22 sec)
 
 
[root@dev1 ~]# /usr/local/mariadb/columnstore/bin/editem -d
Col OID = 1001, NumExtents = 1, width = 8
0 - 8191 (8192) min: notset, max: notset, seqNum: 7, state: updating, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 1002, NumExtents = 1, width = 8
16384 - 24575 (8192) min: notset, max: notset, seqNum: 7, state: updating, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 1003, NumExtents = 1, width = 4
32768 - 36863 (4096) min: notset, max: notset, seqNum: 7, state: updating, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 1004, NumExtents = 1, width = 4
36864 - 40959 (4096) min: notset, max: notset, seqNum: 7, state: updating, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 1005, NumExtents = 1, width = 4
40960 - 45055 (4096) min: notset, max: notset, seqNum: 7, state: updating, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 1006, NumExtents = 1, width = 4
45056 - 49151 (4096) min: notset, max: notset, seqNum: 7, state: updating, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 1007, NumExtents = 1, width = 4
49152 - 53247 (4096) min: notset, max: notset, seqNum: 7, state: updating, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 1008, NumExtents = 1, width = 4
53248 - 57343 (4096) min: notset, max: notset, seqNum: 7, state: updating, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 1009, NumExtents = 1, width = 4
57344 - 61439 (4096) min: notset, max: notset, seqNum: 7, state: updating, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 1010, NumExtents = 1, width = 4
61440 - 65535 (4096) min: notset, max: notset, seqNum: 7, state: updating, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 1011, NumExtents = 1, width = 4
65536 - 69631 (4096) min: notset, max: notset, seqNum: 7, state: updating, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 1021, NumExtents = 1, width = 8
69632 - 77823 (8192) min: notset, max: notset, seqNum: 7, state: updating, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 1022, NumExtents = 1, width = 8
86016 - 94207 (8192) min: notset, max: notset, seqNum: 7, state: updating, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 1023, NumExtents = 1, width = 8
102400 - 110591 (8192) min: notset, max: notset, seqNum: 7, state: updating, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 1024, NumExtents = 1, width = 4
118784 - 122879 (4096) min: notset, max: notset, seqNum: 7, state: updating, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 1025, NumExtents = 1, width = 4
122880 - 126975 (4096) min: notset, max: notset, seqNum: 7, state: updating, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 1026, NumExtents = 1, width = 4
126976 - 131071 (4096) min: notset, max: notset, seqNum: 7, state: updating, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 1027, NumExtents = 1, width = 4
131072 - 135167 (4096) min: notset, max: notset, seqNum: 7, state: updating, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 1028, NumExtents = 1, width = 4
135168 - 139263 (4096) min: notset, max: notset, seqNum: 7, state: updating, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 1029, NumExtents = 1, width = 4
139264 - 143359 (4096) min: notset, max: notset, seqNum: 7, state: updating, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 1030, NumExtents = 1, width = 4
143360 - 147455 (4096) min: notset, max: notset, seqNum: 7, state: updating, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 1031, NumExtents = 1, width = 4
147456 - 151551 (4096) min: notset, max: notset, seqNum: 7, state: updating, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 1032, NumExtents = 1, width = 8
151552 - 159743 (8192) min: notset, max: notset, seqNum: 7, state: updating, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 1033, NumExtents = 1, width = 4
167936 - 172031 (4096) min: notset, max: notset, seqNum: 7, state: updating, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 1034, NumExtents = 1, width = 4
172032 - 176127 (4096) min: notset, max: notset, seqNum: 7, state: updating, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 1035, NumExtents = 1, width = 4
176128 - 180223 (4096) min: notset, max: notset, seqNum: 7, state: updating, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 1036, NumExtents = 1, width = 1
180224 - 181247 (1024) min: notset, max: notset, seqNum: 7, state: updating, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 1037, NumExtents = 1, width = 4
181248 - 185343 (4096) min: notset, max: notset, seqNum: 7, state: updating, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 1038, NumExtents = 1, width = 4
185344 - 189439 (4096) min: notset, max: notset, seqNum: 7, state: updating, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 1039, NumExtents = 1, width = 8
189440 - 197631 (8192) min: notset, max: notset, seqNum: 7, state: updating, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 1040, NumExtents = 1, width = 8
205824 - 214015 (8192) min: notset, max: notset, seqNum: 7, state: updating, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 1041, NumExtents = 1, width = 4
222208 - 226303 (4096) min: notset, max: notset, seqNum: 7, state: updating, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 1042, NumExtents = 1, width = 8
226304 - 234495 (8192) min: -1, max: 0, seqNum: 7, state: updating, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Dct OID = 2001
8192 - 16383 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Dct OID = 2004
24576 - 32767 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Dct OID = 2061
77824 - 86015 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Dct OID = 2064
94208 - 102399 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Dct OID = 2067
110592 - 118783 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Dct OID = 2070
159744 - 167935 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Dct OID = 2073
197632 - 205823 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Dct OID = 2076
214016 - 222207 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 3001, NumExtents = 4, width = 4
15492096 - 15496191 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 4095; status: avail
16053248 - 16057343 (4096) min: 132203454, max: 132203454, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 4095; status: avail
16614400 - 16618495 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 4095; status: avail
17159168 - 17163263 (4096) min: 132203454, max: 132203454, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 288; status: avail
 
Col OID = 3002, NumExtents = 4, width = 4
15496192 - 15500287 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 4095; status: avail
16057344 - 16061439 (4096) min: 6186, max: 249254, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 4095; status: avail
16618496 - 16622591 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 4095; status: avail
17163264 - 17167359 (4096) min: 6186, max: 249254, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 288; status: avail
 
Col OID = 3003, NumExtents = 4, width = 8
15500288 - 15508479 (8192) min: notset, max: notset, seqNum: 1, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 8191; status: avail
16061440 - 16069631 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 8191; status: avail
16622592 - 16630783 (8192) min: notset, max: notset, seqNum: 1, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 8191; status: avail
17167360 - 17175551 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 576; status: avail
 
Col OID = 3004, NumExtents = 4, width = 4
15508480 - 15512575 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 4095; status: avail
16069632 - 16073727 (4096) min: 1104, max: 26988, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 4095; status: avail
16630784 - 16634879 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 4095; status: avail
17175552 - 17179647 (4096) min: 1104, max: 26988, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 288; status: avail
 
Col OID = 3005, NumExtents = 4, width = 8
15512576 - 15520767 (8192) min: notset, max: notset, seqNum: 1, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 8191; status: avail
16073728 - 16081919 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 8191; status: avail
16634880 - 16643071 (8192) min: notset, max: notset, seqNum: 1, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 8191; status: avail
17179648 - 17187839 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 576; status: avail
 
Col OID = 3006, NumExtents = 4, width = 8
15520768 - 15528959 (8192) min: notset, max: notset, seqNum: 1, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 8191; status: avail
16081920 - 16090111 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 8191; status: avail
16643072 - 16651263 (8192) min: notset, max: notset, seqNum: 1, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 8191; status: avail
17187840 - 17196031 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 576; status: avail
 
Col OID = 3007, NumExtents = 4, width = 8
15528960 - 15537151 (8192) min: notset, max: notset, seqNum: 1, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 8191; status: avail
16090112 - 16098303 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 8191; status: avail
16651264 - 16659455 (8192) min: notset, max: notset, seqNum: 1, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 8191; status: avail
17196032 - 17204223 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 576; status: avail
 
Col OID = 3008, NumExtents = 4, width = 8
15537152 - 15545343 (8192) min: notset, max: notset, seqNum: 1, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 8191; status: avail
16098304 - 16106495 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 8191; status: avail
16659456 - 16667647 (8192) min: notset, max: notset, seqNum: 1, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 8191; status: avail
17204224 - 17212415 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 576; status: avail
 
Col OID = 3009, NumExtents = 4, width = 8
15545344 - 15553535 (8192) min: notset, max: notset, seqNum: 1, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 8191; status: avail
16106496 - 16114687 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 8191; status: avail
16667648 - 16675839 (8192) min: notset, max: notset, seqNum: 1, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 8191; status: avail
17212416 - 17220607 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 576; status: avail
 
Col OID = 3010, NumExtents = 4, width = 4
15553536 - 15557631 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 4095; status: avail
16114688 - 16118783 (4096) min: 1433, max: 21666, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 4095; status: avail
16675840 - 16679935 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 4095; status: avail
17220608 - 17224703 (4096) min: 1433, max: 21666, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 288; status: avail
 
Col OID = 3011, NumExtents = 4, width = 8
15557632 - 15565823 (8192) min: notset, max: notset, seqNum: 1, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 8191; status: avail
16118784 - 16126975 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 8191; status: avail
16679936 - 16688127 (8192) min: notset, max: notset, seqNum: 1, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 8191; status: avail
17224704 - 17232895 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 576; status: avail
 
Col OID = 3012, NumExtents = 4, width = 4
15565824 - 15569919 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 4095; status: avail
16126976 - 16131071 (4096) min: 1951, max: 272250, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 4095; status: avail
16688128 - 16692223 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 4095; status: avail
17232896 - 17236991 (4096) min: 1951, max: 272250, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 288; status: avail
 
Col OID = 3013, NumExtents = 4, width = 8
15569920 - 15578111 (8192) min: notset, max: notset, seqNum: 1, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 8191; status: avail
16131072 - 16139263 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 8191; status: avail
16692224 - 16700415 (8192) min: notset, max: notset, seqNum: 1, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 8191; status: avail
17236992 - 17245183 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 576; status: avail
 
Col OID = 3014, NumExtents = 4, width = 4
15578112 - 15582207 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 4095; status: avail
16139264 - 16143359 (4096) min: 2368, max: 284075, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 4095; status: avail
16700416 - 16704511 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 4095; status: avail
17245184 - 17249279 (4096) min: 2368, max: 284075, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 288; status: avail
 
Col OID = 3015, NumExtents = 4, width = 8
15582208 - 15590399 (8192) min: notset, max: notset, seqNum: 1, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 8191; status: avail
16143360 - 16151551 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 8191; status: avail
16704512 - 16712703 (8192) min: notset, max: notset, seqNum: 1, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 8191; status: avail
17249280 - 17257471 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 576; status: avail
 
Col OID = 3016, NumExtents = 4, width = 8
15590400 - 15598591 (8192) min: notset, max: notset, seqNum: 1, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 8191; status: avail
16151552 - 16159743 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 8191; status: avail
16712704 - 16720895 (8192) min: notset, max: notset, seqNum: 1, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 8191; status: avail
17257472 - 17265663 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 576; status: avail
 
Col OID = 3017, NumExtents = 4, width = 4
15598592 - 15602687 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 4095; status: avail
16159744 - 16163839 (4096) min: 2, max: 14, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 4095; status: avail
16720896 - 16724991 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 4095; status: avail
17265664 - 17269759 (4096) min: 2, max: 14, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 288; status: avail
 
Col OID = 3018, NumExtents = 4, width = 8
15602688 - 15610879 (8192) min: notset, max: notset, seqNum: 1, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 8191; status: avail
16163840 - 16172031 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 8191; status: avail
16724992 - 16733183 (8192) min: notset, max: notset, seqNum: 1, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 8191; status: avail
17269760 - 17277951 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 576; status: avail
 
Col OID = 3019, NumExtents = 4, width = 8
15610880 - 15619071 (8192) min: notset, max: notset, seqNum: 1, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 8191; status: avail
16172032 - 16180223 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 8191; status: avail
16733184 - 16741375 (8192) min: notset, max: notset, seqNum: 1, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 8191; status: avail
17277952 - 17286143 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 576; status: avail
 
Col OID = 3020, NumExtents = 4, width = 8
15619072 - 15627263 (8192) min: notset, max: notset, seqNum: 1, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 8191; status: avail
16180224 - 16188415 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 8191; status: avail
16741376 - 16749567 (8192) min: notset, max: notset, seqNum: 1, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 8191; status: avail
17286144 - 17294335 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 576; status: avail
 
Col OID = 3021, NumExtents = 4, width = 4
15627264 - 15631359 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 4095; status: avail
16188416 - 16192511 (4096) min: 0, max: 6890996, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 4095; status: avail
16749568 - 16753663 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 4095; status: avail
17294336 - 17298431 (4096) min: 0, max: 1809972, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 288; status: avail
 
Col OID = 3022, NumExtents = 4, width = 4
15631360 - 15635455 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 4095; status: avail
16192512 - 16196607 (4096) min: 0, max: 75556, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 4095; status: avail
16753664 - 16757759 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 4095; status: avail
17298432 - 17302527 (4096) min: 0, max: 68103, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 288; status: avail
 
Col OID = 3023, NumExtents = 4, width = 4
15635456 - 15639551 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 4095; status: avail
16196608 - 16200703 (4096) min: 0, max: 7737, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 4095; status: avail
16757760 - 16761855 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 4095; status: avail
17302528 - 17306623 (4096) min: 0, max: 25384, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 288; status: avail
 
Col OID = 3024, NumExtents = 4, width = 4
15639552 - 15643647 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 4095; status: avail
16200704 - 16204799 (4096) min: 0, max: 75556, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 4095; status: avail
16761856 - 16765951 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 4095; status: avail
17306624 - 17310719 (4096) min: 0, max: 68103, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 288; status: avail
 
Col OID = 3025, NumExtents = 4, width = 4
15643648 - 15647743 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 4095; status: avail
16204800 - 16208895 (4096) min: 0, max: 67143, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 4095; status: avail
16765952 - 16770047 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 4095; status: avail
17310720 - 17314815 (4096) min: 0, max: 41821, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 288; status: avail
 
Col OID = 3026, NumExtents = 4, width = 8
15647744 - 15655935 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 8191; status: avail
16208896 - 16217087 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 8191; status: avail
16770048 - 16778239 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 8191; status: avail
17314816 - 17323007 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 576; status: avail
 
Col OID = 3027, NumExtents = 4, width = 8
15655936 - 15664127 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 8191; status: avail
16217088 - 16225279 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 8191; status: avail
16778240 - 16786431 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 8191; status: avail
17323008 - 17331199 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 576; status: avail
 
Col OID = 3028, NumExtents = 4, width = 4
15664128 - 15668223 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 4095; status: avail
16225280 - 16229375 (4096) min: 0, max: 403, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 4095; status: avail
16786432 - 16790527 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 4095; status: avail
17331200 - 17335295 (4096) min: 0, max: 53, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 288; status: avail
 
Col OID = 3029, NumExtents = 4, width = 4
15668224 - 15672319 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 4095; status: avail
16229376 - 16233471 (4096) min: 0, max: 34503, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 4095; status: avail
16790528 - 16794623 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 4095; status: avail
17335296 - 17339391 (4096) min: 0, max: 34827, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 288; status: avail
 
Col OID = 3030, NumExtents = 4, width = 4
15672320 - 15676415 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 4095; status: avail
16233472 - 16237567 (4096) min: 0, max: 74217, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 4095; status: avail
16794624 - 16798719 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 4095; status: avail
17339392 - 17343487 (4096) min: 0, max: 50175, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 288; status: avail
 
Col OID = 3031, NumExtents = 4, width = 4
15676416 - 15680511 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 4095; status: avail
16237568 - 16241663 (4096) min: 0, max: 47373, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 4095; status: avail
16798720 - 16802815 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 4095; status: avail
17343488 - 17347583 (4096) min: 0, max: 37655, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 288; status: avail
 
Col OID = 3032, NumExtents = 4, width = 4
15680512 - 15684607 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 4095; status: avail
16241664 - 16245759 (4096) min: 0, max: 41982, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 4095; status: avail
16802816 - 16806911 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 4095; status: avail
17347584 - 17351679 (4096) min: 0, max: 35447, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 288; status: avail
 
Col OID = 3033, NumExtents = 4, width = 4
15684608 - 15688703 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 4095; status: avail
16245760 - 16249855 (4096) min: 0, max: 38011, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 4095; status: avail
16806912 - 16811007 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 4095; status: avail
17351680 - 17355775 (4096) min: 0, max: 33661, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 288; status: avail
 
Col OID = 3034, NumExtents = 4, width = 8
15688704 - 15696895 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 8191; status: avail
16249856 - 16258047 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 8191; status: avail
16811008 - 16819199 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 8191; status: avail
17355776 - 17363967 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 576; status: avail
 
Col OID = 3035, NumExtents = 4, width = 8
15696896 - 15705087 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 8191; status: avail
16258048 - 16266239 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 8191; status: avail
16819200 - 16827391 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 8191; status: avail
17363968 - 17372159 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 576; status: avail
 
Col OID = 3036, NumExtents = 4, width = 8
15705088 - 15713279 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 8191; status: avail
16266240 - 16274431 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 8191; status: avail
16827392 - 16835583 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 8191; status: avail
17372160 - 17380351 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 576; status: avail
 
Col OID = 3037, NumExtents = 4, width = 8
15713280 - 15721471 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 8191; status: avail
16274432 - 16282623 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 8191; status: avail
16835584 - 16843775 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 8191; status: avail
17380352 - 17388543 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 576; status: avail
 
Col OID = 3038, NumExtents = 4, width = 4
15721472 - 15725567 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 4095; status: avail
16282624 - 16286719 (4096) min: 0, max: 19381, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 4095; status: avail
16843776 - 16847871 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 4095; status: avail
17388544 - 17392639 (4096) min: 0, max: 40227, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 288; status: avail
 
Col OID = 3039, NumExtents = 4, width = 4
15725568 - 15729663 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 4095; status: avail
16286720 - 16290815 (4096) min: 0, max: 14242, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 4095; status: avail
16847872 - 16851967 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 4095; status: avail
17392640 - 17396735 (4096) min: 0, max: 21485, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 288; status: avail
 
Col OID = 3040, NumExtents = 4, width = 8
15729664 - 15737855 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 8191; status: avail
16290816 - 16299007 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 8191; status: avail
16851968 - 16860159 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 8191; status: avail
17396736 - 17404927 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 576; status: avail
 
Col OID = 3041, NumExtents = 4, width = 8
15737856 - 15746047 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 8191; status: avail
16299008 - 16307199 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 8191; status: avail
16860160 - 16868351 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 8191; status: avail
17404928 - 17413119 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 576; status: avail
 
Col OID = 3042, NumExtents = 4, width = 8
15746048 - 15754239 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 8191; status: avail
16307200 - 16315391 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 8191; status: avail
16868352 - 16876543 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 8191; status: avail
17413120 - 17421311 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 576; status: avail
 
Col OID = 3043, NumExtents = 4, width = 8
15754240 - 15762431 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 8191; status: avail
16315392 - 16323583 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 8191; status: avail
16876544 - 16884735 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 8191; status: avail
17421312 - 17429503 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 576; status: avail
 
Col OID = 3044, NumExtents = 4, width = 8
15762432 - 15770623 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 8191; status: avail
16323584 - 16331775 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 8191; status: avail
16884736 - 16892927 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 8191; status: avail
17429504 - 17437695 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 576; status: avail
 
Col OID = 3045, NumExtents = 4, width = 8
15770624 - 15778815 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 8191; status: avail
16331776 - 16339967 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 8191; status: avail
16892928 - 16901119 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 8191; status: avail
17437696 - 17445887 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 576; status: avail
 
Col OID = 3046, NumExtents = 4, width = 8
15778816 - 15787007 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 8191; status: avail
16339968 - 16348159 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 8191; status: avail
16901120 - 16909311 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 8191; status: avail
17445888 - 17454079 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 576; status: avail
 
Col OID = 3047, NumExtents = 4, width = 8
15787008 - 15795199 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 8191; status: avail
16348160 - 16356351 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 8191; status: avail
16909312 - 16917503 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 8191; status: avail
17454080 - 17462271 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 576; status: avail
 
Col OID = 3048, NumExtents = 4, width = 8
15795200 - 15803391 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 8191; status: avail
16356352 - 16364543 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 8191; status: avail
16917504 - 16925695 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 8191; status: avail
17462272 - 17470463 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 576; status: avail
 
Col OID = 3049, NumExtents = 4, width = 8
15803392 - 15811583 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 8191; status: avail
16364544 - 16372735 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 8191; status: avail
16925696 - 16933887 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 8191; status: avail
17470464 - 17478655 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 576; status: avail
 
Col OID = 3050, NumExtents = 4, width = 8
15811584 - 15819775 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 8191; status: avail
16372736 - 16380927 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 8191; status: avail
16933888 - 16942079 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 8191; status: avail
17478656 - 17486847 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 576; status: avail
 
Col OID = 3051, NumExtents = 4, width = 4
15819776 - 15823871 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 4095; status: avail
16380928 - 16385023 (4096) min: 0, max: 1379180, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 4095; status: avail
16942080 - 16946175 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 4095; status: avail
17486848 - 17490943 (4096) min: 0, max: 339985, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 288; status: avail
 
Col OID = 3052, NumExtents = 4, width = 4
15823872 - 15827967 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 4095; status: avail
16385024 - 16389119 (4096) min: 0, max: 1314430, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 4095; status: avail
16946176 - 16950271 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 4095; status: avail
17490944 - 17495039 (4096) min: 0, max: 246662, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 288; status: avail
 
Col OID = 3053, NumExtents = 4, width = 4
15827968 - 15832063 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 4095; status: avail
16389120 - 16393215 (4096) min: 0, max: 7737, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 4095; status: avail
16950272 - 16954367 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 4095; status: avail
17495040 - 17499135 (4096) min: 0, max: 25384, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 288; status: avail
 
Col OID = 3054, NumExtents = 4, width = 4
15832064 - 15836159 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 4095; status: avail
16393216 - 16397311 (4096) min: 0, max: 1229840, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 4095; status: avail
16954368 - 16958463 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 4095; status: avail
17499136 - 17503231 (4096) min: 0, max: 87534, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 288; status: avail
 
Col OID = 3055, NumExtents = 4, width = 4
15836160 - 15840255 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 4095; status: avail
16397312 - 16401407 (4096) min: 0, max: 147590, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 4095; status: avail
16958464 - 16962559 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 4095; status: avail
17503232 - 17507327 (4096) min: 0, max: 33063, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 288; status: avail
 
Col OID = 3056, NumExtents = 4, width = 4
15840256 - 15844351 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 4095; status: avail
16401408 - 16405503 (4096) min: 0, max: 15659, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 4095; status: avail
16962560 - 16966655 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 4095; status: avail
17507328 - 17511423 (4096) min: 0, max: 2257, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 288; status: avail
 
Col OID = 3057, NumExtents = 4, width = 8
15844352 - 15852543 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 8191; status: avail
16405504 - 16413695 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 8191; status: avail
16966656 - 16974847 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 8191; status: avail
17511424 - 17519615 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 576; status: avail
 
Col OID = 3058, NumExtents = 4, width = 8
15852544 - 15860735 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 8191; status: avail
16413696 - 16421887 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 8191; status: avail
16974848 - 16983039 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 8191; status: avail
17519616 - 17527807 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 576; status: avail
 
Col OID = 3059, NumExtents = 4, width = 8
15860736 - 15868927 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 8191; status: avail
16421888 - 16430079 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 8191; status: avail
16983040 - 16991231 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 8191; status: avail
17527808 - 17535999 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 576; status: avail
 
Col OID = 3060, NumExtents = 4, width = 8
15868928 - 15877119 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 8191; status: avail
16430080 - 16438271 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 8191; status: avail
16991232 - 16999423 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 8191; status: avail
17536000 - 17544191 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 576; status: avail
 
Col OID = 3061, NumExtents = 4, width = 4
15877120 - 15881215 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 4095; status: avail
16438272 - 16442367 (4096) min: 0, max: 368446, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 4095; status: avail
16999424 - 17003519 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 4095; status: avail
17544192 - 17548287 (4096) min: 0, max: 177077, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 288; status: avail
 
Col OID = 3062, NumExtents = 4, width = 8
15881216 - 15889407 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 8191; status: avail
16442368 - 16450559 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 8191; status: avail
17003520 - 17011711 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 8191; status: avail
17548288 - 17556479 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 576; status: avail
 
Col OID = 3063, NumExtents = 4, width = 4
15889408 - 15893503 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 4095; status: avail
16450560 - 16454655 (4096) min: 0, max: 863783, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 4095; status: avail
17011712 - 17015807 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 4095; status: avail
17556480 - 17560575 (4096) min: 0, max: 590331, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 288; status: avail
 
Col OID = 3064, NumExtents = 4, width = 8
15893504 - 15901695 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 8191; status: avail
16454656 - 16462847 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 8191; status: avail
17015808 - 17023999 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 8191; status: avail
17560576 - 17568767 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 576; status: avail
 
Col OID = 3065, NumExtents = 4, width = 4
15901696 - 15905791 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 4095; status: avail
16462848 - 16466943 (4096) min: 0, max: 2932, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 4095; status: avail
17024000 - 17028095 (4096) min: notset, max: notset, seqNum: 3, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 4095; status: avail
17568768 - 17572863 (4096) min: 0, max: 3274, seqNum: 1, state: valid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 288; status: avail
 
Col OID = 3066, NumExtents = 4, width = 8
15905792 - 15913983 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 8191; status: avail
16466944 - 16475135 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 8191; status: avail
17028096 - 17036287 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 8191; status: avail
17572864 - 17581055 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 576; status: avail
 
Dct OID = 3067
15913984 - 15922175 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
16573440 - 16581631 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 1; status: avail
17134592 - 17142783 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 1; status: avail
17679360 - 17687551 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 1; status: avail
 
Dct OID = 3068
15922176 - 15930367 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
16532480 - 16540671 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 0; status: avail
17126400 - 17134591 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 0; status: avail
17630208 - 17638399 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 0; status: avail
 
Dct OID = 3069
15930368 - 15938559 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
16020480 - 16028671 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 8192, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: unavail
16045056 - 16053247 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 16384, DBRoot: 1, part#: 0, seg#: 0, HWM: 17774; status: avail
16540672 - 16548863 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 0; status: avail
16581632 - 16589823 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 8192, DBRoot: 2, part#: 0, seg#: 1, HWM: 0; status: unavail
16598016 - 16606207 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 16384, DBRoot: 2, part#: 0, seg#: 1, HWM: 16419; status: avail
17118208 - 17126399 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 0; status: avail
17142784 - 17150975 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 8192, DBRoot: 1, part#: 0, seg#: 2, HWM: 15966; status: avail
17622016 - 17630207 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 1113; status: avail
 
Dct OID = 3070
15938560 - 15946751 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
16028672 - 16036863 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 8192, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: unavail
16036864 - 16045055 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 16384, DBRoot: 1, part#: 0, seg#: 0, HWM: 17774; status: avail
16524288 - 16532479 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 0; status: avail
16589824 - 16598015 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 8192, DBRoot: 2, part#: 0, seg#: 1, HWM: 0; status: unavail
16606208 - 16614399 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 16384, DBRoot: 2, part#: 0, seg#: 1, HWM: 16419; status: avail
17077248 - 17085439 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 0; status: avail
17150976 - 17159167 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 8192, DBRoot: 1, part#: 0, seg#: 2, HWM: 15966; status: avail
17613824 - 17622015 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 1113; status: avail
 
Dct OID = 3071
15946752 - 15954943 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 47; status: avail
16516096 - 16524287 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 1101; status: avail
17085440 - 17093631 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 1481; status: avail
17605632 - 17613823 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 110; status: avail
 
Dct OID = 3072
15954944 - 15963135 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 47; status: avail
16507904 - 16516095 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 1101; status: avail
17093632 - 17101823 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 1481; status: avail
17638400 - 17646591 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 110; status: avail
 
Dct OID = 3073
15963136 - 15971327 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
16548864 - 16557055 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 0; status: avail
17069056 - 17077247 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 0; status: avail
17646592 - 17654783 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 0; status: avail
 
Dct OID = 3074
15971328 - 15979519 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
16557056 - 16565247 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 1; status: avail
17101824 - 17110015 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 1; status: avail
17654784 - 17662975 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 1; status: avail
 
Dct OID = 3075
15979520 - 15987711 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
16565248 - 16573439 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 1; status: avail
17110016 - 17118207 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 1; status: avail
17662976 - 17671167 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 1; status: avail
 
Dct OID = 3076
15987712 - 15995903 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
16499712 - 16507903 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 0; status: avail
17060864 - 17069055 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 0; status: avail
17671168 - 17679359 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 0; status: avail
 
Dct OID = 3077
15995904 - 16004095 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
16475136 - 16483327 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 0; status: avail
17036288 - 17044479 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 0; status: avail
17581056 - 17589247 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 0; status: avail
 
Dct OID = 3078
16004096 - 16012287 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
16491520 - 16499711 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 0; status: avail
17052672 - 17060863 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 0; status: avail
17589248 - 17597439 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 0; status: avail
 
Dct OID = 3079
16012288 - 16020479 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
16483328 - 16491519 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 1, HWM: 0; status: avail
17044480 - 17052671 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 2, HWM: 0; status: avail
17597440 - 17605631 (8192) min: notset, max: notset, seqNum: 0, state: invalid, fbo: 0, DBRoot: 2, part#: 0, seg#: 3, HWM: 0; status: avail
 
Col OID = 3081, NumExtents = 1, width = 4
15430656 - 15434751 (4096) min: 1, max: 73, seqNum: 3, state: valid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 3082, NumExtents = 1, width = 8
15434752 - 15442943 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 3083, NumExtents = 1, width = 8
15451136 - 15459327 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 3084, NumExtents = 1, width = 4
15467520 - 15471615 (4096) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 3085, NumExtents = 1, width = 8
15471616 - 15479807 (8192) min: notset, max: notset, seqNum: 2, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Col OID = 3086, NumExtents = 1, width = 4
15488000 - 15492095 (4096) min: 1, max: 1, seqNum: 3, state: valid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Dct OID = 3087
15442944 - 15451135 (8192) min: notset, max: notset, seqNum: 1, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Dct OID = 3088
15459328 - 15467519 (8192) min: notset, max: notset, seqNum: 1, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail
 
Dct OID = 3089
15479808 - 15487999 (8192) min: notset, max: notset, seqNum: 1, state: invalid, fbo: 0, DBRoot: 1, part#: 0, seg#: 0, HWM: 0; status: avail

Comment by Allan [ 2017-04-26 ]

in case the data above did not make it

mcsinfo.txt

Comment by Allan [ 2017-04-26 ]

The business need to is bulk delete records which drop partition allows. If there is another way to do this efficiently that would help alot.

Comment by Allan [ 2017-04-26 ]

I'd be willing to generate test data to illustrate the issue but it would be a lot of data. I'd need some way to get it to you.

Comment by Andrew Hutchings (Inactive) [ 2017-04-27 ]

I updated your comment so the output was formatted correctly.

Has there been any INSERT/UPDATE/DELETEs on the table? That would explain this behaviour. When you execute DML writes that touch a extent the min/max is invalidated. It is regenerated on the subsequent read of the column. If this is the case you should find running "select count from lkqd_daily" beforehand will help. I need to run some tests but this could be why some of the partition functions are failing.

As for sending us large amounts of data you can use dropbox or similar. Alternatively you can use the 'private' folder described here: https://mariadb.com/kb/en/meta/ftp/

Comment by Andrew Hutchings (Inactive) [ 2017-04-27 ]

Ah! I see the problem. My apologies, I don't use the calShowPartitionsByValue() function often so I didn't spot the documented behaviour until I was in the source code.

From the documentation at (https://mariadb.com/kb/en/mariadb/columnstore-partition-management/):

"The function returns a list of partitions whose minimum and maximum values for the column 'col_name' fall completely within the range of 'start_value' and 'end_value'."

This means that the min/max values must fall within the entire range of start/end supplied at both ends. Your partitions are '2017-04-13' - '2017-04-14' so at a bare minimum you would need to use the following to show them:

select calShowPartitionsByValue('lkqd_daily','theDate','2017-04-13','2017-04-14');

If the start is greater than the minimum value in the partition or the end is less than the maximum the partition won't show in the list. The same is true of other by value partition functions.

Comment by Allan [ 2017-04-27 ]
  1. There are no insert/update/delete operations on the DB other than bulk deletes
  2. The partitions are intermixed improperly in my opinion. That they are mixed is what is preventing the partition drop to occur. I believe the proper operation for cpimport is create new partitions or at least not intermix partitions with the new data.
  3. I still have not seen an explanation for the internal error message. I believe that the error message and the intermixing of imported data are related. I have no issue with the tail end of a partiton being filled with newly imported data and then creating new partitions as I can get rid of the leftovers with a DELETE statement.
Comment by Andrew Hutchings (Inactive) [ 2017-04-27 ]

1. OK, thanks for letting us know
2. This is something we are looking into as part of MCOL-680, this behaviour is inherited from InfiniDB and changing it in a backwards compatible way will require some planning
3. The explanation for the error is in my previous message on my ticket. Please let me know if you have any further details.

Comment by Allan [ 2017-04-27 ]

Regarding item 3, I don't see how your previous responses answers why there is an INTERNAL error message. Please enlighten me with more detail.

And as I've said previously, I can generate test data to illustrate the issue if you wish.

Comment by Andrew Hutchings (Inactive) [ 2017-04-27 ]

The message happens because the min/max values must fall within the entire range of the start/stop supplied at both ends as outlined in https://mariadb.com/kb/en/mariadb/columnstore-partition-management/

This means for your case you would need to supply the range or at least '2017-04-13' to '2017-04-14'. '2017-04-13' for both parameters only covers columns that have both a min/max values of '2017-04-13'.

It is an INTERNAL error message because we have to supply MariaDB with one of its error codes that as closely as possible matches the problem. In this case we tell MariaDB to trigger ER_INTERNAL_ERROR and supply the message "IDB-2040: No partition found for the given value range.". We are more than happy to consider any of the other messages in sql/share/errmsg-utf8.txt instead if it is more appropriate if one is suggested, this error message hasn't been looked at since before InfiniDB was forked and with the MariaDB 10.1 (and 10.2) additions there could be better messages.

Comment by Allan [ 2017-04-27 ]

I understand.

I suggest that if bulk loading is going to fill the extents of partitions that some bulk delete/drop method be made available to function like calDropPartitionByValue. Perhaps calDropExtentByValue

Comment by Andrew Hutchings (Inactive) [ 2017-04-28 ]

An interesting thought this is something that could be possible without much overhead once we add fallocate()/ftruncate() support (MCOL-498). I'll add these comments to MCOL-680 as a possible solution so we can track it there.

Comment by Allan [ 2017-06-01 ]

Any update as to when calDropExtentByValue might exist. I do not see anything in the 1.0.9 version. If it exists, or something equivalent, please point me to it.

Comment by David Thompson (Inactive) [ 2017-06-01 ]

This is currently not assigned to a release, generally the jira status and fix version should be correct.. Realistically this is more of an improvement now rather than a bug so would be more likely to appear in a future major version.

Comment by Todd Stoffel (Inactive) [ 2022-11-05 ]

This item is being closed because it was well passed the expiration date with no activity. If you suspect this was done in error please create a new ticket.

Generated at Thu Feb 08 02:23:02 UTC 2024 using Jira 8.20.16#820016-sha1:9d11dbea5f4be3d4cc21f03a88dd11d8c8687422.