{ TABLE common_vector row size = 1806 number of columns = 27 index size 
              = 502 }
create table common_vector 
  (
    status smallint 
        default 1 not null ,
    type char(16) not null ,
    format_version char(64) not null ,
    data_source char(64) not null ,
    create_module char(64) not null ,
    create_comment char(64) not null ,
    last_modify_module char(64) not null ,
    modify_comment char(64) not null ,
    description char(64) not null ,
    object_type char(64) not null ,
    product_id integer not null ,
    arc_file smallint not null ,
    object_file smallint not null ,
    arc_attrib_table char(64) not null ,
    obj_attrib_table char(64) not null ,
    arc_file_pathname char(255) not null ,
    obj_file_pathname char(255) not null ,
    str_file_pathname char(255) not null ,
    horiz_precision float not null ,
    min_x_axis_coord float not null ,
    max_x_axis_coord float not null ,
    min_y_axis_coord float not null ,
    max_y_axis_coord float not null ,
    start_time datetime year to second not null ,
    stop_time datetime year to second not null ,
    gis_layer char(64) not null ,
    header_pathname char(255) not null 
  );
revoke all on common_vector from "public";



create unique index pg_uniq_1_19 on common_vector 
    (gis_layer) using btree ;
create unique index pg_uniq_2_19 on common_vector 
    (header_pathname) using btree ;
create unique index prod_for_19 on common_vector 
    (product_id) using btree ;


