skip to Main Content

azure workbook, create table with jquery

I have table (data) SWFLogOSot_CL and I'm trying to see count of two columns: values_in_use_connections_d values_available_connection_d I've done this: union withsource="SWFLogOSot_CL" * | summarize AvaibleConn = count() by ColumnName="values_available_connection_d" This works, but shows count of just one column: Does please…

VIEW QUESTION

Azure – Multiple toint check

I have this query to check the application version AppInventory_CL | extend AppVersion_s_Dyn = split(AppVersion_s, '.') | extend Versione = iif(toint(AppVersion_s_Dyn[0]) >= 5 and toint(AppVersion_s_Dyn[1]) >= 2 and toint(AppVersion_s_Dyn[2]) >= 7, 'OK', 'KO') But I need that also superior versions…

VIEW QUESTION
Back To Top
Search