home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 January / Chip_1997-01_cd.bin / ms95 / disk23 / dir02 / f001430.re_ / f001430.re
Text File  |  1996-04-02  |  2KB  |  99 lines

  1.  
  2. create table parcel 
  3.     (
  4.      mslink         number(10,0) not null,
  5.      old_map_no     char(5),
  6.      group_no         char(6),
  7.      parcel_no         char(15),
  8.      trailer_no     char(4),
  9.      clt_no         char(30),
  10.      owner         char(50),
  11.      value        number(10,0),
  12.      house_num         char(10),
  13.      street_name     char(40),
  14.      city         char(40),
  15.      state         char(50),
  16.      zip_code         number(10,0),
  17.      county         char(50),
  18.      district         char(50),
  19.      zone_class     char(50),
  20.      block_num         char(4),
  21.      lot_num         char(4),
  22.      subd_name         char(50),
  23.      parc_area         number(20,4),
  24.      perimeter         number(20,4),
  25.      mapid         number(10,0)
  26.     );
  27.  
  28. grant all on parcel to public;
  29. create index parcel_mslink on parcel (mslink);
  30.  
  31. create table highway 
  32.     (
  33.      mslink         number(10,0) not null,
  34.      hname         char(40),
  35.      htype         char(10),
  36.      classification     char(50),
  37.      date_created     char(8),
  38.      date_paved     char(8),
  39.      surface_type     char(50),
  40.      surface_rating     number(10,0),
  41.      weight_limit     number(10,0),
  42.      height_limit     number(10,0),
  43.      speed_limit     number(10,0),
  44.      width         number(10,0),
  45.      row_width         number(10,0),
  46.      length         number(20,4),
  47.      num_of_lanes     number(10,0),
  48.      division_status    char(50),
  49.      direction         char(50),
  50.      hour_traffic_vl     number(10,0),
  51.      year_traffic_vl     number(10,0),
  52.      city         char(40),
  53.      county         char(50),
  54.      state         char(50),
  55.      mapid         number(10,0)
  56.     );
  57.  
  58. grant all on highway to public;
  59. create index highway_mslink on highway (mslink);
  60.  
  61. create table maps 
  62.     (
  63.      mslink     number(10,0) not null,
  64.      mapname     char(14),
  65.      category     number(10,0),
  66.      symtable     char(19)
  67.     );
  68.  
  69. grant all on maps to public;
  70. create index maps_mslink on maps (mslink);
  71.  
  72. create table features 
  73.     (
  74.      mslink     number(10,0) not null,
  75.      fcode     char(12),
  76.      fname     char(32),
  77.      category    number(10,0),
  78.      tablename     char(18),
  79.      ftype     number(10,0),
  80.      flevel     number(10,0),
  81.      fstyle     number(10,0),
  82.      fweight     number(10,0),
  83.      fcolor     number(10,0),
  84.      digcmd     char(20),
  85.      cellname     char(20)
  86.     );
  87.  
  88. grant all on features to public;
  89. create index features_mslink on features (mslink);
  90.  
  91. create table parcel_das 
  92.     (
  93.      dastype    integer,
  94.      formname    char(64),
  95.      sqldas     char(240)
  96.     );
  97.  
  98. grant all on parcel_das to public;
  99.