http://www.perlmonks.org?node_id=1074124


in reply to Not reasonable output from SNMP Request

but in MySQL I can see: 2147483647
That looks very much like the biggest number a MySQL INT can hold, see https://dev.mysql.com/doc/refman/5.1/de/numeric-types.html The (11) after "int" is for display purposes only. You need BIGINT.
  • Comment on Re: Not reasonable output from SNMP Request

Replies are listed 'Best First'.
Re^2: Not reasonable output from SNMP Request
by thanos1983 (Parson) on Feb 10, 2014 at 00:56 UTC

    To: soonix

    Thanks a lot, this is explains the unreasonable output. I changed all the table values from int to bigint. All values where I store the measurements. Beginners failures ;)