Products | Versions |
---|---|
Spotfire Statistica | 14.0.0 and Higher |
Key Points:
For customers seeking accurate deployment reports, the timeframe can be adjusted (e.g., past year, past 3 years), ensuring that only active users are included in the count.
For SQL Server:
SELECT DISTINCT CSUSGP.USERID
FROM CSUSGP
JOIN CSLOG ON CSUSGP.USERID = CSLOG.USERID
JOIN CSGPRM ON CSUSGP.GROUPID = CSGPRM.GROUPID
WHERE CSGPRM.PERMID = '268435456'
AND CSLOG.TSTAMP BETWEEN '2023-01-01' AND '2023-12-31' -- Adjust dates here
AND CSUSGP.USERID IN (SELECT USERID FROM CSUSER WHERE VFLG IS NULL);
The Query for Oracle is similar.
This query will return the count of users who have logged into Statistica during the mentioned year, ensuring that only active named users are included in the licensing count. If necessary, the timeframe in the query can be adjusted based on the requirements.