• Register
    • Login
    • Search
    • Recent
    • Tags
    • Popular

    Please Note This forum exists for community support for the Mango product family and the Radix IoT Platform. Although Radix IoT employees participate in this forum from time to time, there is no guarantee of a response to anything posted here, nor can Radix IoT, LLC guarantee the accuracy of any information expressed or conveyed. Specific project questions from customers with active support contracts are asked to send requests to support@radixiot.com.

    Radix IoT Website Mango 3 Documentation Website Mango 4 Documentation Website

    Easier way to remove bad values from history? SQL?

    User help
    2
    2
    353
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • R
      rectifier last edited by

      Bad data, it happens to us all. Doing some testing or a sensor fails and goes out of range - but not far enough to be discarded.

      This can completely mess up the trending display, as it is doing to me right now. Even when rejecting extreme values, sometimes a glitch can return a value that is not extreme enough to be discarded, but well out of the normal operation of the process resulting in the scale being thrown off every time you try to view historical data.

      I have done the export/reimport CSV thing before but this is honestly a very clumsy and slow way of editing the history, and the interface has changed somewhat to the point where I had to hand-edit my CSV last time I did it.

      Is there an easier way to do this with an SQL query? I have tried modifying the pointvalues table, where the bad data point seems to be easily found with SELECT * FROM pointvalues WHERE pointvalue = $baddata;

      However UPDATEing this value does not seem to result in anything changing on the charts? Is it cached somewhere or stored in another location?

      Thanks

      1 Reply Last reply Reply Quote 0
      • MattFox
        MattFox last edited by

        This wholly depends on if you're using the SQL database to store values or the NoSQL database because it's on mango unit or a cloud installed setup.

        I'd wager you're using the NoSQL system which means you're gonna have to export, open with notepad, copy and paste the data to maintain the correct date-time format (excel likes to screw with it) then filter by the value column.
        With all of your filtered values, append the delete value in the final column, save, and reimport values to delete all unwanted values.
        Also note you can change your datapoint properties to filter and ignore extreme/unwanted values so they won't go into your system.

        Hope this is of some help

        Fox

        Do not follow where the path may lead; go instead where there is no path.
        And leave a trail - Muriel Strode

        1 Reply Last reply Reply Quote 0
        • First post
          Last post