1

We purchased a SQL server license with 10 user CALS, a while ago. How can I identify the users accessing the SQL server to make sure number of CALS match the number of users accessing the server? Is there some tool to achieve this? or may be some manual process?

Please help.

Regards.

ZINX
  • 123
  • 4

2 Answers2

4

You're looking at a manual process. Microsoft gave up on automated license tracking for everything except Terminal Services years ago. There is enough "nuance" and interpretation in their licenses that no automated system can accurately count their usage. (In addition, I'd argue that they've eschewed automated license compliance mechanisms so that they can be free to "interpret" their licenses in litigation as they see fit. It would be pretty hard to argue that a Customer wasn't in compliance if Microsoft's own tool told the Customer that they were in compliance.)

Evan Anderson
  • 141,881
  • 20
  • 196
  • 331
0
SELECT DISTINCT login_name FROM sys.dm_exec_sessions
adaptr
  • 16,576
  • 23
  • 34