I am getting data as a single string. For example, my one record looks like - 2020/01/01 "Anna Thomas" 21
.(Note: fields are space separated). I want them in a Kusto table with schema Date, Name, and Age. I read about first inserting them to a source table and then ingesting into Target Table using the update policy. But how will I parse this type of records (thought of using splitting the record based on single space but then the name also gets splitted)?
Date | Name | age |
---|---|---|
2020/01/01 | Anna Thomas | 21 |