I'm doing a schoolwork and..
I have to do a vehicle tracker system. I thought of these three designs. What do you think?
My database schemas
Opinions?
|
I'm doing a schoolwork and.. I have to do a vehicle tracker system. I thought of these three designs. What do you think? My database schemas Opinions? | ||||
feedback
|
| ||||
feedback
|
|
if you're reading from the sensors at the same time the second design looks like an overkill to me. It would make sense to keep information separate just if you read that information at different times. I would suggest the first design. | |||
|
feedback
|
|
Your application needs to deal with two types of things
There are a few things to think about: A quick answer to the last question is that the single read event per record seems more flexible; we'll be able to handle, in the very same fashion, both groups of measurements that are systematically polled at the same time, and other measurements that are asynchonous to the former. Even if right-now, all measurements come at once, the potential for easy addition of sensors without changing the database schema and for handling them in like-fashion, is appealing. Maybe the following design would be closer to what you need:
tblSensors
SensorId PK
Name clear text description of the sensor ("Oil Temp.")
LongName longer description ("Oil Temperarure, Sensor TH-B14 in crankshaft")
SensorType enumeration ("TEMP", "PRESSURE", "VELOCITY"...)
SensorSubType enumeration ("OIL", "AIR"...)
Location enumeration ("ENGINE", "GENERAL", "EXHAUST"...)
OtherCrit other crietrias which may be used to identify/seach for the sensor.
tblReads
Readid PK
DateTime
SensorId FK to tblSensors
Measurment INTeger value
Measurement2 optional extra meassurement (maybe to handle say, all
of a GPS sensor read as one "value"
Measurement3 ... also may have multiple columns for different types of
variables (real-valued ?)
In addition to the above you'd have a few tables where the "enumerations" for the various types of sensors are defined, and the tie-in to the application logic would be by way of the mnemonic-like "keys" of these enumerations. eg.
This would not prevent you to also call the sensors by their id, and to group reads on the same results line. eg.
| |||
|
feedback
|