Are there groups of columns that all serve the same role, or can be
interchanged via a transformation rule? These can go in a separate table.
| ID | Mon | Tue | Wed | Thu | Fri | Sat | Sun
-+-----+-----+-----+-----+-----+-----+-----+-----
| 001 | 13 | 2 | 143 | 0 | 718 | 4 | 53
| 002 | 77 | 0 | 462 | 53 | 57 | 14 | 0
Becomes
| ID | Day | Ct
-+-----+-----+-----
| 001 | Mon | 13
| 001 | Tue | 2
| 001 | Wed | 143
Etc.
Are there groups of columns that work together like a separate "object"
associated with the object a row's supposed to represent? These can go in
their own table.
| ID | STAID | STAX | STAY | Itype | Lastmaintdate
-+-----+-------+-----------+-----------+----------+-----------------
| 001 | 001 | 14.333332 | 60.555555 | Seismog | 4/6/2010
| 002 | 001 | 14.333332 | 60.555555 | Magnetom | 8/8/2004
Becomes
________________________________
Spencer