I am trying to add some custom properties on our Historical - IP SLA Report. So what I did is I created 2 reports then get the SQL code.
Report A - it will generate the Average of MOS and Jitter for the Last 30 days.
Report B - it will generate the current statistics of MOS and Jitter with its custom properties (ex. Country and City).
And I am trying to find out how can I sort of combine this codes in order to get the historical data with the custom properties. I add the queries to add the custom properties but to no avail. And as per digging to the database table, I found out that I am pulling these data from 4 tables.
Nodes table
- Caption/NodeName
- Custom Property A
- Custom Property B
- NodeID = SourceNodeID (from VoipOperationInstances table)
VoipOperationInstances
- VoipOperationInstanceID (PK)
- SourceNodeID = NodeID (from Nodes table)
- IpSlaOperationNumber
- OperationName
VoipOperationResults (Detail,Daily,Hourly)
- VoipOperationInstanceID (PK)
- Jitter
VoipMosOperationResults (Detail,Daily,Hourly)
- VoipOperationInstanceID (PK)
- MOS
Does anyone here tried this before? Any help would be much appreciated.