The following query will allow you to retrieve the Project"s and Monitor"s name for a specific MeasureId: select p.ProjectName, m.Name from SV_Monitors m inner join SV_MonitorTransactions on MonitorID_pk = MonitorID_fk inner join SV_Executionsets on TransID_fk = TransactionID_pk_fk inner join SV_Measures on SetID_pk = SetID_fk inner join SCC_Projects p on m.ProjectID_fk = ProjectID_pk where MeasureID_pk = xy where xy is the Measure Id (e.g. 100).
↧