Book a Demo

Author Topic: UPDM: count the number of diagrams  (Read 3295 times)

EAaaarrggh

  • EA Novice
  • *
  • Posts: 3
  • Karma: +0/-0
    • View Profile
UPDM: count the number of diagrams
« on: July 19, 2018, 11:15:51 pm »
Greetings,
My customer would like to know how many diagrams of each type exist in our UPDM model.

Is there a script I could run to calculate and display this automatically - even better, show the count history and diagram status?
Is there an attribute of a UPDM diagram which contains diagram type e.g. OV-2?
Being SQL-ignorant I'm struggling with this.

Thanks
John

qwerty

  • EA Guru
  • *****
  • Posts: 13584
  • Karma: +397/-301
  • I'm no guru at all
    • View Profile
Re: UPDM: count the number of diagrams
« Reply #1 on: July 19, 2018, 11:24:46 pm »
Nice name xD

Just create this SQL search:
Code: [Select]
select Diagram_Type, count(*)  from t_diagram group by Diagram_Type
q.