Replace empty value in dictionary Kusto

I have this data: let data = datatable(Timestamp:datetime, Name:string, Value:int) [ datetime(2022-02-18 10:00:00 AM), "Floor 1", 100, ]; let mydict = dynamic( { "Id":"1", "Product": "" } ); data | extend messageMetaData = mydict | project Timestamp, Name, Value, messageMetaData = replace_string(tostring(messageMetaData), "", "Wheat") What I am trying to achieve here is to replace the… Read More Replace empty value in dictionary Kusto

Kusto table – How to recover soft-deleted data that is retained by the Recoverability = enabled set

I have a Kusto database with the following retention policy: { "SoftDeletePeriod": "30.00:00:00", "Recoverability": "Enabled" } Yesterday some data was removed from a table in the database since it was over 30 days old. According to the retention policy docs, if the Recoverability attribute is set, "If set to Enabled, the data will be recoverable… Read More Kusto table – How to recover soft-deleted data that is retained by the Recoverability = enabled set