We imported a lot of historic data into Azure Data Explorer. They should end up in the same table as the current live streaming data.
However the historic data contains a dynamic json column where the field names are written in camelCase. The new format expects the field names in PascalCase.
Example:
Historic Format
{
"messageType":"xy"
}
New Format
{
"MessageType":"xy"
}
Update:
- I need to construct a dynamic column and update the property names within this dynamic column, not only rename the column itself in the output.
Is there any chance to achieve this kind of transformation in KQL or do we have to unload all the data, apply the transformation and ingest the data again?
