1
Bugs and Issues / Re: Diagram Running Slow
« on: August 02, 2018, 07:50:14 pm »
thanks geert appreciated
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Number of items i have in the diagram is approx 260, with a lot of relationships.![]()
That is way too much to be on a single diagram, unless you are designing wallpaper.
Split the diagram up into smaller usable chunks.
Geert
SELECT ea_guid AS CLASSGUID, Object_Type AS CLASSTYPE, Name FROM t_object
where Name like '*Benefit*' or Name='*Benefit*'
SELECT ea_guid AS CLASSGUID, Object_Type AS CLASSTYPE, Name as Name
,package.name as 'Package Name' ,package_p1.name as 'Package level -1',package_p2.name as 'Package level -2',package_p3.name as 'Package level -3'
from (((( t_object
inner join t_package package on package_id = package.package_id)
left join t_package package_p1 on package_p1.package_id = package.parent_id)
left join t_package package_p2 on package_p2.package_id = package_p1.parent_id)
left join t_package package_p3 on package_p3.package_id = package_p2.parent_id)
where Name like '*Benefit*' or Name like '*Benefit*'