January 2019
Intermediate to advanced
798 pages
20h 33m
English
By now, we should have two cryptic-looking values:
What do we have to do now? Multiply by eight all of the values for the item ID before that timestamp. With the data we have, it's actually quite simple—in the MySQL console, we would have to execute this:
mysql> update history_uint set value=value*8 where itemid=<our ID> and clock<'<our timestamp>';
We are updating history_uint, because even though the data for the network traffic is a decimal number because of the ...
Read now
Unlock full access