How can I retrieve raw time-series data from a Proficy Historian/iHistorian?
Ideally, I would ask for data for a particular tag between two dates.
|
feedback
|
|
There are several different sampling modes you can experiment with.
These modes are available using all of the following APIs.
Of these the trend sampling mode is probably what you want since it is specifically designed for charting/trending. Though, lab and interpolated may be useful as well. Read the electronic book for more information on each sampling mode. On my machine it is stored as
Here is how you can construct an OLEDB to do trend sampling.
Showing the equivalent methods using the User API and the SDK are complex (more so with the User API) since they require a lot of plumbing in the code to get setup. By the way, there are a few limitations with the OLEDB method though.
| |||||||||
feedback
|
|
A coworker of mine put this together: In web.config:
In the data layer:
Update: This worked well but we ran into an issue with tags that don't update very often. If the tag didn't update near the start or end of the requested startDate and endDate, the trends would look bad. Worse, still were cases where there were no explicit points during the window requested--we'd get no data back. I resolved this by making three queries:
This is a potentially inefficient way to do it but It Works:
And yes, I know, those queries should be parameterized. | ||||
|
feedback
|
|
Michael--in IP21 there is an "Interpolated" table, as well as the "actual" data point table. Does Proficy have that as well? | |||||
feedback
|