Hello!
I am using CSV_ADAPTER to store my measurements, is there a way for me to change the names of these measurements in the ID colum? To make the interpretation easier.
Thank You!
Hello!
I am using CSV_ADAPTER to store my measurements, is there a way for me to change the names of these measurements in the ID colum? To make the interpretation easier.
Thank You!
Hello leticia_acs,
Unfortunately, that adapter has a simplistic design to make it easy for the CsvImportAdapter
to load the data on another system. I didn’t add any options to adjust the format of the CSV files produced by the adapter.
One thing you could do would be to run SELECT * FROM ActiveMeasurement
against your configuration database and export the results as CSV so you can load it into a spreadsheet. Then you may be able to use Excel features to join the two CSV files (use the SignalID
column of ActiveMeasurement
), thereby adding more information to your export from the ActiveMeasurement
view.
Thanks,
Stephen