I’ve got a number of databases containing the same measurements (Think prod and dev) and along the way, data that was meant 1 db has ended up in the other, and so I need to merge them.
I was looking at continuous queries to do this, however I don’t want to downsample the data at all, I want to keep it raw.
You should be able to use SELECT INTO to copy data from one database to another. If you have multiple measurements to copy, you may want to use the measurement backref described in that section of the docs.
Thanks for that.
I gave the Select Into route a go, and it seems to have merged things nicely, however all of my tags have been converged into fields in the merged database, leaving no tags on any of the measurements…