CASE will give me what I want but I am just curious if this has some special sentimentality to the devs beyond simply being the largest double precision floating point number.
1.79769313486232E+308 is essentially null expressed as a double (8 byte) integer in C#.
Ah
I only ask because to filter it out I had to covert that float value to varchar and not like '1.7976%' which must be a performance hit.
Sounds like you're trying to recreate this report -> Component_Monitor_Threshold_Value_Report_(with_nulls).OrionReport
Recreate it with SWQL -right now it's filtering based on template names but I need to use something closer to assignment. Until we have something better, , can you point me in the direction of where template tags are stored in SWQL?
Thanks,
Christian
To be exact it is Double.MaxValue (rather than NULL) which in conjunction with "Is greater than" operator defines threshold that can never be exceeded. It is used as "empty" threshold where we cannot override to NULL.