Book a Demo

Author Topic: Maintain Sparx User - Reporting  (Read 2684 times)

Mintra

  • EA User
  • **
  • Posts: 20
  • Karma: +0/-0
    • View Profile
Maintain Sparx User - Reporting
« on: February 04, 2022, 11:25:44 am »
Hello,

Is there a way to export the user/group list from the system? I need to do a report on the Sparx user, and manually entering each user into the spreadsheet is time-consuming.

Also, I was wondering if there is a limitation or how many licenses can Sparx consume?

TIA!
Mintra

Geert Bellekens

  • EA Guru
  • *****
  • Posts: 13523
  • Karma: +574/-33
  • Make EA work for YOU!
    • View Profile
    • Enterprise Architect Consultant and Value Added Reseller
Re: Maintain Sparx User - Reporting
« Reply #1 on: February 04, 2022, 04:39:07 pm »
You can write an SQL search containing the users and groups and export the results to CSV

Something like
Code: [Select]
select u.UserLogin, u.FirstName, u.Surname, g.GroupName
from t_secuser u
left join t_secusergroup ug on ug.UserID = u.UserID
left join t_secgroup g on g.GroupID = ug.GroupID

Geert