Question about Highest License Use in the System Dashboard
Hi guys,
Is there a way for me to break down the what contributes to the 100% highest license use so i can clearly analyze what processes or user has consume these licenses which cause the 100% license usage?
Comments
Check %SYSTEM.License queries. There are queries which provide summary and detailed information on license consumption. You can than create a task which runs every minute and if license consumption exceeds say 80%, store current license users into a separate table with a timestamp. Later you can use this table to analyze usage patterns.
is there a way for me to execute in SQL for the above? Sorry i'm new to cache.
is there a way for me to execute in SQL for the above?
Of course!
Queries are TVFs, you can CALL them or SELECT from them:
SELECT * FROM %SYSTEM.License_ConnectionAppList()
.png)
Summary:
SELECT * FROM %SYSTEM.License_Counts()