Forum Discussion
ipkus
1 day agoFrequent Visitor
Storing and parsing HL7 data
Any healthcare folks can share what best practices they have found around storing HL7 data for analytics ?
nathancwatkins
Helper II
11 hours agoBring in all fields by parsing with |, grab and fill down each Message ID and segment code, make the parsed values a list type, then into JSON, so you have a column containing the values as JSON text for that message ID and segment. The values compress efficiently, and there’s your base ingestion table. Now your ETL query can easily extract values and zip them to a list of field names.
—Nate