FIXME **This page is not fully translated, yet. Please help completing the translation.**\\ //(remove this paragraph once the translation is finished)// ======Definition-Related Analyses====== ==== Number of loops (>0) per definition ==== select lpi.defName as Prozess, sum(lpi.lCount) as NumberOfLoops from (select inst.definitionname as defName, inst.instancename as instName, act.loopcount as lCount, inst.instanceid as instId from (select name as instancename, id as instanceid, definitionname from view_instance) as inst join (select instanceID, name, loopcount from view_activity order by loopcount desc) as act on act.loopcount is not null and act.instanceID = inst.instanceid group by inst.instanceid) as lpi group by lpi.defName